diff options
author | Eric Dumazet <edumazet@google.com> | 2016-04-27 16:44:29 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-27 22:48:22 -0400 |
commit | 5d3848bc33b7d13fc97b5b6e0dccde2d0755bfd5 (patch) | |
tree | 63cfc7cf4c2a7dca87c9c2e59f0fefc971b91500 /net/dccp | |
parent | aa62d76b6e1a7c927a9e0ca39de8a93b751f3b8c (diff) | |
download | linux-5d3848bc33b7d13fc97b5b6e0dccde2d0755bfd5.tar.gz linux-5d3848bc33b7d13fc97b5b6e0dccde2d0755bfd5.tar.bz2 linux-5d3848bc33b7d13fc97b5b6e0dccde2d0755bfd5.zip |
net: rename ICMP_INC_STATS_BH()
Rename ICMP_INC_STATS_BH() to __ICMP_INC_STATS()
Signed-off-by: Eric Dumazet <edumazet@google.com>
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 4b78067669d6..14e30584e59d 100644 --- a/net/dccp/ipv4.c +++ b/net/dccp/ipv4.c @@ -247,7 +247,7 @@ static void dccp_v4_err(struct sk_buff *skb, u32 info) if (skb->len < offset + sizeof(*dh) || skb->len < offset + __dccp_basic_hdr_len(dh)) { - ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS); + __ICMP_INC_STATS(net, ICMP_MIB_INERRORS); return; } @@ -256,7 +256,7 @@ static void dccp_v4_err(struct sk_buff *skb, u32 info) iph->saddr, ntohs(dh->dccph_sport), inet_iif(skb)); if (!sk) { - ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS); + __ICMP_INC_STATS(net, ICMP_MIB_INERRORS); return; } |