Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Mar 2011 15:27:15 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/sys/net80211 ieee80211_proto.c
Message-ID:  <201103241527.p2OFRS2v002679@repoman.freebsd.org>

index | next in thread | raw e-mail

adrian      2011-03-24 15:27:15 UTC

  FreeBSD src repository

  Modified files:
    sys/net80211         ieee80211_proto.c 
  Log:
  SVN rev 219961 on 2011-03-24 15:27:15Z by adrian
  
  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.
  
  Revision  Changes    Path
  1.69      +9 -0      src/sys/net80211/ieee80211_proto.c


help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201103241527.p2OFRS2v002679>