Home
last modified time | relevance | path

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

/freebsd/sys/net/
H A Dif_fwsubr.c90 struct mbuf *mtail; in firewire_output() local
289 mtail = m_split(m, fsize, M_NOWAIT); in firewire_output()
290 m_tag_copy_chain(mtail, m, M_NOWAIT); in firewire_output()
292 mtail = NULL; in firewire_output()
313 if (mtail) in firewire_output()
334 if (mtail) in firewire_output()
335 m_freem(mtail); in firewire_output()
339 m = mtail; in firewire_output()
/freebsd/sys/kern/
H A Dkern_sendfile.c781 struct mbuf *m0, *mtail; in vn_sendfile() local
784 mtail = NULL; in vn_sendfile()
984 if (mtail != NULL) in vn_sendfile()
985 mtail->m_next = m0; in vn_sendfile()
988 mtail = m0; in vn_sendfile()
993 mtail->m_flags |= M_NOTREADY; in vn_sendfile()
1002 mtail->m_len += xfs; in vn_sendfile()
1003 mtail->m_ext.ext_size += PAGE_SIZE; in vn_sendfile()
1060 if (mtail != NULL) in vn_sendfile()
1061 mtail->m_next = m0; in vn_sendfile()
[all …]
H A Dkern_mbuf.c1542 struct mbuf *mtail; in m_getm2() local
1544 mtail = m_last(m); in m_getm2()
1545 mtail->m_next = mc_first(&mc); in m_getm2()
1546 mtail->m_flags &= ~M_EOR; in m_getm2()
/freebsd/sys/dev/netmap/
H A Dif_ptnet.c1631 ptnet_rx_slot(struct mbuf *mtail, uint8_t *nmbuf, unsigned int nmbuf_len) in ptnet_rx_slot() argument
1633 uint8_t *mdata = mtod(mtail, uint8_t *) + mtail->m_len; in ptnet_rx_slot()
1638 if (mtail->m_len == MCLBYTES) { in ptnet_rx_slot()
1646 mtail->m_next = mf; in ptnet_rx_slot()
1647 mtail = mf; in ptnet_rx_slot()
1648 mdata = mtod(mtail, uint8_t *); in ptnet_rx_slot()
1649 mtail->m_len = 0; in ptnet_rx_slot()
1652 copy = MCLBYTES - mtail->m_len; in ptnet_rx_slot()
1662 mtail->m_len += copy; in ptnet_rx_slot()
1665 return mtail; in ptnet_rx_slot()
[all …]
/freebsd/sys/net80211/
H A Dieee80211_freebsd.h167 #define _IF_PREPEND_LIST(ifq, mhead, mtail, mcount) do { \ argument
168 (mtail)->m_nextpkt = (ifq)->ifq_head; \
170 (ifq)->ifq_tail = (mtail); \
174 #define IF_PREPEND_LIST(ifq, mhead, mtail, mcount) do { \ argument
176 _IF_PREPEND_LIST(ifq, mhead, mtail, mcount); \
/freebsd/sys/dev/smc/
H A Dif_smc.c691 struct mbuf *m, *mhead, *mtail; in smc_task_rx() local
696 mhead = mtail = NULL; in smc_task_rx()
773 mhead = mtail = m; in smc_task_rx()
776 mtail->m_next = m; in smc_task_rx()
777 mtail = m; in smc_task_rx()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td5029 def mtail_call : Flag<["-"], "mtail-call">, Group<m_wasm_Features_Group>;