[lvc-project] [PATCH 6.1] wifi: mac80211: apply mcast rate only if interface is up
Alexander Ofitserov
oficerovas at altlinux.org
Wed May 29 14:56:02 MSK 2024
From: Johannes Berg <johannes.berg ÎÁ intel.com>
If the interface isn't enabled, don't apply multicast
rate changes immediately.
Reported-by: syzbot+de87c09cc7b964ea2e23 ÎÁ syzkaller.appspotmail.com
Signed-off-by: Johannes Berg <johannes.berg ÎÁ intel.com>
Signed-off-by: Alexander Ofitserov <oficerovas ÎÁ altlinux.org>
---
net/mac80211/cfg.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index 1e57027da2913..2c60fc165801c 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -2838,8 +2838,9 @@ static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
memcpy(sdata->vif.bss_conf.mcast_rate, rate,
sizeof(int) * NUM_NL80211_BANDS);
- ieee80211_link_info_change_notify(sdata, &sdata->deflink,
- BSS_CHANGED_MCAST_RATE);
+ if (ieee80211_sdata_running(sdata))
+ ieee80211_link_info_change_notify(sdata, &sdata->deflink,
+ BSS_CHANGED_MCAST_RATE);
return 0;
}
--
2.42.1
More information about the lvc-project
mailing list