| 1009 | vnet_epair_uninit, NULL); |
| 1010 | |
| 1011 | static void |
| 1012 | epair_uninit(const void *unused __unused) |
| 1013 | { |
| 1014 | netisr_unregister(&epair_nh); |
| 1015 | epair_dpcpu_detach(); |
| 1016 | if (bootverbose) |
| 1017 | printf("%s unloaded.\n", epairname); |
| 1018 | } |
| 1019 | SYSUNINIT(epair_uninit, SI_SUB_INIT_IF, SI_ORDER_MIDDLE, |
| 1020 | epair_uninit, NULL); |
| 1021 |
nothing calls this directly
no test coverage detected