]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
ath9k: fix ready time of the multicast buffer queue
authorFelix Fietkau <nbd@openwrt.org>
Sun, 9 Mar 2014 10:02:54 +0000 (11:02 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 14 Mar 2014 18:49:14 +0000 (14:49 -0400)
qi->tqi_readyTime is written directly to registers that expect
microseconds as unit instead of TU.
When setting the CABQ ready time, cur_conf->beacon_interval is in TU, so
convert it to microseconds before passing it to ath9k_hw.

This should hopefully fix some Tx DMA issues with buffered multicast
frames in AP mode.

Cc: stable@vger.kernel.org
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath9k/xmit.c

index fafacfed44eab0f634fca792c978295faf72ec4d..3e7966b4b61e56450b04852939a1d7852a92b4be 100644 (file)
@@ -1699,7 +1699,7 @@ int ath_cabq_update(struct ath_softc *sc)
 
        ath9k_hw_get_txq_props(sc->sc_ah, qnum, &qi);
 
-       qi.tqi_readyTime = (cur_conf->beacon_interval *
+       qi.tqi_readyTime = (TU_TO_USEC(cur_conf->beacon_interval) *
                            ATH_CABQ_READY_TIME) / 100;
        ath_txq_update(sc, qnum, &qi);