Searched refs:poll_each_burst (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.1-release/sys/kern/
H A Dkern_poll.c89 * 1 <= poll_each_burst <= poll_burst <= poll_burst_max
98 static uint32_t poll_each_burst = 5; variable
125 if (poll_each_burst > poll_burst_max)
126 poll_each_burst = MIN_POLL_BURST_MAX;
136 uint32_t val = poll_each_burst;
150 poll_each_burst = val;
336 if (count > poll_each_burst)
337 count = poll_each_burst;
442 cycles = (residual_burst < poll_each_burst) ?
443 residual_burst : poll_each_burst;
[all...]

Completed in 52 milliseconds