]> git.baikalelectronics.ru Git - kernel.git/commit
tcp: annotate tp->copied_seq lockless reads
authorEric Dumazet <edumazet@google.com>
Fri, 11 Oct 2019 03:17:40 +0000 (20:17 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sun, 13 Oct 2019 17:13:08 +0000 (10:13 -0700)
commitb5b341ca6d0aff1c42f7528fc166d7f9d0a8f8bc
tree3ee9dad33e8d9a0d27cc576a5f3ebf077f5af2d0
parent9c14568e67e84e50ff8ff483e93618dac7e21766
tcp: annotate tp->copied_seq lockless reads

There are few places where we fetch tp->copied_seq while
this field can change from IRQ or other cpu.

We need to add READ_ONCE() annotations, and also make
sure write sides use corresponding WRITE_ONCE() to avoid
store-tearing.

Note that tcp_inq_hint() was already using READ_ONCE(tp->copied_seq)

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp.c
net/ipv4/tcp_diag.c
net/ipv4/tcp_input.c
net/ipv4/tcp_ipv4.c
net/ipv4/tcp_minisocks.c
net/ipv4/tcp_output.c
net/ipv6/tcp_ipv6.c