diff options
| author | Denis V. Lunev <den@openvz.org> | 2008-10-08 10:33:50 -0700 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2008-10-08 11:14:44 -0700 | 
| commit | 5c5d244bd388fe498dd7f5f57cb7770aae40b9ab (patch) | |
| tree | 21c994f3df95f4f3245a2fa6bf7380e9620ff86e /net/ipv6/ndisc.c | |
| parent | e41b5368e029e79d11acb5952bc73284e5026c62 (diff) | |
| download | olio-linux-3.10-5c5d244bd388fe498dd7f5f57cb7770aae40b9ab.tar.xz olio-linux-3.10-5c5d244bd388fe498dd7f5f57cb7770aae40b9ab.zip  | |
ipv6: added net argument to ICMP6MSGOUT_INC_STATS
Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ndisc.c')
| -rw-r--r-- | net/ipv6/ndisc.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index 6ce238ca538..840b15780a3 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c @@ -521,7 +521,7 @@ static void __ndisc_send(struct net_device *dev,  	err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, skb, NULL, dst->dev,  		      dst_output);  	if (!err) { -		ICMP6MSGOUT_INC_STATS(idev, type); +		ICMP6MSGOUT_INC_STATS(net, idev, type);  		ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);  	} @@ -1585,7 +1585,7 @@ void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh,  	err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, buff, NULL, dst->dev,  		      dst_output);  	if (!err) { -		ICMP6MSGOUT_INC_STATS(idev, NDISC_REDIRECT); +		ICMP6MSGOUT_INC_STATS(net, idev, NDISC_REDIRECT);  		ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS);  	}  |