K 10 svn:author V 6 adrian K 8 svn:date V 27 2011-09-16T04:05:58.762823Z K 7 svn:log V 932 The ar5212InitState() function sets up AH5212(ah)->ah_beaconInterval to be 100 TU's by default and I'm guessing this once matched the default beacon interval as specified in the ath driver. This is then used in the CAB queue setup code in AR5212/AR5416 to setup the CAB queue ready time value. This is how long the CAB queue gets to transmit frames before it's halted, so other lower priority queues (ie, the data queues) get a chance to TX. But now that staggered beacons are enabled, the CAB queue readytime value will be shorter. The beacon interval timer is now 25 TU's rater than 100 TU's. So specifying a CAB readytime greater than the TBTT beacon timer interval is likely a bad idea. This hasn't resolved the issues I've seen with CAB queue traffic not draining, nor quietened missing beacon TX. But it certainly looks a lot more correct. Some further investigation into exactly how the cabq should be setup is warranted. END