diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2008-07-15 02:04:00 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-15 02:05:31 -0400 |
commit | f66ac03d497c162c70cd0ccc802ce1777073cdf3 (patch) | |
tree | 9e177b888f187b995736231cc4c971566181a561 | |
parent | 903fc1964e746b8d8e2971ea20c89b7aeab8bd9a (diff) |
mib: add struct net to ICMPMSGIN_INC_STATS_BH
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/net/icmp.h | 2 | ||||
-rw-r--r-- | net/ipv4/icmp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/net/icmp.h b/include/net/icmp.h index ee9c8d4b7ba4..03b9972b8754 100644 --- a/include/net/icmp.h +++ b/include/net/icmp.h | |||
@@ -34,7 +34,7 @@ DECLARE_SNMP_STAT(struct icmpmsg_mib, icmpmsg_statistics); | |||
34 | #define ICMP_INC_STATS(net, field) SNMP_INC_STATS(icmp_statistics, field) | 34 | #define ICMP_INC_STATS(net, field) SNMP_INC_STATS(icmp_statistics, field) |
35 | #define ICMP_INC_STATS_BH(net, field) SNMP_INC_STATS_BH(icmp_statistics, field) | 35 | #define ICMP_INC_STATS_BH(net, field) SNMP_INC_STATS_BH(icmp_statistics, field) |
36 | #define ICMPMSGOUT_INC_STATS(net, field) SNMP_INC_STATS(icmpmsg_statistics, field+256) | 36 | #define ICMPMSGOUT_INC_STATS(net, field) SNMP_INC_STATS(icmpmsg_statistics, field+256) |
37 | #define ICMPMSGIN_INC_STATS_BH(field) SNMP_INC_STATS_BH(icmpmsg_statistics, field) | 37 | #define ICMPMSGIN_INC_STATS_BH(net, field) SNMP_INC_STATS_BH(icmpmsg_statistics, field) |
38 | 38 | ||
39 | struct dst_entry; | 39 | struct dst_entry; |
40 | struct net_proto_family; | 40 | struct net_proto_family; |
diff --git a/net/ipv4/icmp.c b/net/ipv4/icmp.c index 6f4c65b898b4..ea60ad41008c 100644 --- a/net/ipv4/icmp.c +++ b/net/ipv4/icmp.c | |||
@@ -1012,7 +1012,7 @@ int icmp_rcv(struct sk_buff *skb) | |||
1012 | 1012 | ||
1013 | icmph = icmp_hdr(skb); | 1013 | icmph = icmp_hdr(skb); |
1014 | 1014 | ||
1015 | ICMPMSGIN_INC_STATS_BH(icmph->type); | 1015 | ICMPMSGIN_INC_STATS_BH(net, icmph->type); |
1016 | /* | 1016 | /* |
1017 | * 18 is the highest 'known' ICMP type. Anything else is a mystery | 1017 | * 18 is the highest 'known' ICMP type. Anything else is a mystery |
1018 | * | 1018 | * |