diff options
author | Chun-Yeow Yeoh <yeohchunyeow@gmail.com> | 2012-05-04 02:57:50 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-05-15 17:27:54 -0400 |
commit | 7d4e15b177835dfddcab9851a889c28a85dde92e (patch) | |
tree | 7d44acef0bae918e701d005d93cb30b224b0801f /net/mac80211/mesh_hwmp.c | |
parent | f5c5681424299add910aad86b01d6ffe7ca02c84 (diff) |
mac80211: fix the increment of unicast/multicast counters for forwarded PREQ
Forwarded PREQ is either unicast or multicast. The appropriate counters
should be incremented accordingly.
Signed-off-by: Chun-Yeow Yeoh <yeohchunyeow@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mesh_hwmp.c')
-rw-r--r-- | net/mac80211/mesh_hwmp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/mac80211/mesh_hwmp.c b/net/mac80211/mesh_hwmp.c index 503016f58631..70ac7d180077 100644 --- a/net/mac80211/mesh_hwmp.c +++ b/net/mac80211/mesh_hwmp.c | |||
@@ -603,7 +603,10 @@ static void hwmp_preq_frame_process(struct ieee80211_sub_if_data *sdata, | |||
603 | hopcount, ttl, cpu_to_le32(lifetime), | 603 | hopcount, ttl, cpu_to_le32(lifetime), |
604 | cpu_to_le32(metric), cpu_to_le32(preq_id), | 604 | cpu_to_le32(metric), cpu_to_le32(preq_id), |
605 | sdata); | 605 | sdata); |
606 | ifmsh->mshstats.fwded_mcast++; | 606 | if (!is_multicast_ether_addr(da)) |
607 | ifmsh->mshstats.fwded_unicast++; | ||
608 | else | ||
609 | ifmsh->mshstats.fwded_mcast++; | ||
607 | ifmsh->mshstats.fwded_frames++; | 610 | ifmsh->mshstats.fwded_frames++; |
608 | } | 611 | } |
609 | } | 612 | } |