* Kernel polling borrows a netisr thread to run interface polling in; this * function allows kernel polling to request that the netisr thread be * scheduled even if no packets are pending for protocols. */
| 1249 | * scheduled even if no packets are pending for protocols. |
| 1250 | */ |
| 1251 | void |
| 1252 | netisr_sched_poll(void) |
| 1253 | { |
| 1254 | struct netisr_workstream *nwsp; |
| 1255 | |
| 1256 | nwsp = DPCPU_ID_PTR(nws_array[0], nws); |
| 1257 | NWS_SIGNAL(nwsp); |
| 1258 | } |
| 1259 | #endif |
| 1260 | |
| 1261 | static void |
no outgoing calls
no test coverage detected