aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaolo Abeni <pabeni@redhat.com>2022-01-06 16:20:14 -0800
committerDavid S. Miller <davem@davemloft.net>2022-01-07 11:27:06 +0000
commit58cd405b83b388c75a4c24926e5d4aeae8d1eaf5 (patch)
tree31186773f148b0b7022ce019d1842ecdd0bcdad7
parent26abf15c49e0fbbcb6dbd70c52ecbde221f1b0fa (diff)
downloadmac80211-next-58cd405b83b388c75a4c24926e5d4aeae8d1eaf5.tar.gz
mptcp: keep snd_una updated for fallback socket
After shutdown, for fallback MPTCP sockets, we always have write_seq == snd_una+1 The above will foul OUTQ ioctl(). Keep snd_una in sync with write_seq even after shutdown. Signed-off-by: Paolo Abeni <pabeni@redhat.com> Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/mptcp/protocol.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c
index df5a0cf431c1c4..f6fc0f0f66f089 100644
--- a/net/mptcp/protocol.c
+++ b/net/mptcp/protocol.c
@@ -2666,6 +2666,7 @@ static void __mptcp_check_send_data_fin(struct sock *sk)
* state now
*/
if (__mptcp_check_fallback(msk)) {
+ WRITE_ONCE(msk->snd_una, msk->write_seq);
if ((1 << sk->sk_state) & (TCPF_CLOSING | TCPF_LAST_ACK)) {
inet_sk_state_store(sk, TCP_CLOSE);
mptcp_close_wake_up(sk);