diff options
author | Eric Dumazet <edumazet@google.com> | 2024-10-02 19:30:40 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-10-05 00:34:39 +0200 |
commit | 5a9071a760a61b00260334ad576fe60debafaafc (patch) | |
tree | 12c4ab5c51e735e4a18e4dbc2b3113d417456fbf /net/ipv4/tcp_timer.c | |
parent | Merge branch 'selftests-net-ioam-add-tunsrc-support' (diff) | |
download | linux-5a9071a760a61b00260334ad576fe60debafaafc.tar.xz linux-5a9071a760a61b00260334ad576fe60debafaafc.zip |
tcp: annotate data-races around icsk->icsk_pending
icsk->icsk_pending can be read locklessly already.
Following patch in the series will add another lockless read.
Add smp_load_acquire() and smp_store_release() annotations
because following patch will add a test in tcp_write_timer(),
and READ_ONCE()/WRITE_ONCE() alone would possibly lead to races.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Link: https://patch.msgid.link/20241002173042.917928-2-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/ipv4/tcp_timer.c')
-rw-r--r-- | net/ipv4/tcp_timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c index 79064580c8c0..56c597e763ac 100644 --- a/net/ipv4/tcp_timer.c +++ b/net/ipv4/tcp_timer.c @@ -701,11 +701,11 @@ void tcp_write_timer_handler(struct sock *sk) tcp_send_loss_probe(sk); break; case ICSK_TIME_RETRANS: - icsk->icsk_pending = 0; + smp_store_release(&icsk->icsk_pending, 0); tcp_retransmit_timer(sk); break; case ICSK_TIME_PROBE0: - icsk->icsk_pending = 0; + smp_store_release(&icsk->icsk_pending, 0); tcp_probe_timer(sk); break; } |