From: Johannes Berg Date: Thu, 26 Jul 2012 12:31:19 +0000 (+0200) Subject: mac80211: use RX status band instead of current band X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4797c7ba93e4049cdda18045c01bbe563aafff69;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git mac80211: use RX status band instead of current band Even for single-channel devices it is possible that we switch the channel temporarily (e.g. for scanning) but while doing so process a received frame that was still received on the old channel, so checking the current band is racy. Use the band from status instead. Signed-off-by: Johannes Berg --- diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index f5258ebc15b..b382605c573 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c @@ -2308,7 +2308,7 @@ ieee80211_rx_h_action(struct ieee80211_rx_data *rx) goto queue; case WLAN_CATEGORY_SPECTRUM_MGMT: - if (local->hw.conf.channel->band != IEEE80211_BAND_5GHZ) + if (status->band != IEEE80211_BAND_5GHZ) break; if (sdata->vif.type != NL80211_IFTYPE_STATION)