MFC r268787:
Deprecate m_act. Use m_nextpkt always.
This commit is contained in:
parent
0320ab1784
commit
f112206e5a
@ -2348,7 +2348,7 @@ unp_scan(struct mbuf *m0, void (*op)(struct filedescent **, int))
|
||||
}
|
||||
}
|
||||
}
|
||||
m0 = m0->m_act;
|
||||
m0 = m0->m_nextpkt;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user