diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2008-07-15 02:03:00 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-15 02:05:29 -0400 |
commit | dcfc23cac103b54dbc00a6f52f47656ad5c75844 (patch) | |
tree | f9a61572791da6c37a50a2d17b73b5f89a6b5fc4 /net/dccp | |
parent | 75c939bb4d6da790f758a2a3dcc7432f6d8778ee (diff) |
mib: add struct net to ICMP_INC_STATS_BH
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp')
-rw-r--r-- | net/dccp/ipv4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/dccp/ipv4.c b/net/dccp/ipv4.c index cc4f33461f2d..2b03c47cab1b 100644 --- a/net/dccp/ipv4.c +++ b/net/dccp/ipv4.c | |||
@@ -208,7 +208,7 @@ static void dccp_v4_err(struct sk_buff *skb, u32 info) | |||
208 | struct net *net = dev_net(skb->dev); | 208 | struct net *net = dev_net(skb->dev); |
209 | 209 | ||
210 | if (skb->len < (iph->ihl << 2) + 8) { | 210 | if (skb->len < (iph->ihl << 2) + 8) { |
211 | ICMP_INC_STATS_BH(ICMP_MIB_INERRORS); | 211 | ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS); |
212 | return; | 212 | return; |
213 | } | 213 | } |
214 | 214 | ||
@@ -216,7 +216,7 @@ static void dccp_v4_err(struct sk_buff *skb, u32 info) | |||
216 | iph->daddr, dh->dccph_dport, | 216 | iph->daddr, dh->dccph_dport, |
217 | iph->saddr, dh->dccph_sport, inet_iif(skb)); | 217 | iph->saddr, dh->dccph_sport, inet_iif(skb)); |
218 | if (sk == NULL) { | 218 | if (sk == NULL) { |
219 | ICMP_INC_STATS_BH(ICMP_MIB_INERRORS); | 219 | ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS); |
220 | return; | 220 | return; |
221 | } | 221 | } |
222 | 222 | ||