| 2054 | } |
| 2055 | |
| 2056 | static void |
| 2057 | carp_linkstate(struct ifnet *ifp) |
| 2058 | { |
| 2059 | struct carp_softc *sc; |
| 2060 | |
| 2061 | CIF_LOCK(ifp->if_carp); |
| 2062 | IFNET_FOREACH_CARP(ifp, sc) { |
| 2063 | CARP_LOCK(sc); |
| 2064 | carp_sc_state(sc); |
| 2065 | CARP_UNLOCK(sc); |
| 2066 | } |
| 2067 | CIF_UNLOCK(ifp->if_carp); |
| 2068 | } |
| 2069 | |
| 2070 | static void |
| 2071 | carp_sc_state(struct carp_softc *sc) |
nothing calls this directly
no test coverage detected