| 218 | vnet_gif_init, NULL); |
| 219 | |
| 220 | static void |
| 221 | vnet_gif_uninit(const void *unused __unused) |
| 222 | { |
| 223 | |
| 224 | if_clone_detach(V_gif_cloner); |
| 225 | #ifdef INET |
| 226 | in_gif_uninit(); |
| 227 | #endif |
| 228 | #ifdef INET6 |
| 229 | in6_gif_uninit(); |
| 230 | #endif |
| 231 | } |
| 232 | VNET_SYSUNINIT(vnet_gif_uninit, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY, |
| 233 | vnet_gif_uninit, NULL); |
| 234 |
nothing calls this directly
no test coverage detected