Home
last modified time | relevance | path

Searched refs:residual_burst (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/kern/
H A Dkern_poll.c230 static int residual_burst = 0; variable
231 SYSCTL_INT(_kern_polling, OID_AUTO, residual_burst, CTLFLAG_RD,
232 &residual_burst, 0, "# of residual cycles in burst");
388 if (residual_burst > 0) { in netisr_pollmore()
450 if (residual_burst == 0) { /* first call in this tick */ in netisr_poll()
457 residual_burst = poll_burst; in netisr_poll()
459 cycles = (residual_burst < poll_each_burst) ? in netisr_poll()
460 residual_burst : poll_each_burst; in netisr_poll()
461 residual_burst -= cycles; in netisr_poll()