| 3586 | } |
| 3587 | |
| 3588 | static void |
| 3589 | vxlan_load(void) |
| 3590 | { |
| 3591 | |
| 3592 | mtx_init(&vxlan_list_mtx, "vxlan list", NULL, MTX_DEF); |
| 3593 | LIST_INIT(&vxlan_socket_list); |
| 3594 | vxlan_ifdetach_event_tag = EVENTHANDLER_REGISTER(ifnet_departure_event, |
| 3595 | vxlan_ifdetach_event, NULL, EVENTHANDLER_PRI_ANY); |
| 3596 | vxlan_cloner = if_clone_simple(vxlan_name, vxlan_clone_create, |
| 3597 | vxlan_clone_destroy, 0); |
| 3598 | } |
| 3599 | |
| 3600 | static void |
| 3601 | vxlan_unload(void) |
no test coverage detected