aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/util.c
diff options
context:
space:
mode:
authorArik Nemtsov <arik@wizery.com>2011-11-10 04:28:57 -0500
committerJohn W. Linville <linville@tuxdriver.com>2011-11-11 12:32:51 -0500
commit029458212604570eec4789049a8a74428484dbb4 (patch)
treecabbe65d50e83498300a25b02a67f8475c02c3b7 /net/mac80211/util.c
parent00f740e1a3b7abb51980371ee8fa113df22ae0b8 (diff)
mac80211: Save probe response data for bss
Allow setting a probe response template for an interface operating in AP mode. Low level drivers are notified about changes in the probe response template and are able to retrieve a copy of the current probe response. This data can, for example, be uploaded to hardware as a template. Signed-off-by: Guy Eilam <guy@wizery.com> Signed-off-by: Arik Nemtsov <arik@wizery.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/util.c')
-rw-r--r--net/mac80211/util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/util.c b/net/mac80211/util.c
index 6ed0aa430789..4cf25b0eea74 100644
--- a/net/mac80211/util.c
+++ b/net/mac80211/util.c
@@ -1071,7 +1071,8 @@ int ieee80211_reconfig(struct ieee80211_local *local)
1071 changed |= BSS_CHANGED_IBSS; 1071 changed |= BSS_CHANGED_IBSS;
1072 /* fall through */ 1072 /* fall through */
1073 case NL80211_IFTYPE_AP: 1073 case NL80211_IFTYPE_AP:
1074 changed |= BSS_CHANGED_SSID; 1074 changed |= BSS_CHANGED_SSID |
1075 BSS_CHANGED_AP_PROBE_RESP;
1075 /* fall through */ 1076 /* fall through */
1076 case NL80211_IFTYPE_MESH_POINT: 1077 case NL80211_IFTYPE_MESH_POINT:
1077 changed |= BSS_CHANGED_BEACON | 1078 changed |= BSS_CHANGED_BEACON |