]> git.baikalelectronics.ru Git - kernel.git/commit
tcp: annotate sk->sk_sndbuf lockless reads
authorEric Dumazet <edumazet@google.com>
Fri, 11 Oct 2019 03:17:45 +0000 (20:17 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sun, 13 Oct 2019 17:13:08 +0000 (10:13 -0700)
commita8bec3fb36efe919b8883ff46da028bc9a97fdb0
tree441d2a07b24a8dc89e22f14b373ccbcdf6377b34
parent17a91bcd70e196573bcfaccc1f38dc2565a30b9b
tcp: annotate sk->sk_sndbuf lockless reads

For the sake of tcp_poll(), there are few places where we fetch
sk->sk_sndbuf 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 other transports probably need similar fixes.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/sock.h
net/core/filter.c
net/core/sock.c
net/ipv4/tcp.c
net/ipv4/tcp_input.c