Home
last modified time | relevance | path

Searched refs:sendmp (Results 1 – 4 of 4) sorted by relevance

/freebsd-9-stable/sys/dev/ixgbe/
Dixv.c3309 struct mbuf *sendmp, *mh, *mp; in ixv_rxeof() local
3327 sendmp = NULL; in ixv_rxeof()
3415 sendmp = mh; in ixv_rxeof()
3418 sendmp->m_pkthdr.ether_vtag = vtag; in ixv_rxeof()
3419 sendmp->m_flags |= M_VLANTAG; in ixv_rxeof()
3433 sendmp = rbuf->fmp; in ixv_rxeof()
3436 if (sendmp != NULL) /* secondary frag */ in ixv_rxeof()
3437 sendmp->m_pkthdr.len += mp->m_len; in ixv_rxeof()
3440 sendmp = mp; in ixv_rxeof()
3441 sendmp->m_flags |= M_PKTHDR; in ixv_rxeof()
[all …]
Dixgbe.c4426 struct mbuf *sendmp, *mp; local
4445 sendmp = NULL;
4513 sendmp = rbuf->fmp;
4514 if (sendmp != NULL) { /* secondary frag */
4517 sendmp->m_pkthdr.len += mp->m_len;
4526 sendmp = m_gethdr(M_NOWAIT, MT_DATA);
4527 if (sendmp != NULL) {
4528 sendmp->m_data +=
4531 sendmp->m_data, len);
4532 sendmp->m_len = len;
[all …]
/freebsd-9-stable/sys/dev/e1000/
Dif_em.c4430 struct mbuf *mp, *sendmp; in em_rxeof() local
4456 mp = sendmp = NULL; in em_rxeof()
4498 sendmp = rxr->fmp; in em_rxeof()
4499 sendmp->m_pkthdr.rcvif = ifp; in em_rxeof()
4501 em_receive_checksum(cur, sendmp); in em_rxeof()
4509 sendmp->m_pkthdr.ether_vtag = in em_rxeof()
4511 sendmp->m_flags |= M_VLANTAG; in em_rxeof()
4529 if (sendmp != NULL) { in em_rxeof()
4532 (*ifp->if_input)(ifp, sendmp); in em_rxeof()
Dif_igb.c4838 struct mbuf *sendmp, *mh, *mp; in igb_rxeof() local
4850 sendmp = mh = mp = NULL; in igb_rxeof()
4965 sendmp = rxr->fmp; in igb_rxeof()
4967 sendmp->m_flags |= M_PKTHDR; in igb_rxeof()
4982 if (sendmp != NULL) { in igb_rxeof()
4984 igb_rx_input(rxr, ifp, sendmp, ptype); in igb_rxeof()