Searched refs:m_nextpkt (Results 76 - 98 of 98) sorted by relevance

1234

/freebsd-11.0-release/sys/net80211/
H A Dieee80211_ddb.c862 for (m = q->aq_head; m != NULL; m = m->m_nextpkt)
H A Dieee80211_hwmp.c1454 next = m->m_nextpkt;
1455 m->m_nextpkt = NULL;
H A Dieee80211_mesh.c1119 next = mcopy->m_nextpkt;
1120 mcopy->m_nextpkt = NULL;
1225 /* XXX do we know m_nextpkt is NULL? */
/freebsd-11.0-release/sys/netgraph/bluetooth/socket/
H A Dng_btsocket_rfcomm.c1594 * XXX FIXME/VERIFY is that correct? For now use m->m_nextpkt as
1620 more = (m->m_nextpkt != NULL);
1621 m->m_nextpkt = NULL;
3539 nextpkt = n->m_nextpkt;
3571 nextpkt = (n != NULL)? n->m_nextpkt : NULL;
/freebsd-11.0-release/sys/netgraph/
H A Dng_ksocket.c1114 KASSERT(m->m_nextpkt == NULL, ("%s: nextpkt", __func__));
H A Dng_base.c391 if (n->m_nextpkt != NULL) \
392 panic("%s: m_nextpkt", __func__); \
/freebsd-11.0-release/sys/netinet/
H A Dip_mroute.c2348 mb_copy = mm->m_nextpkt;
2349 mm->m_nextpkt = 0;
/freebsd-11.0-release/sys/netpfil/pf/
H A Dif_pfsync.c2221 n = m->m_nextpkt;
2222 m->m_nextpkt = NULL;
H A Dpf.c5546 m1 = m0->m_nextpkt;
5547 m0->m_nextpkt = NULL;
/freebsd-11.0-release/sys/dev/wpi/
H A Dif_wpi.c2907 struct mbuf *next = m->m_nextpkt;
3118 for (mnext = m->m_nextpkt; mnext != NULL; mnext = mnext->m_nextpkt)
3131 mnext = m->m_nextpkt;
/freebsd-11.0-release/sys/contrib/ipfilter/netinet/
H A Dip_compat.h764 # define m_act m_nextpkt
/freebsd-11.0-release/sys/dev/lmc/
H A Dif_lmc.c2339 * NB: mbufs are linked through their m_nextpkt field.
2347 m->m_nextpkt = NULL;
2351 ring->tail->m_nextpkt = m;
2361 if ((ring->head = m->m_nextpkt) == NULL)
/freebsd-11.0-release/sys/dev/ath/
H A Dif_ath_tx.c269 for (m = m0->m_nextpkt; m != NULL; m = m->m_nextpkt) {
1776 * and we don't need to look at m_nextpkt; clear it in
1779 m0->m_nextpkt = NULL;
H A Dif_ath.c3321 struct mbuf *fm = m->m_nextpkt;
3332 fm = fm->m_nextpkt;
3340 * with m_nextpkt. We know there are sufficient ath_buf's
3342 * ath_txfrag_setup. We leave m_nextpkt set while
3346 * ath_tx_start clears m_nextpkt once it commits to
3355 next = m->m_nextpkt;
/freebsd-11.0-release/sys/dev/xen/netback/
H A Dnetback.c600 m->m_next, m->m_nextpkt, m->m_data);
/freebsd-11.0-release/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_main.c900 sb->sb_lastrecord->m_nextpkt = mb;
/freebsd-11.0-release/sys/dev/cxgbe/iw_cxgbe/
H A Dcm.c1483 m = m->m_nextpkt;
/freebsd-11.0-release/sys/kern/
H A Duipc_usrreq.c2405 m0 = m0->m_nextpkt;
/freebsd-11.0-release/sys/dev/otus/
H A Dif_otus.c1703 mb.m_nextpkt = NULL;
/freebsd-11.0-release/sys/net/
H A Dif.c2252 n = m->m_nextpkt;
H A Dif_spppsubr.c4758 n = m->m_nextpkt;
/freebsd-11.0-release/sys/dev/txp/
H A Dif_txp.c756 m.m_next = m.m_nextpkt = NULL;
/freebsd-11.0-release/sys/dev/cxgbe/
H A Dt4_main.c1611 MPASS(m->m_nextpkt == NULL); /* not quite ready for this yet */

Completed in 335 milliseconds

1234