aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlan Peer <ilan.peer@intel.com>2014-02-23 02:13:03 -0500
committerJohannes Berg <johannes.berg@intel.com>2014-04-09 04:55:37 -0400
commitc8866e55a94fb02b83b13f289e5e470fc928703a (patch)
treeac49e6b637f9b24dab338b3067f1aaf6fc2ce0e1
parent52616f2b446eaad8eb2cd78bbd052f0066069757 (diff)
cfg80211: Enable GO operation on indoor channels
Allow GO operation on a channel marked with IEEE80211_CHAN_INDOOR_ONLY iff there is a user hint indicating that the platform is operating in an indoor environment, i.e., the platform is a printer or media center device. Signed-off-by: Ilan Peer <ilan.peer@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
-rw-r--r--net/wireless/chan.c12
-rw-r--r--net/wireless/reg.c5
-rw-r--r--net/wireless/reg.h5
3 files changed, 20 insertions, 2 deletions
diff --git a/net/wireless/chan.c b/net/wireless/chan.c
index 50202af7fba3..c3180dc03a33 100644
--- a/net/wireless/chan.c
+++ b/net/wireless/chan.c
@@ -667,6 +667,8 @@ EXPORT_SYMBOL(cfg80211_chandef_usable);
667 * IEEE80211_CHAN_GO_CONCURRENT and there is an additional station interface 667 * IEEE80211_CHAN_GO_CONCURRENT and there is an additional station interface
668 * associated to an AP on the same channel or on the same UNII band 668 * associated to an AP on the same channel or on the same UNII band
669 * (assuming that the AP is an authorized master). 669 * (assuming that the AP is an authorized master).
670 * In addition allow the GO to operate on a channel on which indoor operation is
671 * allowed, iff we are currently operating in an indoor environment.
670 */ 672 */
671static bool cfg80211_go_permissive_chan(struct cfg80211_registered_device *rdev, 673static bool cfg80211_go_permissive_chan(struct cfg80211_registered_device *rdev,
672 struct ieee80211_channel *chan) 674 struct ieee80211_channel *chan)
@@ -677,8 +679,14 @@ static bool cfg80211_go_permissive_chan(struct cfg80211_registered_device *rdev,
677 ASSERT_RTNL(); 679 ASSERT_RTNL();
678 680
679 if (!config_enabled(CONFIG_CFG80211_REG_RELAX_NO_IR) || 681 if (!config_enabled(CONFIG_CFG80211_REG_RELAX_NO_IR) ||
680 !(wiphy->regulatory_flags & REGULATORY_ENABLE_RELAX_NO_IR) || 682 !(wiphy->regulatory_flags & REGULATORY_ENABLE_RELAX_NO_IR))
681 !(chan->flags & IEEE80211_CHAN_GO_CONCURRENT)) 683 return false;
684
685 if (regulatory_indoor_allowed() &&
686 (chan->flags & IEEE80211_CHAN_INDOOR_ONLY))
687 return true;
688
689 if (!(chan->flags & IEEE80211_CHAN_GO_CONCURRENT))
682 return false; 690 return false;
683 691
684 /* 692 /*
diff --git a/net/wireless/reg.c b/net/wireless/reg.c
index 55d68c31ad72..bf3b0938891d 100644
--- a/net/wireless/reg.c
+++ b/net/wireless/reg.c
@@ -2701,6 +2701,11 @@ int cfg80211_get_unii(int freq)
2701 return -EINVAL; 2701 return -EINVAL;
2702} 2702}
2703 2703
2704bool regulatory_indoor_allowed(void)
2705{
2706 return reg_is_indoor;
2707}
2708
2704int __init regulatory_init(void) 2709int __init regulatory_init(void)
2705{ 2710{
2706 int err = 0; 2711 int err = 0;
diff --git a/net/wireless/reg.h b/net/wireless/reg.h
index 2a3842828f6d..5e48031ccb9a 100644
--- a/net/wireless/reg.h
+++ b/net/wireless/reg.h
@@ -117,4 +117,9 @@ void regulatory_hint_disconnect(void);
117 */ 117 */
118int cfg80211_get_unii(int freq); 118int cfg80211_get_unii(int freq);
119 119
120/**
121 * regulatory_indoor_allowed - is indoor operation allowed
122 */
123bool regulatory_indoor_allowed(void);
124
120#endif /* __NET_WIRELESS_REG_H */ 125#endif /* __NET_WIRELESS_REG_H */