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

Function vnet_gre_uninit

freebsd/net/if_gre.c:156–168  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154 vnet_gre_init, NULL);
155
156static void
157vnet_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}
169VNET_SYSUNINIT(vnet_gre_uninit, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY,
170 vnet_gre_uninit, NULL);
171

Callers

nothing calls this directly

Calls 3

if_clone_detachFunction · 0.85
in_gre_uninitFunction · 0.85
in6_gre_uninitFunction · 0.85

Tested by

no test coverage detected