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

/freebsd-10.0-release/sys/net/
H A Dif_fwsubr.c88 struct mbuf *mtail; local
264 mtail = m_split(m, fsize, M_NOWAIT);
265 m_tag_copy_chain(mtail, m, M_NOWAIT);
267 mtail = 0;
288 if (mtail)
309 if (mtail)
310 m_freem(mtail);
314 m = mtail;
/freebsd-10.0-release/sys/net80211/
H A Dieee80211_freebsd.h140 #define _IF_PREPEND_LIST(ifq, mhead, mtail, mcount) do { \
141 (mtail)->m_nextpkt = (ifq)->ifq_head; \
143 (ifq)->ifq_tail = (mtail); \
147 #define IF_PREPEND_LIST(ifq, mhead, mtail, mcount) do { \
149 _IF_PREPEND_LIST(ifq, mhead, mtail, mcount); \
/freebsd-10.0-release/sys/dev/smc/
H A Dif_smc.c677 struct mbuf *m, *mhead, *mtail; local
682 mhead = mtail = NULL;
760 mhead = mtail = m;
763 mtail->m_next = m;
764 mtail = m;
/freebsd-10.0-release/sys/kern/
H A Duipc_mbuf.c168 struct mbuf *mb, *nm = NULL, *mtail = NULL; local
201 if (mtail != NULL)
202 mtail->m_next = mb;
205 mtail = mb;
209 mtail->m_flags |= M_EOR; /* Only valid on the last mbuf. */
213 for (mtail = m; mtail->m_next != NULL; mtail = mtail->m_next)
215 mtail
[all...]
H A Duipc_syscalls.c2280 struct mbuf *mtail; local
2289 mtail = NULL;
2460 if (mtail != NULL)
2461 mtail->m_next = m0;
2466 mtail = m0;

Completed in 124 milliseconds