ipv6: fix ICMP6_MIB_OUTERRORS
In commit 1f8438a853
(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>
This commit is contained in:
committed by
David S. Miller
parent
81a95f0499
commit
00d9d6a185
@@ -483,7 +483,7 @@ route_done:
|
|||||||
np->tclass, NULL, &fl, (struct rt6_info*)dst,
|
np->tclass, NULL, &fl, (struct rt6_info*)dst,
|
||||||
MSG_DONTWAIT, np->dontfrag);
|
MSG_DONTWAIT, np->dontfrag);
|
||||||
if (err) {
|
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);
|
ip6_flush_pending_frames(sk);
|
||||||
goto out_put;
|
goto out_put;
|
||||||
}
|
}
|
||||||
@@ -565,7 +565,7 @@ static void icmpv6_echo_reply(struct sk_buff *skb)
|
|||||||
np->dontfrag);
|
np->dontfrag);
|
||||||
|
|
||||||
if (err) {
|
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);
|
ip6_flush_pending_frames(sk);
|
||||||
goto out_put;
|
goto out_put;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user