MFC r268787:

Deprecate m_act.  Use m_nextpkt always.
This commit is contained in:
kevlo 2014-07-24 06:02:03 +00:00
parent 0320ab1784
commit f112206e5a
3 changed files with 3 additions and 3 deletions

View File

@ -2348,7 +2348,7 @@ unp_scan(struct mbuf *m0, void (*op)(struct filedescent **, int))
}
}
}
m0 = m0->m_act;
m0 = m0->m_nextpkt;
}
}

View File

@ -2009,7 +2009,7 @@ if_qflush(struct ifnet *ifp)
#endif
n = ifq->ifq_head;
while ((m = n) != 0) {
n = m->m_act;
n = m->m_nextpkt;
m_freem(m);
}
ifq->ifq_head = 0;

View File

@ -4778,7 +4778,7 @@ sppp_qflush(struct ifqueue *ifq)
n = ifq->ifq_head;
while ((m = n)) {
n = m->m_act;
n = m->m_nextpkt;
m_freem (m);
}
ifq->ifq_head = 0;