diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-01-09 15:16:52 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-01-09 15:16:52 +0000 |
commit | 6ae52f05eb27fc164f092035d54ee109f0c56697 (patch) | |
tree | fe45b58071aad28f4f43220627fb089f7627073f /package/mac80211 | |
parent | 3d243e744ee027fc91d8e99165ff05cc79556b2d (diff) | |
download | upstream-6ae52f05eb27fc164f092035d54ee109f0c56697.tar.gz upstream-6ae52f05eb27fc164f092035d54ee109f0c56697.tar.bz2 upstream-6ae52f05eb27fc164f092035d54ee109f0c56697.zip |
ath9k: correct a logic error in the rx path fix
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35067 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211')
-rw-r--r-- | package/mac80211/patches/300-pending_work.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mac80211/patches/300-pending_work.patch b/package/mac80211/patches/300-pending_work.patch index d576990e30..b47878b180 100644 --- a/package/mac80211/patches/300-pending_work.patch +++ b/package/mac80211/patches/300-pending_work.patch @@ -451,7 +451,7 @@ } requeue: + list_add_tail(&bf->list, &sc->rx.rxbuf); -+ if (!flush) ++ if (flush) + continue; + if (edma) { |