net: annotate lockless accesses to sk->sk_max_ack_backlog
sk->sk_max_ack_backlog can be read without any lock being held at least in TCP/DCCP cases. We need to use READ_ONCE()/WRITE_ONCE() to avoid load/store tearing and/or potential KCSAN warnings. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
288efe8606
commit
099ecf59f0
@@ -426,7 +426,7 @@ static void sctp_diag_get_info(struct sock *sk, struct inet_diag_msg *r,
|
||||
r->idiag_wqueue = infox->asoc->sndbuf_used;
|
||||
} else {
|
||||
r->idiag_rqueue = READ_ONCE(sk->sk_ack_backlog);
|
||||
r->idiag_wqueue = sk->sk_max_ack_backlog;
|
||||
r->idiag_wqueue = READ_ONCE(sk->sk_max_ack_backlog);
|
||||
}
|
||||
if (infox->sctpinfo)
|
||||
sctp_get_sctp_info(sk, infox->asoc, infox->sctpinfo);
|
||||
|
||||
@@ -8376,7 +8376,7 @@ static int sctp_listen_start(struct sock *sk, int backlog)
|
||||
}
|
||||
}
|
||||
|
||||
sk->sk_max_ack_backlog = backlog;
|
||||
WRITE_ONCE(sk->sk_max_ack_backlog, backlog);
|
||||
return sctp_hash_endpoint(ep);
|
||||
}
|
||||
|
||||
@@ -8430,7 +8430,7 @@ int sctp_inet_listen(struct socket *sock, int backlog)
|
||||
|
||||
/* If we are already listening, just update the backlog */
|
||||
if (sctp_sstate(sk, LISTENING))
|
||||
sk->sk_max_ack_backlog = backlog;
|
||||
WRITE_ONCE(sk->sk_max_ack_backlog, backlog);
|
||||
else {
|
||||
err = sctp_listen_start(sk, backlog);
|
||||
if (err)
|
||||
|
||||
Reference in New Issue
Block a user