Lines Matching defs:m0
105 struct mbuf *m0, *m;
110 m0 = (struct mbuf *) xdrs->x_base;
112 if (m0 != m) {
113 while (m0->m_next != m)
114 m0 = m0->m_next;
115 m0->m_next = NULL;
246 struct mbuf *m0 = (struct mbuf *) xdrs->x_base;
250 while (m0 && m0 != m) {
251 pos += m0->m_len;
252 m0 = m0->m_next;
254 KASSERT(m0, ("Corrupted mbuf chain"));