diff options
author | Eric Dumazet <edumazet@google.com> | 2016-04-27 19:44:28 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-27 22:48:22 -0400 |
commit | aa62d76b6e1a7c927a9e0ca39de8a93b751f3b8c (patch) | |
tree | 683007ec79d51c549ce0bfcd73df89e4a6bf2ff5 /net/dccp/timer.c | |
parent | 6aef70a851ac77967992340faaff33f44598f60a (diff) |
dccp: rename DCCP_INC_STATS_BH()
Rename DCCP_INC_STATS_BH() to __DCCP_INC_STATS()
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/timer.c')
-rw-r--r-- | net/dccp/timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/dccp/timer.c b/net/dccp/timer.c index 3ef7acef3ce8..4ff22c24ff14 100644 --- a/net/dccp/timer.c +++ b/net/dccp/timer.c | |||
@@ -28,7 +28,7 @@ static void dccp_write_err(struct sock *sk) | |||
28 | 28 | ||
29 | dccp_send_reset(sk, DCCP_RESET_CODE_ABORTED); | 29 | dccp_send_reset(sk, DCCP_RESET_CODE_ABORTED); |
30 | dccp_done(sk); | 30 | dccp_done(sk); |
31 | DCCP_INC_STATS_BH(DCCP_MIB_ABORTONTIMEOUT); | 31 | __DCCP_INC_STATS(DCCP_MIB_ABORTONTIMEOUT); |
32 | } | 32 | } |
33 | 33 | ||
34 | /* A write timeout has occurred. Process the after effects. */ | 34 | /* A write timeout has occurred. Process the after effects. */ |
@@ -100,7 +100,7 @@ static void dccp_retransmit_timer(struct sock *sk) | |||
100 | * total number of retransmissions of clones of original packets. | 100 | * total number of retransmissions of clones of original packets. |
101 | */ | 101 | */ |
102 | if (icsk->icsk_retransmits == 0) | 102 | if (icsk->icsk_retransmits == 0) |
103 | DCCP_INC_STATS_BH(DCCP_MIB_TIMEOUTS); | 103 | __DCCP_INC_STATS(DCCP_MIB_TIMEOUTS); |
104 | 104 | ||
105 | if (dccp_retransmit_skb(sk) != 0) { | 105 | if (dccp_retransmit_skb(sk) != 0) { |
106 | /* | 106 | /* |