Searched refs:mtail (Results 1 – 4 of 4) sorted by relevance
| /f-stack/freebsd/net/ |
| H A D | if_fwsubr.c | 91 struct mbuf *mtail; in firewire_output() local 272 mtail = m_split(m, fsize, M_NOWAIT); in firewire_output() 273 m_tag_copy_chain(mtail, m, M_NOWAIT); in firewire_output() 275 mtail = NULL; in firewire_output() 296 if (mtail) in firewire_output() 317 if (mtail) in firewire_output() 318 m_freem(mtail); in firewire_output() 322 m = mtail; in firewire_output()
|
| /f-stack/freebsd/kern/ |
| H A D | kern_sendfile.c | 763 struct mbuf *m0, *mtail; in vn_sendfile() local 766 mtail = NULL; in vn_sendfile() 1038 if (mtail != NULL) in vn_sendfile() 1039 mtail->m_next = m0; in vn_sendfile() 1042 mtail = m0; in vn_sendfile() 1047 mtail->m_flags |= M_NOTREADY; in vn_sendfile() 1056 mtail->m_len += xfs; in vn_sendfile() 1057 mtail->m_ext.ext_size += PAGE_SIZE; in vn_sendfile() 1121 if (mtail != NULL) in vn_sendfile() 1122 mtail->m_next = m0; in vn_sendfile() [all …]
|
| H A D | kern_mbuf.c | 1426 struct mbuf *mb, *nm = NULL, *mtail = NULL; in m_getm2() local 1464 if (mtail != NULL) in m_getm2() 1465 mtail->m_next = mb; in m_getm2() 1468 mtail = mb; in m_getm2() 1472 mtail->m_flags |= M_EOR; /* Only valid on the last mbuf. */ in m_getm2() 1476 for (mtail = m; mtail->m_next != NULL; mtail = mtail->m_next) in m_getm2() 1478 mtail->m_next = nm; in m_getm2() 1479 mtail->m_flags &= ~M_EOR; in m_getm2()
|
| /f-stack/freebsd/net80211/ |
| H A D | ieee80211_freebsd.h | 157 #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); \
|