| 1683 | } |
| 1684 | |
| 1685 | static void |
| 1686 | arge_start(struct ifnet *ifp) |
| 1687 | { |
| 1688 | struct arge_softc *sc; |
| 1689 | |
| 1690 | sc = ifp->if_softc; |
| 1691 | |
| 1692 | ARGE_LOCK(sc); |
| 1693 | arge_start_locked(ifp); |
| 1694 | ARGE_UNLOCK(sc); |
| 1695 | } |
| 1696 | |
| 1697 | static void |
| 1698 | arge_start_locked(struct ifnet *ifp) |
nothing calls this directly
no test coverage detected