summaryrefslogtreecommitdiffstats
path: root/net/wireless/nl80211.c
diff options
context:
space:
mode:
authorLuciano Coelho2014-05-15 12:05:39 +0200
committerJohannes Berg2014-05-15 14:50:34 +0200
commit00ec75fc5a6499d8fdeb6ec9f8f5df68b9291c74 (patch)
tree39a045532237ff61d58f7dc8e12ad593722cfa58 /net/wireless/nl80211.c
parentcfg80211: fix start_radar_detection issue (diff)
downloadkernel-qcow2-linux-00ec75fc5a6499d8fdeb6ec9f8f5df68b9291c74.tar.gz
kernel-qcow2-linux-00ec75fc5a6499d8fdeb6ec9f8f5df68b9291c74.tar.xz
kernel-qcow2-linux-00ec75fc5a6499d8fdeb6ec9f8f5df68b9291c74.zip
cfg80211: pass the actual iftype when calling cfg80211_chandef_dfs_required()
There is no need to pass NL80211_IFTYPE_UNSPECIFIED when calling cfg80211_chandef_dfs_required() since we always already have the interface type. So, pass the actual interface type instead. Additionally, have cfg80211_chandef_dfs_required() WARN if the passed interface type is NL80211_IFTYPE_UNSPECIFIED, so we can detect problems more easily. Tested-by: Janusz Dziedzic <janusz.dziedzic@tieto.com> Reported-by: Eliad Peller <eliad@wizery.com> Signed-off-by: Luciano Coelho <luciano.coelho@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless/nl80211.c')
-rw-r--r--net/wireless/nl80211.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index c0833830cfe7..74e7299e4add 100644
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -5822,7 +5822,7 @@ static int nl80211_start_radar_detection(struct sk_buff *skb,
return -EBUSY;
err = cfg80211_chandef_dfs_required(wdev->wiphy, &chandef,
- NL80211_IFTYPE_UNSPECIFIED);
+ wdev->iftype);
if (err < 0)
return err;