-
- Downloads
Merge branch 'tcp-address-KCSAN-reports-in-tcp_poll-part-I'
Eric Dumazet says:
====================
tcp: address KCSAN reports in tcp_poll() (part I)
This all started with a KCSAN report (included
in "tcp: annotate tp->rcv_nxt lockless reads" changelog)
tcp_poll() runs in a lockless way. This means that about
all accesses of tcp socket fields done in tcp_poll() context
need annotations otherwise KCSAN will complain about data-races.
While doing this detective work, I found a more serious bug,
addressed by the first patch ("tcp: add rcu protection around
tp->fastopen_rsk").
====================
Signed-off-by:
David S. Miller <davem@davemloft.net>
No related branches found
No related tags found
Showing
- include/linux/tcp.h 3 additions, 3 deletionsinclude/linux/tcp.h
- include/net/sock.h 19 additions, 10 deletionsinclude/net/sock.h
- include/net/tcp.h 4 additions, 3 deletionsinclude/net/tcp.h
- include/trace/events/sock.h 2 additions, 2 deletionsinclude/trace/events/sock.h
- net/core/datagram.c 1 addition, 1 deletionnet/core/datagram.c
- net/core/filter.c 4 additions, 2 deletionsnet/core/filter.c
- net/core/request_sock.c 1 addition, 1 deletionnet/core/request_sock.c
- net/core/skbuff.c 1 addition, 1 deletionnet/core/skbuff.c
- net/core/sock.c 13 additions, 9 deletionsnet/core/sock.c
- net/ipv4/inet_connection_sock.c 2 additions, 2 deletionsnet/ipv4/inet_connection_sock.c
- net/ipv4/inet_diag.c 1 addition, 1 deletionnet/ipv4/inet_diag.c
- net/ipv4/tcp.c 38 additions, 27 deletionsnet/ipv4/tcp.c
- net/ipv4/tcp_diag.c 3 additions, 2 deletionsnet/ipv4/tcp_diag.c
- net/ipv4/tcp_fastopen.c 1 addition, 1 deletionnet/ipv4/tcp_fastopen.c
- net/ipv4/tcp_input.c 22 additions, 15 deletionsnet/ipv4/tcp_input.c
- net/ipv4/tcp_ipv4.c 16 additions, 12 deletionsnet/ipv4/tcp_ipv4.c
- net/ipv4/tcp_minisocks.c 11 additions, 6 deletionsnet/ipv4/tcp_minisocks.c
- net/ipv4/tcp_output.c 16 additions, 16 deletionsnet/ipv4/tcp_output.c
- net/ipv4/tcp_timer.c 6 additions, 5 deletionsnet/ipv4/tcp_timer.c
- net/ipv6/tcp_ipv6.c 10 additions, 8 deletionsnet/ipv6/tcp_ipv6.c
Loading
Please register or sign in to comment