mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 12:14:01 +08:00
mptcp: fix bogus sendmsg() return code under pressure
In case of memory pressure, mptcp_sendmsg() may call
sk_stream_wait_memory() after succesfully xmitting some
bytes. If the latter fails we currently return to the
user-space the error code, ignoring the succeful xmit.
Address the issue always checking for the xmitted bytes
before mptcp_sendmsg() completes.
Fixes: f296234c98
("mptcp: Add handling of incoming MP_JOIN requests")
Reviewed-by: Matthieu Baerts <matthieu.baerts@tessares.net>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f8deaea06f
commit
8555c6bfd5
@ -984,7 +984,6 @@ wait_for_sndbuf:
|
||||
|
||||
mptcp_set_timeout(sk, ssk);
|
||||
if (copied) {
|
||||
ret = copied;
|
||||
tcp_push(ssk, msg->msg_flags, mss_now, tcp_sk(ssk)->nonagle,
|
||||
size_goal);
|
||||
|
||||
@ -997,7 +996,7 @@ wait_for_sndbuf:
|
||||
release_sock(ssk);
|
||||
out:
|
||||
release_sock(sk);
|
||||
return ret;
|
||||
return copied ? : ret;
|
||||
}
|
||||
|
||||
static void mptcp_wait_data(struct sock *sk, long *timeo)
|
||||
|
Loading…
Reference in New Issue
Block a user