diff options
author | Neil Horman <nhorman@tuxdriver.com> | 2015-11-16 13:09:10 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-11-16 16:36:32 -0500 |
commit | 41033f029e393a64e81966cbe34d66c6cf8a2e7e (patch) | |
tree | e69a2e2ede09ea3ebc7660d37e2af7c1c17f6997 /net | |
parent | 7750130d93decff06120df0d8ea024ff8a038a21 (diff) | |
download | linux-stable-41033f029e393a64e81966cbe34d66c6cf8a2e7e.tar.gz linux-stable-41033f029e393a64e81966cbe34d66c6cf8a2e7e.tar.bz2 linux-stable-41033f029e393a64e81966cbe34d66c6cf8a2e7e.zip |
snmp: Remove duplicate OUTMCAST stat increment
the OUTMCAST stat is double incremented, getting bumped once in the mcast code
itself, and again in the common ip output path. Remove the mcast bump, as its
not needed
Validated by the reporter, with good results
Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Reported-by: Claus Jensen <claus.jensen@microsemi.com>
CC: Claus Jensen <claus.jensen@microsemi.com>
CC: David Miller <davem@davemloft.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/mcast.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c index 124338a39e29..5ee56d0a8699 100644 --- a/net/ipv6/mcast.c +++ b/net/ipv6/mcast.c @@ -1651,7 +1651,6 @@ out: if (!err) { ICMP6MSGOUT_INC_STATS(net, idev, ICMPV6_MLD2_REPORT); ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS); - IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, payload_len); } else { IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS); } @@ -2015,7 +2014,6 @@ out: if (!err) { ICMP6MSGOUT_INC_STATS(net, idev, type); ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS); - IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, full_len); } else IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS); |