aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/tcp.h
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2018-05-17 14:47:24 -0700
committerDavid S. Miller <davem@davemloft.net>2018-05-18 11:40:27 -0400
commitcf0dd203728c20e76976b69cdf42d065c1e5cab3 (patch)
tree202b20e8cda50167d5072d484d49ce726f5fd109 /include/net/tcp.h
parentnet: mscc: Add SPDX identifier (diff)
downloadlinux-dev-cf0dd203728c20e76976b69cdf42d065c1e5cab3.tar.xz
linux-dev-cf0dd203728c20e76976b69cdf42d065c1e5cab3.zip
tcp: use __sock_put() instead of sock_put() in tcp_clear_xmit_timers()
Socket can not disappear under us. Signed-off-by: Eric Dumazet <edumazet@google.com> Acked-by: Neal Cardwell <ncardwell@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tcp.h')
-rw-r--r--include/net/tcp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h
index 6deb540297cc..511bd0fde1dc 100644
--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -559,7 +559,7 @@ void tcp_init_xmit_timers(struct sock *);
static inline void tcp_clear_xmit_timers(struct sock *sk)
{
if (hrtimer_try_to_cancel(&tcp_sk(sk)->pacing_timer) == 1)
- sock_put(sk);
+ __sock_put(sk);
inet_csk_clear_xmit_timers(sk);
}