Searched refs:mtail (Results 1 - 6 of 6) sorted by relevance

/freebsd-12-stable/sys/net/
H A Dif_fwsubr.c91 struct mbuf *mtail; local
272 mtail = m_split(m, fsize, M_NOWAIT);
273 m_tag_copy_chain(mtail, m, M_NOWAIT);
275 mtail = NULL;
296 if (mtail)
317 if (mtail)
318 m_freem(mtail);
322 m = mtail;
/freebsd-12-stable/sys/kern/
H A Dkern_mbuf.c1037 struct mbuf *mb, *nm = NULL, *mtail = NULL; local
1069 if (mtail != NULL)
1070 mtail->m_next = mb;
1073 mtail = mb;
1077 mtail->m_flags |= M_EOR; /* Only valid on the last mbuf. */
1081 for (mtail = m; mtail->m_next != NULL; mtail = mtail->m_next)
1083 mtail
[all...]
H A Dkern_sendfile.c596 struct mbuf *mtail; local
599 mtail = NULL;
829 if (mtail != NULL)
830 mtail->m_next = m0;
833 mtail = m0;
/freebsd-12-stable/sys/net80211/
H A Dieee80211_freebsd.h155 #define _IF_PREPEND_LIST(ifq, mhead, mtail, mcount) do { \
156 (mtail)->m_nextpkt = (ifq)->ifq_head; \
158 (ifq)->ifq_tail = (mtail); \
162 #define IF_PREPEND_LIST(ifq, mhead, mtail, mcount) do { \
164 _IF_PREPEND_LIST(ifq, mhead, mtail, mcount); \
/freebsd-12-stable/sys/dev/netmap/
H A Dif_ptnet.c1945 ptnet_rx_slot(struct mbuf *mtail, uint8_t *nmbuf, unsigned int nmbuf_len) argument
1947 uint8_t *mdata = mtod(mtail, uint8_t *) + mtail->m_len;
1952 if (mtail->m_len == MCLBYTES) {
1960 mtail->m_next = mf;
1961 mtail = mf;
1962 mdata = mtod(mtail, uint8_t *);
1963 mtail->m_len = 0;
1966 copy = MCLBYTES - mtail->m_len;
1976 mtail
2009 struct mbuf *mhead, *mtail; local
[all...]
/freebsd-12-stable/sys/dev/smc/
H A Dif_smc.c680 struct mbuf *m, *mhead, *mtail; local
685 mhead = mtail = NULL;
762 mhead = mtail = m;
765 mtail->m_next = m;
766 mtail = m;

Completed in 129 milliseconds