Lines Matching refs:m_new
1568 struct mbuf *m_new = NULL, *m_final = NULL; in m_defrag() local
1596 m_new = m_final; in m_defrag()
1603 if (m_new == NULL) { in m_defrag()
1605 m_new = m_getcl(how, MT_DATA, 0); in m_defrag()
1607 m_new = m_get(how, MT_DATA); in m_defrag()
1608 if (m_new == NULL) in m_defrag()
1612 m_copydata(m0, progress, length, mtod(m_new, caddr_t)); in m_defrag()
1614 m_new->m_len = length; in m_defrag()
1615 if (m_new != m_final) in m_defrag()
1616 m_cat(m_final, m_new); in m_defrag()
1617 m_new = NULL; in m_defrag()
1817 struct mbuf *m_new = m_getcl(how, MT_DATA, 0); in m_fragment() local
1818 if (m_new == NULL) in m_fragment()
1821 m_last->m_next = m_new; in m_fragment()
1822 m_last = m_new; in m_fragment()