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 <mathew.j.martineau@linux.intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
06827b348b
commit
c75293925f
@ -1269,7 +1269,7 @@ static void mptcp_retransmit_handler(struct sock *sk)
|
|||||||
{
|
{
|
||||||
struct mptcp_sock *msk = mptcp_sk(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);
|
mptcp_stop_timer(sk);
|
||||||
} else {
|
} else {
|
||||||
set_bit(MPTCP_WORK_RTX, &msk->flags);
|
set_bit(MPTCP_WORK_RTX, &msk->flags);
|
||||||
|
Loading…
Reference in New Issue
Block a user