diff mbox

[v2,5/6] cfg80211: Enable GO operation on indoor channels

Message ID 1386098166-24196-6-git-send-email-ilan.peer@intel.com (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Peer, Ilan Dec. 3, 2013, 7:16 p.m. UTC
Signed-off-by: Ilan Peer <ilan.peer@intel.com>
---
 net/wireless/chan.c |    5 +++++
 1 file changed, 5 insertions(+)

Comments

Johannes Berg Dec. 5, 2013, 1:10 p.m. UTC | #1
On Tue, 2013-12-03 at 21:16 +0200, Ilan Peer wrote:
> Signed-off-by: Ilan Peer <ilan.peer@intel.com>

Some commit log maybe? :)

johannes

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/net/wireless/chan.c b/net/wireless/chan.c
index d47856b..36f2f5f 100644
--- a/net/wireless/chan.c
+++ b/net/wireless/chan.c
@@ -611,6 +611,8 @@  EXPORT_SYMBOL(cfg80211_chandef_usable);
  * IEEE80211_CHAN_GO_CONCURRENT and there is an additional station interface
  * associated to an AP on the same channel or on the same UNII band
  * (assuming that the AP is an authorized master).
+ * In addition allow the GO to operate on a channel on which indoor operation is
+ * allowed, iff we are currently operating in an indoor environment.
  */
 static bool cfg80211_go_permissive_chan(struct cfg80211_registered_device *rdev,
 					struct ieee80211_channel *chan)
@@ -619,6 +621,9 @@  static bool cfg80211_go_permissive_chan(struct cfg80211_registered_device *rdev,
 
 	ASSERT_RTNL();
 
+	if (regulatory_ir_allowed(chan))
+		return true;
+
 	if (!(chan->flags & IEEE80211_CHAN_GO_CONCURRENT))
 		return false;