summaryrefslogtreecommitdiffstats
path: root/sys/net80211/ieee80211_proto.c
diff options
context:
space:
mode:
authoradrian <adrian@FreeBSD.org>2011-03-24 15:27:15 +0000
committeradrian <adrian@FreeBSD.org>2011-03-24 15:27:15 +0000
commitf20bb6e7e3328bb3a25a81d5fcdc0c3cca00bef5 (patch)
treea835d684987e51a152123a1fbc27448f6b4538e5 /sys/net80211/ieee80211_proto.c
parentccc0d4f3248e30679b9f2d1675e09818a34a767c (diff)
downloadFreeBSD-src-f20bb6e7e3328bb3a25a81d5fcdc0c3cca00bef5.zip
FreeBSD-src-f20bb6e7e3328bb3a25a81d5fcdc0c3cca00bef5.tar.gz
Fix a WME corner case found by the FreeBSD 802.11n testing crew.
The symptom: sometimes 11n (and non-11n) throughput is great. Sometimes it isn't. Much teeth gnashing occured, and much kernel bisecting happened, until someone figured out it was the order of which things were rebooted, not the kernel versions. (Which was great news to me, it meant that I hadn't broken if_ath.) What we found was that sometimes the WME parameters for the best-effort queue had a burst window ("txop") in which the station would be allowed to TX as many packets as it could fit inside that particular burst window. This improved throughput. After initially thinking it was a bug - the WME parameters for the best-effort queue -should- have a txop of 0, Bernard and I discovered "aggressive mode" in net80211 - where the WME BE queue parameters are changed if there's not a lot of high priority traffic going on. The WME parameters announced in the association response and beacon frames just "change" based on what the current traffic levels are. So in fact yes, the STA was acutally supposed to be doing this higher throughput stuff as it's just meant to be configuring things based on the WME parameters - but it wasn't. What was eventually happening was this: * at startup, the wme qosinfo count field would be 0; * it'd be parsed in ieee80211_parse_wmeparams(); * and it would be bumped (to say 10); * .. and the WME queue parameters would be correctly parsed and set. But then, when you restarted the assocation (eg hostap goes away and comes back with the same qosinfo count field of 10, or if you destroy the sta VIF and re-create it), the WME qosinfo count field - which is associated not to the VIF, but to the main interface - wouldn't be cleared, so the queue default parameters would be used (which include no burst setting for the BE queue) and would remain that way until the hostap qosinfo count field changed, or the STA was actually rebooted. This fix simply cleares the wme capability field (which has the count field) to 0, forcing it to be reset by the next received beacon. Thanks go to Milu for finding it and helping me track down what was going on, and Bernard Schmidt for working through the net80211 and WME specific magic.
Diffstat (limited to 'sys/net80211/ieee80211_proto.c')
-rw-r--r--sys/net80211/ieee80211_proto.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/net80211/ieee80211_proto.c b/sys/net80211/ieee80211_proto.c
index c20f083..8c8ee52 100644
--- a/sys/net80211/ieee80211_proto.c
+++ b/sys/net80211/ieee80211_proto.c
@@ -896,6 +896,15 @@ ieee80211_wme_initparams_locked(struct ieee80211vap *vap)
return;
/*
+ * Clear the wme cap_info field so a qoscount from a previous
+ * vap doesn't confuse later code which only parses the beacon
+ * field and updates hardware when said field changes.
+ * Otherwise the hardware is programmed with defaults, not what
+ * the beacon actually announces.
+ */
+ wme->wme_wmeChanParams.cap_info = 0;
+
+ /*
* Select mode; we can be called early in which case we
* always use auto mode. We know we'll be called when
* entering the RUN state with bsschan setup properly
OpenPOWER on IntegriCloud