diff options
author | Shaul Triebitz <shaul.triebitz@intel.com> | 2018-12-15 11:03:19 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2018-12-18 14:19:39 +0100 |
commit | 002245ec20b273bc1e31ed8fbee01396955a0f19 (patch) | |
tree | 63b746bc343e8984fe5ab179d5b191937a0a2ba4 /net/mac80211/mlme.c | |
parent | 2e249fc320862e3f75fd255a21554d6de90fb55a (diff) | |
download | linux-002245ec20b273bc1e31ed8fbee01396955a0f19.tar.gz linux-002245ec20b273bc1e31ed8fbee01396955a0f19.tar.bz2 linux-002245ec20b273bc1e31ed8fbee01396955a0f19.zip |
mac80211: set STA flag DISABLE_HE if HE is not supported
Up until now, the IEEE80211_STA_DISABLE_HE flag was set only based
on whether the AP has advertised HE capabilities.
This flag should be set also if STA does not support HE
(regardless of the AP support).
Signed-off-by: Shaul Triebitz <shaul.triebitz@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r-- | net/mac80211/mlme.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 975315b5689a..8c6a4dc017a5 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -4680,8 +4680,10 @@ static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata, } } - if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HE) && - ieee80211_get_he_sta_cap(sband)) { + if (!ieee80211_get_he_sta_cap(sband)) + ifmgd->flags |= IEEE80211_STA_DISABLE_HE; + + if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HE)) { const struct cfg80211_bss_ies *ies; const u8 *he_oper_ie; |