Lines Matching full:polling
57 * Polling support for [network] device drivers.
60 * polling code.
79 * Polling is enabled and disabled via setting IFCAP_POLLING flag on
81 * with polling and disable interrupts, if registration was successful.
83 * A second variable controls the sharing of CPU between polling/kernel
85 * kern.polling.user_frac (between 0 and 100, default 50) sets the share
103 static SYSCTL_NODE(_kern, OID_AUTO, polling, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
104 "Device polling parameters");
107 &poll_burst, 0, "Current polling burst size");
137 "Max Polling burst size");
167 &poll_in_idle_loop, 0, "Enable device polling in idle loop");
240 &phase, 0, "Polling phase");
273 mtx_init(&poll_mtx, "polling", NULL, MTX_DEF); in init_device_poll()
282 * Normally, this should not happen, because polling handler should
471 * Try to register routine for polling. Returns 0 if successful
472 * (and polling should be enabled), error code otherwise.
501 return (ENOMEM); /* no polling for you */ in ether_poll_register()
522 * Remove interface from the polling list. Called from *_ioctl(), too.