| 154 | vnet_gre_init, NULL); |
| 155 | |
| 156 | static void |
| 157 | vnet_gre_uninit(const void *unused __unused) |
| 158 | { |
| 159 | |
| 160 | if_clone_detach(V_gre_cloner); |
| 161 | #ifdef INET |
| 162 | in_gre_uninit(); |
| 163 | #endif |
| 164 | #ifdef INET6 |
| 165 | in6_gre_uninit(); |
| 166 | #endif |
| 167 | /* XXX: epoch_call drain */ |
| 168 | } |
| 169 | VNET_SYSUNINIT(vnet_gre_uninit, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY, |
| 170 | vnet_gre_uninit, NULL); |
| 171 |
nothing calls this directly
no test coverage detected