| 1645 | } |
| 1646 | |
| 1647 | static int |
| 1648 | bridge_ioctl_sifcost(struct bridge_softc *sc, void *arg) |
| 1649 | { |
| 1650 | struct ifbreq *req = arg; |
| 1651 | struct bridge_iflist *bif; |
| 1652 | |
| 1653 | bif = bridge_lookup_member(sc, req->ifbr_ifsname); |
| 1654 | if (bif == NULL) |
| 1655 | return (ENOENT); |
| 1656 | |
| 1657 | return (bstp_set_path_cost(&bif->bif_stp, req->ifbr_path_cost)); |
| 1658 | } |
| 1659 | |
| 1660 | static int |
| 1661 | bridge_ioctl_sifmaxaddr(struct bridge_softc *sc, void *arg) |
nothing calls this directly
no test coverage detected