diff options
| author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2006-11-04 20:11:37 +0900 | 
|---|---|---|
| committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-02 21:22:08 -0800 | 
| commit | a11d206d0f88e092419877c7f706cafb5e1c2e57 (patch) | |
| tree | ed96428bb52765198d5c5b7ccbc1f1b6516ffb3f /net/ipv6/netfilter.c | |
| parent | 7a3025b1b3a0173be5de6ced18754b909da27b38 (diff) | |
| download | olio-linux-3.10-a11d206d0f88e092419877c7f706cafb5e1c2e57.tar.xz olio-linux-3.10-a11d206d0f88e092419877c7f706cafb5e1c2e57.zip  | |
[IPV6]: Per-interface statistics support.
For IP MIB (RFC4293).
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Diffstat (limited to 'net/ipv6/netfilter.c')
| -rw-r--r-- | net/ipv6/netfilter.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/netfilter.c b/net/ipv6/netfilter.c index 580b1aba672..646a47456fd 100644 --- a/net/ipv6/netfilter.c +++ b/net/ipv6/netfilter.c @@ -31,7 +31,7 @@ int ip6_route_me_harder(struct sk_buff *skb)  #endif  	if (dst->error) { -		IP6_INC_STATS(IPSTATS_MIB_OUTNOROUTES); +		IP6_INC_STATS(ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);  		LIMIT_NETDEBUG(KERN_DEBUG "ip6_route_me_harder: No more route.\n");  		dst_release(dst);  		return -EINVAL;  |