Searched defs:max_conns_allowed (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/nfs/nfs4cbd/
H A Dnfs4cbd.c91 int max_conns_allowed = -1; /* used by cots_listen_event() */ variable
/illumos-gate/usr/src/cmd/fs.d/nfs/lockd/
H A Dlockd.c138 int max_conns_allowed = -1; /* used by cots_listen_event() */ variable
237 max_conns_allowed = val;
298 max_conns_allowed, max_servers,
/illumos-gate/usr/src/cmd/fs.d/nfs/nfsd/
H A Dnfsd.c118 int max_conns_allowed = -1; /* used by cots_listen_event() */ variable
190 max_conns_allowed = strtol(value, (char **)NULL, 10);
192 max_conns_allowed = -1;
285 max_conns_allowed = atoi(optarg);
409 * max_conns_allowed must be positive, except for the special
416 if (((max_conns_allowed != -1) && (max_conns_allowed <= 0)) ||
/illumos-gate/usr/src/cmd/avs/rdc/
H A Dsndrd.c146 static int max_conns_allowed = -1; variable
469 max_conns_allowed = tmp;
548 max_conns_allowed = atoi(optarg);
549 if (max_conns_allowed <= 0)
550 max_conns_allowed = 16;
626 maxservers = (max_conns_allowed < 0 ? 16 : max_conns_allowed);
1085 * set on the command line, max_conns_allowed is -1.
1087 if (max_conns_allowed != -1 && num_conns >= max_conns_allowed)
[all...]

Completed in 49 milliseconds