diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2008-07-14 23:03:35 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-14 23:05:30 -0700 |
commit | 903fc1964e746b8d8e2971ea20c89b7aeab8bd9a (patch) | |
tree | 5d6d6565331d6155a587d3164e92d660f712bcd4 /net/ipv4/icmp.c | |
parent | dcfc23cac103b54dbc00a6f52f47656ad5c75844 (diff) |
mib: add struct net to ICMPMSGOUT_INC_STATS
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/icmp.c')
-rw-r--r-- | net/ipv4/icmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/icmp.c b/net/ipv4/icmp.c index 56a7bbc7950..6f4c65b898b 100644 --- a/net/ipv4/icmp.c +++ b/net/ipv4/icmp.c @@ -298,7 +298,7 @@ out: */ void icmp_out_count(struct net *net, unsigned char type) { - ICMPMSGOUT_INC_STATS(type); + ICMPMSGOUT_INC_STATS(net, type); ICMP_INC_STATS(net, ICMP_MIB_OUTMSGS); } |