| 1548 | } |
| 1549 | |
| 1550 | static int |
| 1551 | bridge_ioctl_flush(struct bridge_softc *sc, void *arg) |
| 1552 | { |
| 1553 | struct ifbreq *req = arg; |
| 1554 | |
| 1555 | BRIDGE_RT_LOCK(sc); |
| 1556 | bridge_rtflush(sc, req->ifbr_ifsflags); |
| 1557 | BRIDGE_RT_UNLOCK(sc); |
| 1558 | |
| 1559 | return (0); |
| 1560 | } |
| 1561 | |
| 1562 | static int |
| 1563 | bridge_ioctl_gpri(struct bridge_softc *sc, void *arg) |
nothing calls this directly
no test coverage detected