Lines Matching refs:m_new
1744 struct mbuf *m_new = NULL; in xl_newbuf() local
1751 m_new = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); in xl_newbuf()
1752 if (m_new == NULL) in xl_newbuf()
1755 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES; in xl_newbuf()
1758 m_adj(m_new, ETHER_ALIGN); in xl_newbuf()
1760 error = bus_dmamap_load_mbuf_sg(sc->xl_mtag, sc->xl_tmpmap, m_new, in xl_newbuf()
1763 m_freem(m_new); in xl_newbuf()
1775 c->xl_mbuf = m_new; in xl_newbuf()
1776 c->xl_ptr->xl_frag.xl_len = htole32(m_new->m_len | XL_LAST_FRAG); in xl_newbuf()
2325 struct mbuf *m_new; in xl_encap() local
2349 m_new = m_collapse(*m_head, M_NOWAIT, XL_MAXFRAGS); in xl_encap()
2350 if (m_new == NULL) { in xl_encap()
2355 *m_head = m_new; in xl_encap()