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/dev/netmap/
H A Dif_ptnet.c1633 ptnet_rx_slot(struct mbuf *mtail, uint8_t *nmbuf, unsigned int nmbuf_len) in ptnet_rx_slot() argument
1635 uint8_t *mdata = mtod(mtail, uint8_t *) + mtail->m_len; in ptnet_rx_slot()
1640 if (mtail->m_len == MCLBYTES) { in ptnet_rx_slot()
1648 mtail->m_next = mf; in ptnet_rx_slot()
1649 mtail = mf; in ptnet_rx_slot()
1650 mdata = mtod(mtail, uint8_t *); in ptnet_rx_slot()
1651 mtail->m_len = 0; in ptnet_rx_slot()
1654 copy = MCLBYTES - mtail->m_len; in ptnet_rx_slot()
1664 mtail in ptnet_rx_slot()
1697 struct mbuf *mhead, *mtail; ptnet_rx_eof() local
[all...]
/freebsd/sys/kern/
H A Dkern_sendfile.c759 struct mbuf *m0, *mtail; in vn_sendfile() local
762 mtail = NULL; in vn_sendfile()
1034 if (mtail != NULL) in vn_sendfile()
1035 mtail->m_next = m0; in vn_sendfile()
1038 mtail = m0; in vn_sendfile()
1043 mtail->m_flags |= M_NOTREADY; in vn_sendfile()
1052 mtail->m_len += xfs; in vn_sendfile()
1053 mtail->m_ext.ext_size += PAGE_SIZE; in vn_sendfile()
1117 if (mtail != NULL) in vn_sendfile()
1118 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/net80211/
H A Dieee80211_freebsd.h157 #define _IF_PREPEND_LIST(ifq, mhead, mtail, mcount) do { \ argument
158 (mtail)->m_nextpkt = (ifq)->ifq_head; \
160 (ifq)->ifq_tail = (mtail); \
164 #define IF_PREPEND_LIST(ifq, mhead, mtail, mcount) do { \ argument
166 _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>;