diff options
author | Chun-Yeow Yeoh <yeohchunyeow@gmail.com> | 2012-06-13 14:06:06 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2012-06-14 03:08:22 -0400 |
commit | ac1073a61d73b6277794d2efc872eb7e1b706b5c (patch) | |
tree | e992e907f7fbf417981867750c5d27e76f6b00c1 /net | |
parent | 73c3df3ba3f2d7fe3ea47f944282f3cda31c5505 (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')
-rw-r--r-- | net/mac80211/cfg.c | 6 | ||||
-rw-r--r-- | net/mac80211/debugfs_netdev.c | 6 | ||||
-rw-r--r-- | net/wireless/mesh.c | 4 | ||||
-rw-r--r-- | net/wireless/nl80211.c | 15 |
4 files changed, 30 insertions, 1 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 | ||
diff --git a/net/mac80211/debugfs_netdev.c b/net/mac80211/debugfs_netdev.c index c429417e1322..a8cea70902e4 100644 --- a/net/mac80211/debugfs_netdev.c +++ b/net/mac80211/debugfs_netdev.c | |||
@@ -510,6 +510,10 @@ IEEE80211_IF_FILE(dot11MeshHWMPRannInterval, | |||
510 | IEEE80211_IF_FILE(dot11MeshForwarding, u.mesh.mshcfg.dot11MeshForwarding, DEC); | 510 | IEEE80211_IF_FILE(dot11MeshForwarding, u.mesh.mshcfg.dot11MeshForwarding, DEC); |
511 | IEEE80211_IF_FILE(rssi_threshold, u.mesh.mshcfg.rssi_threshold, DEC); | 511 | IEEE80211_IF_FILE(rssi_threshold, u.mesh.mshcfg.rssi_threshold, DEC); |
512 | IEEE80211_IF_FILE(ht_opmode, u.mesh.mshcfg.ht_opmode, DEC); | 512 | IEEE80211_IF_FILE(ht_opmode, u.mesh.mshcfg.ht_opmode, DEC); |
513 | IEEE80211_IF_FILE(dot11MeshHWMPactivePathToRootTimeout, | ||
514 | u.mesh.mshcfg.dot11MeshHWMPactivePathToRootTimeout, DEC); | ||
515 | IEEE80211_IF_FILE(dot11MeshHWMProotInterval, | ||
516 | u.mesh.mshcfg.dot11MeshHWMProotInterval, DEC); | ||
513 | #endif | 517 | #endif |
514 | 518 | ||
515 | #define DEBUGFS_ADD_MODE(name, mode) \ | 519 | #define DEBUGFS_ADD_MODE(name, mode) \ |
@@ -611,6 +615,8 @@ static void add_mesh_config(struct ieee80211_sub_if_data *sdata) | |||
611 | MESHPARAMS_ADD(dot11MeshGateAnnouncementProtocol); | 615 | MESHPARAMS_ADD(dot11MeshGateAnnouncementProtocol); |
612 | MESHPARAMS_ADD(rssi_threshold); | 616 | MESHPARAMS_ADD(rssi_threshold); |
613 | MESHPARAMS_ADD(ht_opmode); | 617 | MESHPARAMS_ADD(ht_opmode); |
618 | MESHPARAMS_ADD(dot11MeshHWMPactivePathToRootTimeout); | ||
619 | MESHPARAMS_ADD(dot11MeshHWMProotInterval); | ||
614 | #undef MESHPARAMS_ADD | 620 | #undef MESHPARAMS_ADD |
615 | } | 621 | } |
616 | #endif | 622 | #endif |
diff --git a/net/wireless/mesh.c b/net/wireless/mesh.c index b44c736bf9cf..2f141cfd581e 100644 --- a/net/wireless/mesh.c +++ b/net/wireless/mesh.c | |||
@@ -14,6 +14,8 @@ | |||
14 | 14 | ||
15 | #define MESH_PATH_TIMEOUT 5000 | 15 | #define MESH_PATH_TIMEOUT 5000 |
16 | #define MESH_RANN_INTERVAL 5000 | 16 | #define MESH_RANN_INTERVAL 5000 |
17 | #define MESH_PATH_TO_ROOT_TIMEOUT 6000 | ||
18 | #define MESH_ROOT_INTERVAL 5000 | ||
17 | 19 | ||
18 | /* | 20 | /* |
19 | * Minimum interval between two consecutive PREQs originated by the same | 21 | * Minimum interval between two consecutive PREQs originated by the same |
@@ -62,6 +64,8 @@ const struct mesh_config default_mesh_config = { | |||
62 | .dot11MeshForwarding = true, | 64 | .dot11MeshForwarding = true, |
63 | .rssi_threshold = MESH_RSSI_THRESHOLD, | 65 | .rssi_threshold = MESH_RSSI_THRESHOLD, |
64 | .ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED, | 66 | .ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED, |
67 | .dot11MeshHWMPactivePathToRootTimeout = MESH_PATH_TO_ROOT_TIMEOUT, | ||
68 | .dot11MeshHWMProotInterval = MESH_ROOT_INTERVAL, | ||
65 | }; | 69 | }; |
66 | 70 | ||
67 | const struct mesh_setup default_mesh_setup = { | 71 | const struct mesh_setup default_mesh_setup = { |
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 7db0aee8cd5b..f8930db613df 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c | |||
@@ -3469,7 +3469,11 @@ static int nl80211_get_mesh_config(struct sk_buff *skb, | |||
3469 | nla_put_u32(msg, NL80211_MESHCONF_RSSI_THRESHOLD, | 3469 | nla_put_u32(msg, NL80211_MESHCONF_RSSI_THRESHOLD, |
3470 | cur_params.rssi_threshold) || | 3470 | cur_params.rssi_threshold) || |
3471 | nla_put_u32(msg, NL80211_MESHCONF_HT_OPMODE, | 3471 | nla_put_u32(msg, NL80211_MESHCONF_HT_OPMODE, |
3472 | cur_params.ht_opmode)) | 3472 | cur_params.ht_opmode) || |
3473 | nla_put_u32(msg, NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, | ||
3474 | cur_params.dot11MeshHWMPactivePathToRootTimeout) || | ||
3475 | nla_put_u16(msg, NL80211_MESHCONF_HWMP_ROOT_INTERVAL, | ||
3476 | cur_params.dot11MeshHWMProotInterval)) | ||
3473 | goto nla_put_failure; | 3477 | goto nla_put_failure; |
3474 | nla_nest_end(msg, pinfoattr); | 3478 | nla_nest_end(msg, pinfoattr); |
3475 | genlmsg_end(msg, hdr); | 3479 | genlmsg_end(msg, hdr); |
@@ -3505,6 +3509,8 @@ static const struct nla_policy nl80211_meshconf_params_policy[NL80211_MESHCONF_A | |||
3505 | [NL80211_MESHCONF_FORWARDING] = { .type = NLA_U8 }, | 3509 | [NL80211_MESHCONF_FORWARDING] = { .type = NLA_U8 }, |
3506 | [NL80211_MESHCONF_RSSI_THRESHOLD] = { .type = NLA_U32 }, | 3510 | [NL80211_MESHCONF_RSSI_THRESHOLD] = { .type = NLA_U32 }, |
3507 | [NL80211_MESHCONF_HT_OPMODE] = { .type = NLA_U16 }, | 3511 | [NL80211_MESHCONF_HT_OPMODE] = { .type = NLA_U16 }, |
3512 | [NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT] = { .type = NLA_U32 }, | ||
3513 | [NL80211_MESHCONF_HWMP_ROOT_INTERVAL] = { .type = NLA_U16 }, | ||
3508 | }; | 3514 | }; |
3509 | 3515 | ||
3510 | static const struct nla_policy | 3516 | static const struct nla_policy |
@@ -3612,6 +3618,13 @@ do {\ | |||
3612 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, ht_opmode, | 3618 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, ht_opmode, |
3613 | mask, NL80211_MESHCONF_HT_OPMODE, | 3619 | mask, NL80211_MESHCONF_HT_OPMODE, |
3614 | nla_get_u16); | 3620 | nla_get_u16); |
3621 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathToRootTimeout, | ||
3622 | mask, | ||
3623 | NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, | ||
3624 | nla_get_u32); | ||
3625 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMProotInterval, | ||
3626 | mask, NL80211_MESHCONF_HWMP_ROOT_INTERVAL, | ||
3627 | nla_get_u16); | ||
3615 | if (mask_out) | 3628 | if (mask_out) |
3616 | *mask_out = mask; | 3629 | *mask_out = mask; |
3617 | 3630 | ||