Home
last modified time | relevance | path

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

/NextBSD/sys/net/
HDif_fwsubr.c89 struct mbuf *mtail; in firewire_output() local
269 mtail = m_split(m, fsize, M_NOWAIT); in firewire_output()
270 m_tag_copy_chain(mtail, m, M_NOWAIT); in firewire_output()
272 mtail = 0; in firewire_output()
293 if (mtail) in firewire_output()
314 if (mtail) in firewire_output()
315 m_freem(mtail); in firewire_output()
319 m = mtail; in firewire_output()
/NextBSD/sys/net80211/
HDieee80211_freebsd.h142 #define _IF_PREPEND_LIST(ifq, mhead, mtail, mcount) do { \ argument
143 (mtail)->m_nextpkt = (ifq)->ifq_head; \
145 (ifq)->ifq_tail = (mtail); \
149 #define IF_PREPEND_LIST(ifq, mhead, mtail, mcount) do { \ argument
151 _IF_PREPEND_LIST(ifq, mhead, mtail, mcount); \
/NextBSD/sys/kern/
HDuipc_mbuf.c207 struct mbuf *mb, *nm = NULL, *mtail = NULL; in m_getm2() local
239 if (mtail != NULL) in m_getm2()
240 mtail->m_next = mb; in m_getm2()
243 mtail = mb; in m_getm2()
247 mtail->m_flags |= M_EOR; /* Only valid on the last mbuf. */ in m_getm2()
251 for (mtail = m; mtail->m_next != NULL; mtail = mtail->m_next) in m_getm2()
253 mtail->m_next = nm; in m_getm2()
254 mtail->m_flags &= ~M_EOR; in m_getm2()
HDuipc_syscalls.c2439 struct mbuf *mtail; in vn_sendfile() local
2442 mtail = NULL; in vn_sendfile()
2629 if (mtail != NULL) in vn_sendfile()
2630 mtail->m_next = m0; in vn_sendfile()
2633 mtail = m0; in vn_sendfile()
/NextBSD/sys/dev/smc/
HDif_smc.c678 struct mbuf *m, *mhead, *mtail; in smc_task_rx() local
683 mhead = mtail = NULL; in smc_task_rx()
760 mhead = mtail = m; in smc_task_rx()
763 mtail->m_next = m; in smc_task_rx()
764 mtail = m; in smc_task_rx()