aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/cfg.c
diff options
context:
space:
mode:
authorChun-Yeow Yeoh <yeohchunyeow@gmail.com>2012-06-13 14:06:06 -0400
committerJohannes Berg <johannes.berg@intel.com>2012-06-14 03:08:22 -0400
commitac1073a61d73b6277794d2efc872eb7e1b706b5c (patch)
treee992e907f7fbf417981867750c5d27e76f6b00c1 /net/mac80211/cfg.c
parent73c3df3ba3f2d7fe3ea47f944282f3cda31c5505 (diff)
{nl,cfg,mac}80211: implement dot11MeshHWMProotInterval and dot11MeshHWMPactivePathToRootTimeout
Add the mesh configuration parameters dot11MeshHWMProotInterval and dot11MeshHWMPactivePathToRootTimeout to be used by proactive PREQ mechanism. Signed-off-by: Chun-Yeow Yeoh <yeohchunyeow@gmail.com> [line-break commit log] Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/cfg.c')
-rw-r--r--net/mac80211/cfg.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index cd8b1fb05d42..d93cda1c4215 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -1590,6 +1590,12 @@ static int ieee80211_update_mesh_config(struct wiphy *wiphy,
1590 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode; 1590 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1591 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT); 1591 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1592 } 1592 }
1593 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1594 conf->dot11MeshHWMPactivePathToRootTimeout =
1595 nconf->dot11MeshHWMPactivePathToRootTimeout;
1596 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1597 conf->dot11MeshHWMProotInterval =
1598 nconf->dot11MeshHWMProotInterval;
1593 return 0; 1599 return 0;
1594} 1600}
1595 1601