summaryrefslogtreecommitdiffstats
path: root/sys/net80211/ieee80211_node.h
diff options
context:
space:
mode:
authormonthadar <monthadar@FreeBSD.org>2013-02-07 21:12:55 +0000
committermonthadar <monthadar@FreeBSD.org>2013-02-07 21:12:55 +0000
commit33a227cb8a9298b01a68557611f44b3b7c374a5b (patch)
tree1154c78392c4d8fc36be72fa0a2d6fb5bb970f99 /sys/net80211/ieee80211_node.h
parentc27302a50c893f693817418a58183bce63fc137b (diff)
downloadFreeBSD-src-33a227cb8a9298b01a68557611f44b3b7c374a5b.zip
FreeBSD-src-33a227cb8a9298b01a68557611f44b3b7c374a5b.tar.gz
Stop a mesh STA from flooding with peer frames.
This problem happens when using ACL policy to filter mesh STA but two nodes have different policy. Then one of them will try to peer all the time. This can also help if for any reason one of the peering mesh STA have problems sending/receiving peer frames. * Modified struct ieee80211_node to include two new fields: + struct callout ni_mlhtimer /* link mesh backoff timer */ + uint8_t ni_mlhcnt /* link mesh holding counter */ * Added two new sysctl (check sysctl -d for more info): + net.wlan.mesh.backofftimeout=5000 + net.wlan.mesh.maxholding=2; * When receiving a beacon and we are in IEEE80211_NODE_MESH_IDLE check if ni_mlhcnt >= ieee80211_mesh_maxholding, if so do not do anything; * In mesh_peer_timeout_cb when transitioning from IEEE80211_NODE_MESH_HOLDING to IEEE80211_NODE_MESH_IDLE increment ni_mlhcnt, and eventually start ieee80211_mesh_backofftimeout; Approved by: adrian (mentor)
Diffstat (limited to 'sys/net80211/ieee80211_node.h')
-rw-r--r--sys/net80211/ieee80211_node.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/net80211/ieee80211_node.h b/sys/net80211/ieee80211_node.h
index 48eae2d..bb31136 100644
--- a/sys/net80211/ieee80211_node.h
+++ b/sys/net80211/ieee80211_node.h
@@ -204,6 +204,8 @@ struct ieee80211_node {
struct callout ni_mltimer; /* link mesh timer */
uint8_t ni_mlrcnt; /* link mesh retry counter */
uint8_t ni_mltval; /* link mesh timer value */
+ struct callout ni_mlhtimer; /* link mesh backoff timer */
+ uint8_t ni_mlhcnt; /* link mesh holding counter */
/* 11n state */
uint16_t ni_htcap; /* HT capabilities */
OpenPOWER on IntegriCloud