| 206 | |
| 207 | |
| 208 | static void |
| 209 | ff_veth_init(void *arg) |
| 210 | { |
| 211 | struct ff_veth_softc *sc = arg; |
| 212 | struct ifnet *ifp = sc->ifp; |
| 213 | |
| 214 | ifp->if_drv_flags |= IFF_DRV_RUNNING; |
| 215 | ifp->if_drv_flags &= ~IFF_DRV_OACTIVE; |
| 216 | ifp->if_flags |= IFF_UP; |
| 217 | } |
| 218 | |
| 219 | static void |
| 220 | ff_veth_start(struct ifnet *ifp) |
no outgoing calls
no test coverage detected