aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/cfg.c
diff options
context:
space:
mode:
authorChun-Yeow Yeoh <yeohchunyeow@gmail.com>2012-01-20 12:02:16 -0500
committerJohn W. Linville <linville@tuxdriver.com>2012-01-27 14:56:56 -0500
commit94f9065648a2645b28187b44ec7778c30cf58758 (patch)
tree734ee883e3fbd99de04240da97716d773d64bb6d /net/mac80211/cfg.c
parent2da8f419e78a0ebccc91c095328278fe668a7932 (diff)
{nl,cfg,mac}80211: Add support of setting non-forwarding entity in Mesh
A mesh node that joins the mesh network is by default a forwarding entity. This patch allows the mesh node to set as non-forwarding entity. Whenever dot11MeshForwarding is set to 0, the mesh node can prevent itself from forwarding the traffic which is not destined to him. Signed-off-by: Chun-Yeow Yeoh <yeohchunyeow@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/cfg.c')
-rw-r--r--net/mac80211/cfg.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index 74c9301681e5..98460783c2d3 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -1346,6 +1346,8 @@ static int ieee80211_update_mesh_config(struct wiphy *wiphy,
1346 conf->dot11MeshHWMPRannInterval = 1346 conf->dot11MeshHWMPRannInterval =
1347 nconf->dot11MeshHWMPRannInterval; 1347 nconf->dot11MeshHWMPRannInterval;
1348 } 1348 }
1349 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1350 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
1349 return 0; 1351 return 0;
1350} 1352}
1351 1353