diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-06-07 22:24:44 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-06-09 18:39:27 -0700 |
commit | 00d9d6a185de89edc0649ca4ead58f0283dfcbac (patch) | |
tree | 2c7bb666781736a94170624519182b68b13f099d /net/ipv6 | |
parent | 81a95f049962ec20a9aed888e676208b206f0f2e (diff) | |
download | linux-3.10-00d9d6a185de89edc0649ca4ead58f0283dfcbac.tar.gz linux-3.10-00d9d6a185de89edc0649ca4ead58f0283dfcbac.tar.bz2 linux-3.10-00d9d6a185de89edc0649ca4ead58f0283dfcbac.zip |
ipv6: fix ICMP6_MIB_OUTERRORS
In commit 1f8438a85366 (icmp: Account for ICMP out errors), I did a typo
on IPV6 side, using ICMP6_MIB_OUTMSGS instead of ICMP6_MIB_OUTERRORS
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/icmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c index ce799298255..03e62f94ff8 100644 --- a/net/ipv6/icmp.c +++ b/net/ipv6/icmp.c @@ -483,7 +483,7 @@ route_done: np->tclass, NULL, &fl, (struct rt6_info*)dst, MSG_DONTWAIT, np->dontfrag); if (err) { - ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS); + ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTERRORS); ip6_flush_pending_frames(sk); goto out_put; } @@ -565,7 +565,7 @@ static void icmpv6_echo_reply(struct sk_buff *skb) np->dontfrag); if (err) { - ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS); + ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTERRORS); ip6_flush_pending_frames(sk); goto out_put; } |