]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
wifi: mac80211_hwsim: fix typo in frequency notification
authorBenjamin Berg <benjamin.berg@intel.com>
Wed, 7 Jan 2026 13:36:51 +0000 (14:36 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Jan 2026 15:35:29 +0000 (16:35 +0100)
[ Upstream commit 333418872bfecf4843f1ded7a4151685dfcf07d5 ]

The NAN notification is for 5745 MHz which corresponds to channel 149
and not 5475 which is not actually a valid channel. This could result in
a NULL pointer dereference in cfg80211_next_nan_dw_notif.

Fixes: a37a6f54439b ("wifi: mac80211_hwsim: Add simulation support for NAN device")
Signed-off-by: Benjamin Berg <benjamin.berg@intel.com>
Reviewed-by: Ilan Peer <ilan.peer@intel.com>
Reviewed-by: Miriam Rachel Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://patch.msgid.link/20260107143652.7dab2035836f.Iacbaf7bb94ed5c14a0928a625827e4137d8bfede@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/wireless/virtual/mac80211_hwsim.c

index 5903d82e1ab1e8396fcb022bd31dee8737fe25a5..2f263d89d2d69247c47cee021c25cc0b36b56ffd 100644 (file)
@@ -4040,7 +4040,7 @@ mac80211_hwsim_nan_dw_start(struct hrtimer *timer)
                        ieee80211_vif_to_wdev(data->nan_device_vif);
 
                if (data->nan_curr_dw_band == NL80211_BAND_5GHZ)
-                       ch = ieee80211_get_channel(hw->wiphy, 5475);
+                       ch = ieee80211_get_channel(hw->wiphy, 5745);
                else
                        ch = ieee80211_get_channel(hw->wiphy, 2437);