diff options
author | Ilan Peer <ilan.peer@intel.com> | 2020-03-26 15:09:36 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2020-04-24 12:33:43 +0200 |
commit | 4826e721103acf42421304330cf48a642fa163bb (patch) | |
tree | 1aa5d40f1673d024b72a4fb38eac143132c6aa66 /net/mac80211 | |
parent | 2a392596d8811c6d58c014ec881b159c75a0cf45 (diff) | |
download | linux-4826e721103acf42421304330cf48a642fa163bb.tar.gz linux-4826e721103acf42421304330cf48a642fa163bb.tar.bz2 linux-4826e721103acf42421304330cf48a642fa163bb.zip |
mac80211: Skip entries with HE membership selector
When parsing supported rates IE.
Signed-off-by: Ilan Peer <ilan.peer@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Link: https://lore.kernel.org/r/iwlwifi.20200326150855.ed3e66f8c197.I93aad0e5ddb7ce79f05f8153922acb9aa5076d38@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/mlme.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 56d61bc9954d..c77f47b41356 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -3154,15 +3154,16 @@ static void ieee80211_get_rates(struct ieee80211_supported_band *sband, *have_higher_than_11mbit = true; /* - * Skip HT and VHT BSS membership selectors since they're not - * rates. + * Skip HT, VHT and HE BSS membership selectors since they're + * not rates. * * Note: Even though the membership selector and the basic * rate flag share the same bit, they are not exactly * the same. */ if (supp_rates[i] == (0x80 | BSS_MEMBERSHIP_SELECTOR_HT_PHY) || - supp_rates[i] == (0x80 | BSS_MEMBERSHIP_SELECTOR_VHT_PHY)) + supp_rates[i] == (0x80 | BSS_MEMBERSHIP_SELECTOR_VHT_PHY) || + supp_rates[i] == (0x80 | BSS_MEMBERSHIP_SELECTOR_HE_PHY)) continue; for (j = 0; j < sband->n_bitrates; j++) { |