summaryrefslogtreecommitdiffstats
path: root/net/mac80211/rx.c
diff options
context:
space:
mode:
authorSenthil Balasubramanian2010-11-30 15:45:38 +0100
committerJohn W. Linville2010-11-30 19:45:02 +0100
commit8e26d5ad2f9c038609d42eebc676cd1107709eef (patch)
tree64faf31c3f8dcc4000b06c21a6df147f2f522d18 /net/mac80211/rx.c
parentmac80211: ignore non-bcast mcast deauth/disassoc franes (diff)
downloadkernel-qcow2-linux-8e26d5ad2f9c038609d42eebc676cd1107709eef.tar.gz
kernel-qcow2-linux-8e26d5ad2f9c038609d42eebc676cd1107709eef.tar.xz
kernel-qcow2-linux-8e26d5ad2f9c038609d42eebc676cd1107709eef.zip
mac80211: Fix STA disconnect due to MIC failure
Th commit titled "mac80211: clean up rx handling wrt. found_sta" removed found_sta variable which caused a MIC failure event to be reported twice for a single failure to supplicant resulted in STA disconnect. This should fix WPA specific countermeasures WiFi test case (5.2.17) issues with mac80211 based drivers which report MIC failure events in rx status. Cc: Stable <stable@kernel.org> (2.6.37) Signed-off-by: Senthil Balasubramanian <senthilkumar@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/rx.c')
-rw-r--r--net/mac80211/rx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
index 3c87293cb078..54fb4a0e76f0 100644
--- a/net/mac80211/rx.c
+++ b/net/mac80211/rx.c
@@ -2745,6 +2745,7 @@ static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
return;
+ goto out;
}
}
@@ -2784,6 +2785,7 @@ static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
return;
}
+ out:
dev_kfree_skb(skb);
}