aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-02-03 10:23:51 +0000
committerFelix Fietkau <nbd@openwrt.org>2012-02-03 10:23:51 +0000
commitf712c0de7ed4f49eac637e631ef025019cee41a5 (patch)
treecb6fd0e9625175bf59e522892a458fbf89024c7a /package
parentde8a98e59db988849d81c3b5c5e9a6f769213697 (diff)
downloadmaster-187ad058-f712c0de7ed4f49eac637e631ef025019cee41a5.tar.gz
master-187ad058-f712c0de7ed4f49eac637e631ef025019cee41a5.tar.bz2
master-187ad058-f712c0de7ed4f49eac637e631ef025019cee41a5.zip
ath9k: fix WEP connection issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30009 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/mac80211/patches/568-ath9k_fix_wep.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/package/mac80211/patches/568-ath9k_fix_wep.patch b/package/mac80211/patches/568-ath9k_fix_wep.patch
new file mode 100644
index 0000000000..f18553f747
--- /dev/null
+++ b/package/mac80211/patches/568-ath9k_fix_wep.patch
@@ -0,0 +1,17 @@
+--- a/drivers/net/wireless/ath/ath9k/recv.c
++++ b/drivers/net/wireless/ath/ath9k/recv.c
+@@ -823,6 +823,14 @@ static bool ath9k_rx_accept(struct ath_c
+ (ATH9K_RXERR_DECRYPT | ATH9K_RXERR_CRC | ATH9K_RXERR_MIC |
+ ATH9K_RXERR_KEYMISS));
+
++ /*
++ * Key miss events are only relevant for pairwise keys where the
++ * descriptor does contain a valid key index. This has been observed
++ * mostly with CCMP encryption.
++ */
++ if (rx_stats->rs_keyix == ATH9K_RXKEYIX_INVALID)
++ rx_stats->rs_status &= ~ATH9K_RXERR_KEYMISS;
++
+ if (!rx_stats->rs_datalen)
+ return false;
+ /*