mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
wifi: mac80211: additions to change_beacon()
Process FILS discovery and unsolicited broadcast probe response transmission configurations in ieee80211_change_beacon(). Signed-off-by: Aloka Dixit <quic_alokad@quicinc.com> Reviewed-by: Jeff Johnson <quic_jjohnson@quicinc.com> Link: https://lore.kernel.org/r/20230727174100.11721-6-quic_alokad@quicinc.com Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
b2d431d43c
commit
6bc5ddb2fd
@ -1511,6 +1511,19 @@ static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
||||
err = ieee80211_set_fils_discovery(sdata, ¶ms->fils_discovery,
|
||||
link, link_conf);
|
||||
if (err < 0)
|
||||
return err;
|
||||
changed |= err;
|
||||
|
||||
err = ieee80211_set_unsol_bcast_probe_resp(sdata,
|
||||
¶ms->unsol_bcast_probe_resp,
|
||||
link, link_conf);
|
||||
if (err < 0)
|
||||
return err;
|
||||
changed |= err;
|
||||
|
||||
if (beacon->he_bss_color_valid &&
|
||||
beacon->he_bss_color.enabled != link_conf->he_bss_color.enabled) {
|
||||
link_conf->he_bss_color.enabled = beacon->he_bss_color.enabled;
|
||||
|
Loading…
Reference in New Issue
Block a user