mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
- Correctly handle ALTQ in ieee80211_deliver_data()
- Add comment from sam that ALTQ probably does not work well with WME PR: kern/119548 Approved by: sam (mentor)
This commit is contained in:
parent
4d494753eb
commit
12c5f8a8e3
1 changed files with 6 additions and 2 deletions
|
|
@ -762,8 +762,12 @@ ieee80211_deliver_data(struct ieee80211com *ic,
|
|||
ieee80211_free_node(sta);
|
||||
}
|
||||
}
|
||||
if (m1 != NULL)
|
||||
(void) 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…
Reference in a new issue