aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/ip.h
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 /include/net/ip.h
parentc6f8f7e3bb4b2c1886ef3743e8f24521f7a60abc (diff)
downloadkernel_samsung_smdk4412-5e38e270444f2629de7a706b5a9ca1b333d14517.zip
kernel_samsung_smdk4412-5e38e270444f2629de7a706b5a9ca1b333d14517.tar.gz
kernel_samsung_smdk4412-5e38e270444f2629de7a706b5a9ca1b333d14517.tar.bz2
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 'include/net/ip.h')
-rw-r--r--include/net/ip.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip.h b/include/net/ip.h
index 673ecdb..b9aaa32 100644
--- a/include/net/ip.h
+++ b/include/net/ip.h
@@ -157,7 +157,7 @@ struct ipv4_config
extern struct ipv4_config ipv4_config;
DECLARE_SNMP_STAT(struct ipstats_mib, ip_statistics);
-#define IP_INC_STATS(field) SNMP_INC_STATS(ip_statistics, field)
+#define IP_INC_STATS(net, field) do { (void)net; SNMP_INC_STATS(ip_statistics, field); } while (0)
#define IP_INC_STATS_BH(field) SNMP_INC_STATS_BH(ip_statistics, field)
#define IP_ADD_STATS_BH(field, val) SNMP_ADD_STATS_BH(ip_statistics, field, val)
DECLARE_SNMP_STAT(struct linux_mib, net_statistics);