diff options
author | Luciano Coelho <luciano.coelho@intel.com> | 2014-02-18 10:07:53 -0500 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-04-09 04:55:45 -0400 |
commit | 71965c1d04b2b48ab7c56395bd1f996a56aaa592 (patch) | |
tree | d3d3c158bb8508b7f274d52b2127512d67bfbd5a /net/wireless | |
parent | 73de86a38962b18edad3205c2358599dd9c83e9f (diff) |
cfg80211/mac80211: move combination check to mac80211 for ibss
Now that mac80211 can check the interface combinations itself, move
the combinations check from cfg80211 to mac80211 when joining an IBSS.
Signed-off-by: Luciano Coelho <luciano.coelho@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless')
-rw-r--r-- | net/wireless/ibss.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/net/wireless/ibss.c b/net/wireless/ibss.c index faf4961d47d8..071e99c75e82 100644 --- a/net/wireless/ibss.c +++ b/net/wireless/ibss.c | |||
@@ -88,8 +88,6 @@ static int __cfg80211_join_ibss(struct cfg80211_registered_device *rdev, | |||
88 | struct cfg80211_cached_keys *connkeys) | 88 | struct cfg80211_cached_keys *connkeys) |
89 | { | 89 | { |
90 | struct wireless_dev *wdev = dev->ieee80211_ptr; | 90 | struct wireless_dev *wdev = dev->ieee80211_ptr; |
91 | struct ieee80211_channel *check_chan; | ||
92 | u8 radar_detect_width = 0; | ||
93 | int err; | 91 | int err; |
94 | 92 | ||
95 | ASSERT_WDEV_LOCK(wdev); | 93 | ASSERT_WDEV_LOCK(wdev); |
@@ -126,32 +124,6 @@ static int __cfg80211_join_ibss(struct cfg80211_registered_device *rdev, | |||
126 | #ifdef CONFIG_CFG80211_WEXT | 124 | #ifdef CONFIG_CFG80211_WEXT |
127 | wdev->wext.ibss.chandef = params->chandef; | 125 | wdev->wext.ibss.chandef = params->chandef; |
128 | #endif | 126 | #endif |
129 | check_chan = params->chandef.chan; | ||
130 | if (params->userspace_handles_dfs) { | ||
131 | /* Check for radar even if the current channel is not | ||
132 | * a radar channel - it might decide to change to DFS | ||
133 | * channel later. | ||
134 | */ | ||
135 | radar_detect_width = BIT(params->chandef.width); | ||
136 | } | ||
137 | |||
138 | /* TODO: We need to check the combinations at this point, we | ||
139 | * probably must move this call down to join_ibss() in | ||
140 | * mac80211. | ||
141 | */ | ||
142 | err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype, | ||
143 | check_chan, | ||
144 | (params->channel_fixed && | ||
145 | !radar_detect_width) | ||
146 | ? CHAN_MODE_SHARED | ||
147 | : CHAN_MODE_EXCLUSIVE, | ||
148 | radar_detect_width); | ||
149 | |||
150 | if (err) { | ||
151 | wdev->connect_keys = NULL; | ||
152 | return err; | ||
153 | } | ||
154 | |||
155 | err = rdev_join_ibss(rdev, dev, params); | 127 | err = rdev_join_ibss(rdev, dev, params); |
156 | if (err) { | 128 | if (err) { |
157 | wdev->connect_keys = NULL; | 129 | wdev->connect_keys = NULL; |