| 3598 | } |
| 3599 | |
| 3600 | static void |
| 3601 | vxlan_unload(void) |
| 3602 | { |
| 3603 | |
| 3604 | EVENTHANDLER_DEREGISTER(ifnet_departure_event, |
| 3605 | vxlan_ifdetach_event_tag); |
| 3606 | if_clone_detach(vxlan_cloner); |
| 3607 | mtx_destroy(&vxlan_list_mtx); |
| 3608 | MPASS(LIST_EMPTY(&vxlan_socket_list)); |
| 3609 | } |
| 3610 | |
| 3611 | static int |
| 3612 | vxlan_modevent(module_t mod, int type, void *unused) |
no test coverage detected