| 1871 | } |
| 1872 | |
| 1873 | static void |
| 1874 | vxlan_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 | |
| 1885 | static int |
| 1886 | vxlan_ioctl_ifflags(struct vxlan_softc *sc) |
nothing calls this directly
no test coverage detected