diff options
author | Andrei Otcheretianski <andrei.otcheretianski@intel.com> | 2023-12-20 12:41:36 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2023-12-21 20:35:14 +0100 |
commit | 513b1a168c8767d5090493bd03ca7fa0a837e465 (patch) | |
tree | 64acf84083511d2fa67a872f8ed778ad86de25aa /net/mac80211 | |
parent | wifi: cfg80211: Schedule regulatory check on BSS STA channel change (diff) | |
download | linux-513b1a168c8767d5090493bd03ca7fa0a837e465.tar.xz linux-513b1a168c8767d5090493bd03ca7fa0a837e465.zip |
wifi: mac80211: Schedule regulatory channels check on bandwith change
Some devices may support concurrent DFS operation which relies on the
BSS channel width for its relaxations. Notify cfg80211 about BW change
so it can schedule regulatory checks.
Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@intel.com>
Reviewed-by: Gregory Greenman <gregory.greenman@intel.com>
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://msgid.link/20231220133549.e08f8e9ebc67.If8915d13e203ebd380579f55fd9148e9b3f43306@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/mlme.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 0c7ce022d2ed..643b2653e38c 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -598,6 +598,7 @@ static int ieee80211_config_bw(struct ieee80211_link_data *link, return ret; } + cfg80211_schedule_channels_check(&sdata->wdev); return 0; } |