diff options
author | Johannes Berg <johannes.berg@intel.com> | 2018-01-15 09:32:36 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2018-01-15 09:34:45 +0100 |
commit | 51a1aaa631c90223888d8beac4d649dc11d2ca55 (patch) | |
tree | 752cda62d1295f7e15553e4000461cb8f4142f54 /net/wireless | |
parent | b71d856ab536f25eb97c011a351ecddf5518de41 (diff) | |
download | linux-stable-51a1aaa631c90223888d8beac4d649dc11d2ca55.tar.gz linux-stable-51a1aaa631c90223888d8beac4d649dc11d2ca55.tar.bz2 linux-stable-51a1aaa631c90223888d8beac4d649dc11d2ca55.zip |
mac80211_hwsim: validate number of different channels
When creating a new radio on the fly, hwsim allows this
to be done with an arbitrary number of channels, but
cfg80211 only supports a limited number of simultaneous
channels, leading to a warning.
Fix this by validating the number - this requires moving
the define for the maximum out to a visible header file.
Reported-by: syzbot+8dd9051ff19940290931@syzkaller.appspotmail.com
Fixes: b59ec8dd4394 ("mac80211_hwsim: fix number of channels in interface combinations")
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless')
-rw-r--r-- | net/wireless/core.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/wireless/core.h b/net/wireless/core.h index d2f7e8b8a097..eaff636169c2 100644 --- a/net/wireless/core.h +++ b/net/wireless/core.h @@ -507,8 +507,6 @@ void cfg80211_stop_p2p_device(struct cfg80211_registered_device *rdev, void cfg80211_stop_nan(struct cfg80211_registered_device *rdev, struct wireless_dev *wdev); -#define CFG80211_MAX_NUM_DIFFERENT_CHANNELS 10 - #ifdef CONFIG_CFG80211_DEVELOPER_WARNINGS #define CFG80211_DEV_WARN_ON(cond) WARN_ON(cond) #else |