Searched defs:loopmax (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_bind.c546 int loopmax; local
553 * Lookup for free addresses is done in a loop and "loopmax"
562 loopmax = 1;
567 * Set loopmax appropriately so that one does not look
570 loopmax = (sctps->sctps_largest_anon_port -
754 } while (++count < loopmax);
/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_bind.c662 int loopmax; local
667 * Lookup for free addresses is done in a loop and "loopmax"
676 loopmax = 1;
681 * Set loopmax appropriately so that one does not look
686 * loopmax =
689 loopmax = IPPORT_RESERVED -
692 loopmax = (tcps->tcps_largest_anon_port -
944 } while (++count < loopmax);
/illumos-gate/usr/src/uts/common/io/ib/adapters/tavor/
H A Dtavor_ioctl.c995 uint_t tbl_size, loopmax, max_usec; local
1127 loopmax = max_usec/TAVOR_VTS_LOOPBACK_MIN_WAIT_DUR;
1129 loopmax++;
1258 for (j = 0; j < loopmax; j++) {
1263 ((ret == IBT_CQ_EMPTY) && (j == loopmax - 1))) {
/illumos-gate/usr/src/uts/common/io/ib/clients/rds/
H A Drdsddi.c93 static int loopmax = rds_largest_port - rds_smallest_port + 1; variable
565 if (++count >= loopmax) {
/illumos-gate/usr/src/uts/common/io/ib/adapters/hermon/
H A Dhermon_ioctl.c949 uint_t tbl_size, loopmax, max_usec; local
1062 loopmax = max_usec/HERMON_VTS_LOOPBACK_MIN_WAIT_DUR;
1064 loopmax++;
1165 for (j = 0; j < loopmax; j++) {
1170 ((ret == IBT_CQ_EMPTY) && (j == loopmax - 1))) {
/illumos-gate/usr/src/uts/common/inet/udp/
H A Dudp.c4825 int loopmax; local
5004 * loopmax = (IPPORT_RESERVED-1) -
5007 loopmax = IPPORT_RESERVED - us->us_min_anonpriv_port;
5009 loopmax = us->us_largest_anon_port -
5164 if (port == 0 || ++count >= loopmax) {

Completed in 83 milliseconds