summaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/520-ath9k_leak_fix.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-07-27 21:04:54 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-07-27 21:04:54 +0000
commit0e417cf3ce3fc469106548491c9d9c19ddae45d0 (patch)
tree7bc9557a2d205491d94c6893c347699170985594 /package/mac80211/patches/520-ath9k_leak_fix.patch
parent7a5f143f64aa4b4016c29992b0eaa956da86eef6 (diff)
downloadmaster-31e0f0ae-0e417cf3ce3fc469106548491c9d9c19ddae45d0.tar.gz
master-31e0f0ae-0e417cf3ce3fc469106548491c9d9c19ddae45d0.tar.bz2
master-31e0f0ae-0e417cf3ce3fc469106548491c9d9c19ddae45d0.zip
mac80211: update to wireless-testing 2010-07-26 + pending patches - adds a change that might fix some calibration issues
SVN-Revision: 22403
Diffstat (limited to 'package/mac80211/patches/520-ath9k_leak_fix.patch')
-rw-r--r--package/mac80211/patches/520-ath9k_leak_fix.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/package/mac80211/patches/520-ath9k_leak_fix.patch b/package/mac80211/patches/520-ath9k_leak_fix.patch
deleted file mode 100644
index acf7efd87f..0000000000
--- a/package/mac80211/patches/520-ath9k_leak_fix.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- a/drivers/net/wireless/ath/ath9k/xmit.c
-+++ b/drivers/net/wireless/ath/ath9k/xmit.c
-@@ -518,6 +518,14 @@ static void ath_tx_complete_aggr(struct
- bf = bf_next;
- }
-
-+ /* prepend un-acked frames to the beginning of the pending frame queue */
-+ if (!list_empty(&bf_pending)) {
-+ spin_lock_bh(&txq->axq_lock);
-+ list_splice(&bf_pending, &tid->buf_q);
-+ ath_tx_queue_tid(txq, tid);
-+ spin_unlock_bh(&txq->axq_lock);
-+ }
-+
- if (tid->state & AGGR_CLEANUP) {
- if (tid->baw_head == tid->baw_tail) {
- tid->state &= ~AGGR_ADDBA_COMPLETE;
-@@ -530,14 +538,6 @@ static void ath_tx_complete_aggr(struct
- return;
- }
-
-- /* prepend un-acked frames to the beginning of the pending frame queue */
-- if (!list_empty(&bf_pending)) {
-- spin_lock_bh(&txq->axq_lock);
-- list_splice(&bf_pending, &tid->buf_q);
-- ath_tx_queue_tid(txq, tid);
-- spin_unlock_bh(&txq->axq_lock);
-- }
--
- rcu_read_unlock();
-
- if (needreset)