summaryrefslogtreecommitdiffstats
path: root/package/kernel/mac80211/patches/920-wlcore-don-t-switch-channels-on-disconnected-STA-vif.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-04-06 10:41:23 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-04-06 10:41:23 +0000
commit4e155c80d3d8811e19effa7f173a863f6b22f4bf (patch)
tree6ace1120efe3767aa6ea23e33755ec4a69d4735d /package/kernel/mac80211/patches/920-wlcore-don-t-switch-channels-on-disconnected-STA-vif.patch
parentc821836395122a28b692fdfe7ba6446195848496 (diff)
downloadmaster-31e0f0ae-4e155c80d3d8811e19effa7f173a863f6b22f4bf.tar.gz
master-31e0f0ae-4e155c80d3d8811e19effa7f173a863f6b22f4bf.tar.bz2
master-31e0f0ae-4e155c80d3d8811e19effa7f173a863f6b22f4bf.zip
mac80211: update to wireless-testing 2014-03-31
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 40393
Diffstat (limited to 'package/kernel/mac80211/patches/920-wlcore-don-t-switch-channels-on-disconnected-STA-vif.patch')
-rw-r--r--package/kernel/mac80211/patches/920-wlcore-don-t-switch-channels-on-disconnected-STA-vif.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/package/kernel/mac80211/patches/920-wlcore-don-t-switch-channels-on-disconnected-STA-vif.patch b/package/kernel/mac80211/patches/920-wlcore-don-t-switch-channels-on-disconnected-STA-vif.patch
deleted file mode 100644
index d15e9eb6a3..0000000000
--- a/package/kernel/mac80211/patches/920-wlcore-don-t-switch-channels-on-disconnected-STA-vif.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 4101e8dc540d19f1f6c24930629149191786e4cd Mon Sep 17 00:00:00 2001
-From: Arik Nemtsov <arik@wizery.com>
-Date: Mon, 9 Sep 2013 16:48:59 +0300
-Subject: [PATCH 27/75] wlcore: don't switch channels on disconnected STA vifs
-
-Sending the FW a channel switch command on a disconnected vif may result
-in a beacon loss event. Avoid this edge case.
-
-Signed-off-by: Arik Nemtsov <arik@wizery.com>
----
- drivers/net/wireless/ti/wlcore/main.c | 7 +++++++
- 1 file changed, 7 insertions(+)
-
---- a/drivers/net/wireless/ti/wlcore/main.c
-+++ b/drivers/net/wireless/ti/wlcore/main.c
-@@ -5179,6 +5179,10 @@ static void wl12xx_op_channel_switch(str
- if (unlikely(wl->state == WLCORE_STATE_OFF)) {
- wl12xx_for_each_wlvif_sta(wl, wlvif) {
- struct ieee80211_vif *vif = wl12xx_wlvif_to_vif(wlvif);
-+
-+ if (!test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags))
-+ continue;
-+
- ieee80211_chswitch_done(vif, false);
- }
- goto out;
-@@ -5194,6 +5198,9 @@ static void wl12xx_op_channel_switch(str
- wl12xx_for_each_wlvif_sta(wl, wlvif) {
- unsigned long delay_usec;
-
-+ if (!test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags))
-+ continue;
-+
- ret = wl->ops->channel_switch(wl, wlvif, ch_switch);
- if (ret)
- goto out_sleep;