aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/532-ath9k_remove_pending_frames_workaround.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-03-13 18:38:37 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-03-13 18:38:37 +0000
commitb3c2781814e9473f1fb4a1b7caa518d0ed98a3de (patch)
tree0ad0e47fc5af3d1f3743024f8f7b5bb333149419 /package/mac80211/patches/532-ath9k_remove_pending_frames_workaround.patch
parentb2b9c9a950d03afcf66a80dfb4592365bf1bd794 (diff)
downloadupstream-b3c2781814e9473f1fb4a1b7caa518d0ed98a3de.tar.gz
upstream-b3c2781814e9473f1fb4a1b7caa518d0ed98a3de.tar.bz2
upstream-b3c2781814e9473f1fb4a1b7caa518d0ed98a3de.zip
mac80211: update to wireless-testing 2011-03-11
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26128 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/patches/532-ath9k_remove_pending_frames_workaround.patch')
-rw-r--r--package/mac80211/patches/532-ath9k_remove_pending_frames_workaround.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/package/mac80211/patches/532-ath9k_remove_pending_frames_workaround.patch b/package/mac80211/patches/532-ath9k_remove_pending_frames_workaround.patch
deleted file mode 100644
index f7341e2a10..0000000000
--- a/package/mac80211/patches/532-ath9k_remove_pending_frames_workaround.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- a/drivers/net/wireless/ath/ath9k/xmit.c
-+++ b/drivers/net/wireless/ath/ath9k/xmit.c
-@@ -2226,33 +2226,6 @@ static void ath_tx_complete_poll_work(st
- } else {
- txq->axq_tx_inprogress = true;
- }
-- } else {
-- /* If the queue has pending buffers, then it
-- * should be doing tx work (and have axq_depth).
-- * Shouldn't get to this state I think..but
-- * we do.
-- */
-- if (!(sc->sc_flags & (SC_OP_OFFCHANNEL)) &&
-- (txq->pending_frames > 0 ||
-- !list_empty(&txq->axq_acq) ||
-- txq->stopped)) {
-- ath_err(ath9k_hw_common(sc->sc_ah),
-- "txq: %p axq_qnum: %u,"
-- " mac80211_qnum: %i"
-- " axq_link: %p"
-- " pending frames: %i"
-- " axq_acq empty: %i"
-- " stopped: %i"
-- " axq_depth: 0 Attempting to"
-- " restart tx logic.\n",
-- txq, txq->axq_qnum,
-- txq->mac80211_qnum,
-- txq->axq_link,
-- txq->pending_frames,
-- list_empty(&txq->axq_acq),
-- txq->stopped);
-- ath_txq_schedule(sc, txq);
-- }
- }
- spin_unlock_bh(&txq->axq_lock);
- }