diff options
author | John Crispin <john@phrozen.org> | 2019-12-17 15:19:19 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2020-01-15 11:18:50 +0100 |
commit | dd56e90230334752221473c06ff40cac44563a70 (patch) | |
tree | d521af3c6085ed7956f7e4724c19261b09c93fcd /net/mac80211/mlme.c | |
parent | 5c5e52d1bb962510fecdc1ebecdde89694d1b223 (diff) | |
download | linux-stable-dd56e90230334752221473c06ff40cac44563a70.tar.gz linux-stable-dd56e90230334752221473c06ff40cac44563a70.tar.bz2 linux-stable-dd56e90230334752221473c06ff40cac44563a70.zip |
mac80211: add handling for BSS color
It is now possible to propagate BSS color settings into the subsystem. Lets
make mac80211 also handle them so that we can send them further down the
stack into the drivers. We drop the old bss_color field and change iwlwifi
to use the new he_bss_color struct.
Signed-off-by: John Crispin <john@phrozen.org>
Link: https://lore.kernel.org/r/20191217141921.8114-2-john@phrozen.org
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r-- | net/mac80211/mlme.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 5fa13176036f..6e4099009eab 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -3368,9 +3368,16 @@ static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata, } if (bss_conf->he_support) { - bss_conf->bss_color = + bss_conf->he_bss_color.color = le32_get_bits(elems->he_operation->he_oper_params, IEEE80211_HE_OPERATION_BSS_COLOR_MASK); + bss_conf->he_bss_color.partial = + le32_get_bits(elems->he_operation->he_oper_params, + IEEE80211_HE_OPERATION_PARTIAL_BSS_COLOR); + bss_conf->he_bss_color.disabled = + le32_get_bits(elems->he_operation->he_oper_params, + IEEE80211_HE_OPERATION_BSS_COLOR_DISABLED); + changed |= BSS_CHANGED_HE_BSS_COLOR; bss_conf->htc_trig_based_pkt_ext = le32_get_bits(elems->he_operation->he_oper_params, |