netisr_register
void netisr_register(int, netisr_fn_t, netisr_hashfn_t);
netisr_register(NETISR_BLUETOOTH, btintr, NULL);
netisr_register(NETISR_NETGRAPH, ngintr, NULL);
netisr_register(NETISR_ARP, arpintr, NULL);
netisr_register(NETISR_IP, ip_input_handler, ip_hashfn);
netisr_register(NETISR_IPV6, ip6_input, NULL); /* XXX hashfn */
netisr_register(NETISR_MPLS, mpls_input_handler, mpls_hashfn);