mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
cfg80211: refuse to .set_monitor_channel when non-monitors are present
Having .set_monitor_channel work with non-monitor interfaces running would make interface combinations accounting ambiguous. Signed-off-by: Michal Kazior <michal.kazior@tieto.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
870d37fc22
commit
4f03c1ed89
@ -85,6 +85,8 @@ int cfg80211_set_monitor_channel(struct cfg80211_registered_device *rdev,
|
|||||||
|
|
||||||
if (!rdev->ops->set_monitor_channel)
|
if (!rdev->ops->set_monitor_channel)
|
||||||
return -EOPNOTSUPP;
|
return -EOPNOTSUPP;
|
||||||
|
if (!cfg80211_has_monitors_only(rdev))
|
||||||
|
return -EBUSY;
|
||||||
|
|
||||||
chan = rdev_freq_to_chan(rdev, freq, chantype);
|
chan = rdev_freq_to_chan(rdev, freq, chantype);
|
||||||
if (!chan)
|
if (!chan)
|
||||||
|
Loading…
Reference in New Issue
Block a user