projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
870d37f
)
cfg80211: refuse to .set_monitor_channel when non-monitors are present
author
Michal Kazior
<michal.kazior@tieto.com>
Fri, 29 Jun 2012 10:47:03 +0000
(12:47 +0200)
committer
Johannes Berg
<johannes.berg@intel.com>
Fri, 29 Jun 2012 11:39:17 +0000
(13:39 +0200)
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>
net/wireless/chan.c
patch
|
blob
|
history
diff --git
a/net/wireless/chan.c
b/net/wireless/chan.c
index 167e7cb60089d348135543441a2dc810e71ce25b..019401b0b5e3029a994ed70233b276f8cbc4a6ef 100644
(file)
--- a/
net/wireless/chan.c
+++ b/
net/wireless/chan.c
@@
-85,6
+85,8
@@
int cfg80211_set_monitor_channel(struct cfg80211_registered_device *rdev,
if (!rdev->ops->set_monitor_channel)
return -EOPNOTSUPP;
+ if (!cfg80211_has_monitors_only(rdev))
+ return -EBUSY;
chan = rdev_freq_to_chan(rdev, freq, chantype);
if (!chan)