Home
last modified time | relevance | path

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

/freebsd/sys/net/
H A Dnetisr_internal.h124 #define NWS_RUNNING 0x00000001 /* Currently running in a thread. */ macro
H A Dnetisr.c878 * loop, and for setting the NWS_RUNNING flag. The passed workstream will be
892 KASSERT(nwsp->nws_flags & NWS_RUNNING, in netisr_process_workstream_proto()
964 KASSERT(!(nwsp->nws_flags & NWS_RUNNING), ("swi_net: running")); in swi_net()
967 nwsp->nws_flags |= NWS_RUNNING; in swi_net()
976 nwsp->nws_flags &= ~NWS_RUNNING; in swi_net()
1010 * We must set the bit regardless of NWS_RUNNING, so that in netisr_queue_workstream()
1015 (NWS_RUNNING | NWS_DISPATCHING | NWS_SCHEDULED))) { in netisr_queue_workstream()
1185 if (nwsp->nws_flags & (NWS_RUNNING | NWS_DISPATCHING | NWS_SCHEDULED)) { in netisr_dispatch_src()