1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-27 07:41:06 +02:00
openwrt-xburst/package/mac80211/patches/572-ath9k_fix_tx_retry.patch
nbd 44d9465e63 ath9k: fix some tx aggregation issues - reduces the number of tx dma stop failures
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28301 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-09-25 18:34:54 +00:00

12 lines
410 B
Diff

--- a/drivers/net/wireless/ath/ath9k/xmit.c
+++ b/drivers/net/wireless/ath/ath9k/xmit.c
@@ -484,7 +484,7 @@ static void ath_tx_complete_aggr(struct
*/
txfail = 1;
} else if (fi->retries < ATH_MAX_SW_RETRIES) {
- if (!(ts->ts_status & ATH9K_TXERR_FILT) ||
+ if (!(ts->ts_status & ATH9K_TXERR_FILT) &&
!an->sleeping)
ath_tx_set_retry(sc, txq, bf->bf_mpdu,
retries);