According to IEEE Std 802.11-2024, subclause 11.45.2.1 FILS Discovery frame transmission, only a transmitting BSS shall transmit a FILS Discovery frame. Currently, BSS_CHANGED_FILS_DISCOVERY is set unconditionally for all the BSSs. Hence, add a check to allow setting the FILS Discovery flag only for a transmitting BSS. Similarly, IEEE Std 802.11-2024, subclause 26.17.2.3.2 AP behavior for fast passive scanning, mentions that unsolicited broadcast probe response frame shall be transmitted only by a transmitting BSS. Hence, add a check to allow setting the BSS_CHANGED_UNSOL_BCAST_PROBE_RESP only for a transmitting BSS. Signed-off-by: Manish Dharanenthiran --- net/mac80211/cfg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index 23f4f9ec86d0..8b6e2a400b5a 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c @@ -1138,7 +1138,7 @@ static int ieee80211_set_fils_discovery(struct ieee80211_sub_if_data *sdata, struct fils_discovery_data *new, *old = NULL; struct ieee80211_fils_discovery *fd; - if (!params->update) + if (!params->update || link_conf->nontransmitted) return 0; fd = &link_conf->fils_discovery; @@ -1173,7 +1173,7 @@ ieee80211_set_unsol_bcast_probe_resp(struct ieee80211_sub_if_data *sdata, { struct unsol_bcast_probe_resp_data *new, *old = NULL; - if (!params->update) + if (!params->update || link_conf->nontransmitted) return 0; link_conf->unsol_bcast_probe_resp_interval = params->interval; --- base-commit: ca800a9302764c445de0da0e84d2252400a770ee change-id: 20260817-fils-d17716cc2781