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