| 2256 | } |
| 2257 | |
| 2258 | static int |
| 2259 | vxlan_ctrl_flush(struct vxlan_softc *sc, void *arg) |
| 2260 | { |
| 2261 | struct ifvxlancmd *cmd; |
| 2262 | int all; |
| 2263 | |
| 2264 | cmd = arg; |
| 2265 | all = cmd->vxlcmd_flags & VXLAN_CMD_FLAG_FLUSH_ALL; |
| 2266 | |
| 2267 | VXLAN_WLOCK(sc); |
| 2268 | vxlan_ftable_flush(sc, all); |
| 2269 | VXLAN_WUNLOCK(sc); |
| 2270 | |
| 2271 | return (0); |
| 2272 | } |
| 2273 | |
| 2274 | static int |
| 2275 | vxlan_ioctl_drvspec(struct vxlan_softc *sc, struct ifdrv *ifd, int get) |
nothing calls this directly
no test coverage detected