aboutsummaryrefslogtreecommitdiff
path: root/sys/net80211/ieee80211_wds.c
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2008-10-30 16:22:04 +0000
committerSam Leffler <sam@FreeBSD.org>2008-10-30 16:22:04 +0000
commitd6f57961a886ac011cbf5880f444b721044afc44 (patch)
treef9342e8ef90b370dd90a7749a0dca79b9ef07f92 /sys/net80211/ieee80211_wds.c
parentbfd50e2732c722abb6e847a15a75e1f4a04cdf99 (diff)
downloadsrc-d6f57961a886ac011cbf5880f444b721044afc44.tar.gz
src-d6f57961a886ac011cbf5880f444b721044afc44.zip
Fix checks for fast frames negotiation. ni_ath_flags holds the
capabilities reported by the ap. These need to be cross-checked against the local configuration in the vap. Previously we were only checking the ap capabilities which meant that if an ap reported it was ff-capable but we were not setup to use them we'd try to do ff aggregation and drop the frame. There are a number of problems to be fixed here but applying this fix immediately as the problem causes all traffic to stop (and has not workaround). Reported by: Ashish Shukla
Notes
Notes: svn path=/head/; revision=184480
Diffstat (limited to 'sys/net80211/ieee80211_wds.c')
-rw-r--r--sys/net80211/ieee80211_wds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net80211/ieee80211_wds.c b/sys/net80211/ieee80211_wds.c
index ff55ed7ab6dd..b0034816dd50 100644
--- a/sys/net80211/ieee80211_wds.c
+++ b/sys/net80211/ieee80211_wds.c
@@ -728,7 +728,7 @@ wds_input(struct ieee80211_node *ni, struct mbuf *m,
m = ieee80211_decap_amsdu(ni, m);
if (m == NULL)
return IEEE80211_FC0_TYPE_DATA;
- } else if ((ni->ni_ath_flags & IEEE80211_NODE_FF) &&
+ } else if (IEEE80211_ATH_CAP(vap, ni, IEEE80211_NODE_FF) &&
#define FF_LLC_SIZE (sizeof(struct ether_header) + sizeof(struct llc))
m->m_pkthdr.len >= 3*FF_LLC_SIZE) {
struct llc *llc;