commit | a11d206d0f88e092419877c7f706cafb5e1c2e57 | [log] [tgz] |
---|---|---|
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | Sat Nov 04 20:11:37 2006 +0900 |
committer | David S. Miller <davem@sunset.davemloft.net> | Sat Dec 02 21:22:08 2006 -0800 |
tree | ed96428bb52765198d5c5b7ccbc1f1b6516ffb3f | |
parent | 7a3025b1b3a0173be5de6ced18754b909da27b38 [diff] [blame] |
[IPV6]: Per-interface statistics support. For IP MIB (RFC4293). Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c index 81bd45b..52cca93 100644 --- a/net/ipv6/icmp.c +++ b/net/ipv6/icmp.c
@@ -177,7 +177,8 @@ */ dst = ip6_route_output(sk, fl); if (dst->error) { - IP6_INC_STATS(IPSTATS_MIB_OUTNOROUTES); + IP6_INC_STATS(ip6_dst_idev(dst), + IPSTATS_MIB_OUTNOROUTES); } else if (dst->dev && (dst->dev->flags&IFF_LOOPBACK)) { res = 1; } else {