aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMat Martineau <[email protected]>2020-07-28 15:12:09 -0700
committerDavid S. Miller <[email protected]>2020-07-28 17:02:42 -0700
commitc75293925f24630326abdf79751d980ec3878f65 (patch)
tree8114570e21e8b336d69ccfa0c9702740f909ceee
parent06827b348b1d43850a63c3e490fe9712c124fa0c (diff)
mptcp: Safely read sequence number when lock isn't held
The MPTCP socket's write_seq member should be read with READ_ONCE() when the msk lock is not held. Signed-off-by: Mat Martineau <[email protected]> Signed-off-by: David S. Miller <[email protected]>
-rw-r--r--net/mptcp/protocol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c
index f264ea15e081..f2455a68d231 100644
--- a/net/mptcp/protocol.c
+++ b/net/mptcp/protocol.c
@@ -1269,7 +1269,7 @@ static void mptcp_retransmit_handler(struct sock *sk)
{
struct mptcp_sock *msk = mptcp_sk(sk);
- if (atomic64_read(&msk->snd_una) == msk->write_seq) {
+ if (atomic64_read(&msk->snd_una) == READ_ONCE(msk->write_seq)) {
mptcp_stop_timer(sk);
} else {
set_bit(MPTCP_WORK_RTX, &msk->flags);