| 422 | } |
| 423 | |
| 424 | static int |
| 425 | ff_veth_transmit(struct ifnet *ifp, struct mbuf *m) |
| 426 | { |
| 427 | struct ff_veth_softc *sc = (struct ff_veth_softc *)ifp->if_softc; |
| 428 | return ff_dpdk_if_send(sc->host_ctx, (void*)m, m->m_pkthdr.len); |
| 429 | } |
| 430 | |
| 431 | static void |
| 432 | ff_veth_qflush(struct ifnet *ifp) |
nothing calls this directly
no test coverage detected