| 1002 | SYSINIT(ifepochalloc, SI_SUB_EPOCH, SI_ORDER_ANY, if_epochalloc, NULL); |
| 1003 | |
| 1004 | static void |
| 1005 | if_attachdomain(void *dummy) |
| 1006 | { |
| 1007 | struct ifnet *ifp; |
| 1008 | |
| 1009 | CK_STAILQ_FOREACH(ifp, &V_ifnet, if_link) |
| 1010 | if_attachdomain1(ifp); |
| 1011 | } |
| 1012 | SYSINIT(domainifattach, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_SECOND, |
| 1013 | if_attachdomain, NULL); |
| 1014 |
nothing calls this directly
no test coverage detected