Lines Matching refs:poll
97 * Check if a poll is running or can run and and if the latter
98 * make us as running. That way we ensure that only one poll
99 * can only ever run at the same time. Returns true if no poll
140 if (napi->poll != NULL)
141 rc = napi->poll(napi, napi->budget);
239 /* Someone tried to schedule while poll was running. Re-sched. */
302 KASSERT(napi->poll != NULL, ("%s: napi %p poll is NULL\n",
306 count = napi->poll(napi, napi->budget);
312 * when a driver may "poll" and we may not have any work to do and that
334 napi->poll = napi_poll;