aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/raw.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2008-07-16 20:19:49 -0700
committerDavid S. Miller <davem@davemloft.net>2008-07-16 20:19:49 -0700
commit5e38e270444f2629de7a706b5a9ca1b333d14517 (patch)
tree774a15eb5ace315c0c5e06630e4ba3d24406b12f /net/ipv4/raw.c
parentmib: drop unused IP_INC_STATS_USER (diff)
downloadlinux-dev-5e38e270444f2629de7a706b5a9ca1b333d14517.tar.xz
linux-dev-5e38e270444f2629de7a706b5a9ca1b333d14517.zip
mib: add net to IP_INC_STATS
All the callers already have either the net itself, or the place where to get it from. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/raw.c')
-rw-r--r--net/ipv4/raw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c
index 7f39ea443ec8..cd975743bcd2 100644
--- a/net/ipv4/raw.c
+++ b/net/ipv4/raw.c
@@ -385,7 +385,7 @@ error_fault:
err = -EFAULT;
kfree_skb(skb);
error:
- IP_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
+ IP_INC_STATS(net, IPSTATS_MIB_OUTDISCARDS);
return err;
}