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

Function vxlan_timer

freebsd/net/if_vxlan.c:1873–1883  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1871}
1872
1873static void
1874vxlan_timer(void *xsc)
1875{
1876 struct vxlan_softc *sc;
1877
1878 sc = xsc;
1879 VXLAN_LOCK_WASSERT(sc);
1880
1881 vxlan_ftable_expire(sc);
1882 callout_schedule(&sc->vxl_callout, vxlan_ftable_prune_period * hz);
1883}
1884
1885static int
1886vxlan_ioctl_ifflags(struct vxlan_softc *sc)

Callers

nothing calls this directly

Calls 2

vxlan_ftable_expireFunction · 0.85
callout_scheduleFunction · 0.50

Tested by

no test coverage detected