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

/illumos-gate/usr/src/uts/sun4/io/efcode/
H A Dfcode.c46 static int fc_max_opens = 32; /* Up to this many simultaneous opens */ variable
206 fc_max_opens * sizeof (struct fc_state), KM_SLEEP);
211 fc_max_opens * sizeof (struct fc_state));
238 kmem_free(fc_states, fc_max_opens * sizeof (struct fc_state));
267 while (fc_open_count >= fc_max_opens) {
282 for (m = 0, st = fc_states; m < fc_max_opens; m++, st++) {
292 ASSERT(m < fc_max_opens);
311 ASSERT(m < fc_max_opens && FC_STATE_ACTIVE(st->state));
368 if (fc_open_count >= fc_max_opens) {
386 ASSERT(m < fc_max_opens
[all...]

Completed in 59 milliseconds