MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vnet_gif_uninit

Function vnet_gif_uninit

freebsd/net/if_gif.c:220–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

218 vnet_gif_init, NULL);
219
220static void
221vnet_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}
232VNET_SYSUNINIT(vnet_gif_uninit, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY,
233 vnet_gif_uninit, NULL);
234

Callers

nothing calls this directly

Calls 3

if_clone_detachFunction · 0.85
in_gif_uninitFunction · 0.85
in6_gif_uninitFunction · 0.85

Tested by

no test coverage detected