diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-08-29 08:16:34 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-08-29 08:16:34 +0000 |
commit | c965569d21df56e7ee402b0bb53b563126beedf5 (patch) | |
tree | 26d895284f4c9c8a3bf37b7443fb3e41e01c42ae /package/mac80211 | |
parent | eb896ce900cf69fdb2afb876dbda3a26be4f7895 (diff) | |
download | upstream-c965569d21df56e7ee402b0bb53b563126beedf5.tar.gz upstream-c965569d21df56e7ee402b0bb53b563126beedf5.tar.bz2 upstream-c965569d21df56e7ee402b0bb53b563126beedf5.zip |
ath9k: add fix to improve reliability of powersave clients
SVN-Revision: 33290
Diffstat (limited to 'package/mac80211')
-rw-r--r-- | package/mac80211/patches/300-pending_work.patch | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/package/mac80211/patches/300-pending_work.patch b/package/mac80211/patches/300-pending_work.patch index 34a0ceca42..5cdf05c9af 100644 --- a/package/mac80211/patches/300-pending_work.patch +++ b/package/mac80211/patches/300-pending_work.patch @@ -3486,6 +3486,15 @@ /*********************/ /* Aggregation logic */ /*********************/ +@@ -593,7 +568,7 @@ static void ath_tx_complete_aggr(struct + if (!an->sleeping) { + ath_tx_queue_tid(txq, tid); + +- if (ts->ts_status & ATH9K_TXERR_FILT) ++ if (ts->ts_status & (ATH9K_TXERR_FILT | ATH9K_TXERR_XRETRY)) + tid->ac->clear_ps_filter = true; + } + } @@ -614,10 +589,8 @@ static void ath_tx_complete_aggr(struct rcu_read_unlock(); |