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

/freebsd-current/sys/net/
H A Dif_fwsubr.c90 struct mbuf *mtail; local
289 mtail = m_split(m, fsize, M_NOWAIT);
290 m_tag_copy_chain(mtail, m, M_NOWAIT);
292 mtail = NULL;
313 if (mtail)
334 if (mtail)
335 m_freem(mtail);
339 m = mtail;
/freebsd-current/sys/dev/netmap/
H A Dif_ptnet.c1639 ptnet_rx_slot(struct mbuf *mtail, uint8_t *nmbuf, unsigned int nmbuf_len) argument
1641 uint8_t *mdata = mtod(mtail, uint8_t *) + mtail->m_len;
1646 if (mtail->m_len == MCLBYTES) {
1654 mtail->m_next = mf;
1655 mtail = mf;
1656 mdata = mtod(mtail, uint8_t *);
1657 mtail->m_len = 0;
1660 copy = MCLBYTES - mtail->m_len;
1670 mtail
1703 struct mbuf *mhead, *mtail; local
[all...]
/freebsd-current/sys/kern/
H A Dkern_sendfile.c759 struct mbuf *m0, *mtail; local
762 mtail = NULL;
1034 if (mtail != NULL)
1035 mtail->m_next = m0;
1038 mtail = m0;
1043 mtail->m_flags |= M_NOTREADY;
1052 mtail->m_len += xfs;
1053 mtail->m_ext.ext_size += PAGE_SIZE;
1117 if (mtail != NULL)
1118 mtail
[all...]
H A Dkern_mbuf.c1528 struct mbuf *mtail; local
1530 mtail = m_last(m);
1531 mtail->m_next = mc_first(&mc);
1532 mtail->m_flags &= ~M_EOR;
/freebsd-current/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-current/sys/dev/smc/
H A Dif_smc.c698 struct mbuf *m, *mhead, *mtail; local
703 mhead = mtail = NULL;
780 mhead = mtail = m;
783 mtail->m_next = m;
784 mtail = m;

Completed in 188 milliseconds