Searched defs:netisr_proto (Results 1 – 3 of 3) sorted by relevance
61 struct netisr_proto { struct62 const char *np_name; /* Character string protocol name. */63 netisr_handler_t *np_handler; /* Protocol handler. */64 netisr_m2flow_t *np_m2flow; /* Query flow for untagged packet. */65 netisr_m2cpuid_t *np_m2cpuid; /* Query CPU to process packet on. */66 netisr_drainedcpu_t *np_drainedcpu; /* Callback when drained a queue. */67 u_int np_qlimit; /* Maximum per-CPU queue depth. */68 u_int np_policy; /* Work placement policy. */69 u_int np_dispatch; /* Work dispatch policy. */
215 static struct netisr_proto netisr_proto[NETISR_MAXPROT]; variable