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/ipv4/tcp_ipv4.c | |
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/ipv4/tcp_ipv4.c')
-rw-r--r-- | net/ipv4/tcp_ipv4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index d2a5763e5abc..ebd8f3b9e61b 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c @@ -372,7 +372,7 @@ void tcp_v4_err(struct sk_buff *icmp_skb, u32 info) th->dest, iph->saddr, ntohs(th->source), inet_iif(icmp_skb)); if (!sk) { - ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS); + __ICMP_INC_STATS(net, ICMP_MIB_INERRORS); return; } if (sk->sk_state == TCP_TIME_WAIT) { |