{nl,cfg,mac}80211: implement dot11MeshHWMPconfirmationInterval
As defined in section 13.10.9.3 Case D (802.11-2012), this control variable is used to limit the mesh STA to send only one PREQ to a root mesh STA within this interval of time (in TUs). The default value for this variable is set to 2000 TUs. However, for current implementation, the maximum configurable of dot11MeshHWMPconfirmationInterval is restricted by dot11MeshHWMPactivePathTimeout. Signed-off-by: Chun-Yeow Yeoh <yeohchunyeow@gmail.com> [line-break commit log] Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:

committed by
Johannes Berg

parent
dbb912cd4c
commit
728b19e5fb
@@ -514,6 +514,8 @@ IEEE80211_IF_FILE(dot11MeshHWMPactivePathToRootTimeout,
|
||||
u.mesh.mshcfg.dot11MeshHWMPactivePathToRootTimeout, DEC);
|
||||
IEEE80211_IF_FILE(dot11MeshHWMProotInterval,
|
||||
u.mesh.mshcfg.dot11MeshHWMProotInterval, DEC);
|
||||
IEEE80211_IF_FILE(dot11MeshHWMPconfirmationInterval,
|
||||
u.mesh.mshcfg.dot11MeshHWMPconfirmationInterval, DEC);
|
||||
#endif
|
||||
|
||||
#define DEBUGFS_ADD_MODE(name, mode) \
|
||||
@@ -617,6 +619,7 @@ static void add_mesh_config(struct ieee80211_sub_if_data *sdata)
|
||||
MESHPARAMS_ADD(ht_opmode);
|
||||
MESHPARAMS_ADD(dot11MeshHWMPactivePathToRootTimeout);
|
||||
MESHPARAMS_ADD(dot11MeshHWMProotInterval);
|
||||
MESHPARAMS_ADD(dot11MeshHWMPconfirmationInterval);
|
||||
#undef MESHPARAMS_ADD
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user