MFC 1.115: fix use with altq
Approved by: sam(mentor), re(kensmith)
This commit is contained in:
parent
f4efd80bdf
commit
d15554fc2f
@ -685,8 +685,12 @@ ieee80211_deliver_data(struct ieee80211com *ic,
|
||||
ieee80211_free_node(sta);
|
||||
}
|
||||
}
|
||||
if (m1 != NULL)
|
||||
IF_HANDOFF(&ifp->if_snd, m1, ifp);
|
||||
if (m1 != NULL) {
|
||||
int error;
|
||||
|
||||
/* XXX does not work well with WME */
|
||||
IFQ_HANDOFF(ifp, m1, error);
|
||||
}
|
||||
}
|
||||
if (m != NULL) {
|
||||
m->m_pkthdr.rcvif = ifp;
|
||||
|
Loading…
x
Reference in New Issue
Block a user