All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH mptcp-net v3] mptcp: update window_clamp on subflows when SO_RCVBUF is set
@ 2026-05-06  9:43 Gang Yan
  2026-05-06 11:19 ` MPTCP CI
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Gang Yan @ 2026-05-06  9:43 UTC (permalink / raw)
  To: MPTCP Linux; +Cc: Gang Yan

From: Gang Yan <yangang@kylinos.cn>

Add __mptcp_subflow_set_rcvbuf() helper that calls the tcp_set_rcvbuf
to update window_clamp, in addition to writing sk_rcvbuf. Use it in
both mptcp_sol_socket_sync_intval() (setsockopt path) and
sync_socket_options() (new subflow creation path).

Fixes: a2cbb1603943 ("tcp: Update window clamping condition")
Closes: https://github.com/multipath-tcp/mptcp_net-next/issues/619
Signed-off-by: Gang Yan <yangang@kylinos.cn>
---
Changelog:
v3:
  - Remove the special symbols.
v2:
  - Optimize the commit msg.
  Link: https://patchwork.kernel.org/project/mptcp/patch/20260416122945.324166-1-gang.yan@linux.dev/
v1:
  Link: https://patchwork.kernel.org/project/mptcp/patch/20260416122945.324166-1-gang.yan@linux.dev/
---
 net/mptcp/sockopt.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/net/mptcp/sockopt.c b/net/mptcp/sockopt.c
index 1cf608e7357b..1544e3563852 100644
--- a/net/mptcp/sockopt.c
+++ b/net/mptcp/sockopt.c
@@ -67,6 +67,12 @@ static int mptcp_get_int_option(struct mptcp_sock *msk, sockptr_t optval,
 	return 0;
 }
 
+static inline void __mptcp_subflow_set_rcvbuf(struct sock *ssk, int val)
+{
+	WRITE_ONCE(ssk->sk_rcvbuf, val);
+	tcp_set_rcvbuf(ssk, val);
+}
+
 static void mptcp_sol_socket_sync_intval(struct mptcp_sock *msk, int optname, int val)
 {
 	struct mptcp_subflow_context *subflow;
@@ -100,7 +106,7 @@ static void mptcp_sol_socket_sync_intval(struct mptcp_sock *msk, int optname, in
 		case SO_RCVBUF:
 		case SO_RCVBUFFORCE:
 			ssk->sk_userlocks |= SOCK_RCVBUF_LOCK;
-			WRITE_ONCE(ssk->sk_rcvbuf, sk->sk_rcvbuf);
+			__mptcp_subflow_set_rcvbuf(ssk, sk->sk_rcvbuf);
 			break;
 		case SO_MARK:
 			if (READ_ONCE(ssk->sk_mark) != sk->sk_mark) {
@@ -1560,7 +1566,7 @@ static void sync_socket_options(struct mptcp_sock *msk, struct sock *ssk)
 			mptcp_subflow_ctx(ssk)->cached_sndbuf = sk->sk_sndbuf;
 		}
 		if (sk->sk_userlocks & SOCK_RCVBUF_LOCK)
-			WRITE_ONCE(ssk->sk_rcvbuf, sk->sk_rcvbuf);
+			__mptcp_subflow_set_rcvbuf(ssk, sk->sk_rcvbuf);
 	}
 
 	if (sock_flag(sk, SOCK_LINGER)) {

---
base-commit: aa15c271d79edde595fb6f4eedb52fbc16325a83
change-id: 20260506-window_clamp-8a8d2fbf38e9

Best regards,
-- 
Gang Yan <yangang@kylinos.cn>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH mptcp-net v3] mptcp: update window_clamp on subflows when SO_RCVBUF is set
  2026-05-06  9:43 [PATCH mptcp-net v3] mptcp: update window_clamp on subflows when SO_RCVBUF is set Gang Yan
@ 2026-05-06 11:19 ` MPTCP CI
  2026-05-08  9:24 ` Matthieu Baerts
  2026-05-08 10:54 ` Matthieu Baerts
  2 siblings, 0 replies; 4+ messages in thread
From: MPTCP CI @ 2026-05-06 11:19 UTC (permalink / raw)
  To: Gang Yan; +Cc: mptcp

Hi Gang,

Thank you for your modifications, that's great!

Our CI did some validations and here is its report:

- KVM Validation: normal (except selftest_mptcp_join): Success! ✅
- KVM Validation: normal (only selftest_mptcp_join): Success! ✅
- KVM Validation: debug (except selftest_mptcp_join): Unstable: 1 failed test(s): packetdrill_dss ⚠️ 
- KVM Validation: debug (only selftest_mptcp_join): Success! ✅
- KVM Validation: btf-normal (only bpftest_all): Success! ✅
- KVM Validation: btf-debug (only bpftest_all): Success! ✅
- Task: https://github.com/multipath-tcp/mptcp_net-next/actions/runs/25429148337

Initiator: Patchew Applier
Commits: https://github.com/multipath-tcp/mptcp_net-next/commits/4f281af32a03
Patchwork: https://patchwork.kernel.org/project/mptcp/list/?series=1090379


If there are some issues, you can reproduce them using the same environment as
the one used by the CI thanks to a docker image, e.g.:

    $ cd [kernel source code]
    $ docker run -v "${PWD}:${PWD}:rw" -w "${PWD}" --privileged --rm -it \
        --pull always mptcp/mptcp-upstream-virtme-docker:latest \
        auto-normal

For more details:

    https://github.com/multipath-tcp/mptcp-upstream-virtme-docker


Please note that despite all the efforts that have been already done to have a
stable tests suite when executed on a public CI like here, it is possible some
reported issues are not due to your modifications. Still, do not hesitate to
help us improve that ;-)

Cheers,
MPTCP GH Action bot
Bot operated by Matthieu Baerts (NGI0 Core)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH mptcp-net v3] mptcp: update window_clamp on subflows when SO_RCVBUF is set
  2026-05-06  9:43 [PATCH mptcp-net v3] mptcp: update window_clamp on subflows when SO_RCVBUF is set Gang Yan
  2026-05-06 11:19 ` MPTCP CI
@ 2026-05-08  9:24 ` Matthieu Baerts
  2026-05-08 10:54 ` Matthieu Baerts
  2 siblings, 0 replies; 4+ messages in thread
From: Matthieu Baerts @ 2026-05-08  9:24 UTC (permalink / raw)
  To: Gang Yan, MPTCP Linux; +Cc: Gang Yan

Hi Gang,

On 06/05/2026 11:43, Gang Yan wrote:
> From: Gang Yan <yangang@kylinos.cn>
> 
> Add __mptcp_subflow_set_rcvbuf() helper that calls the tcp_set_rcvbuf
> to update window_clamp, in addition to writing sk_rcvbuf. Use it in
> both mptcp_sol_socket_sync_intval() (setsockopt path) and
> sync_socket_options() (new subflow creation path).

Next time, please insist more on the reason: why is it needed to update
window_clamp?

> Fixes: a2cbb1603943 ("tcp: Update window clamping condition")

I think it should be:

Fixes: b025461303d8 ("tcp: update window_clamp when SO_RCVBUF is set")

This commit introduced tcp_set_rcvbuf(), so it was hard to call it
before: this commit could have been added MPTCP support, hence the Fixes
tag linked to that one.

The rest looks good to me, and I can do the modification when applying
the patch:

Reviewed-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>

Cheers,
Matt
-- 
Sponsored by the NGI0 Core fund.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH mptcp-net v3] mptcp: update window_clamp on subflows when SO_RCVBUF is set
  2026-05-06  9:43 [PATCH mptcp-net v3] mptcp: update window_clamp on subflows when SO_RCVBUF is set Gang Yan
  2026-05-06 11:19 ` MPTCP CI
  2026-05-08  9:24 ` Matthieu Baerts
@ 2026-05-08 10:54 ` Matthieu Baerts
  2 siblings, 0 replies; 4+ messages in thread
From: Matthieu Baerts @ 2026-05-08 10:54 UTC (permalink / raw)
  To: Gang Yan, MPTCP Linux; +Cc: Gang Yan

Hi Gang,

On 06/05/2026 11:43, Gang Yan wrote:
> From: Gang Yan <yangang@kylinos.cn>
> 
> Add __mptcp_subflow_set_rcvbuf() helper that calls the tcp_set_rcvbuf
> to update window_clamp, in addition to writing sk_rcvbuf. Use it in
> both mptcp_sol_socket_sync_intval() (setsockopt path) and
> sync_socket_options() (new subflow creation path).

Now in our tree, with small modifications in the commit message.

New patches for t/upstream-net and t/upstream:
- 840fb208ba03: mptcp: update window_clamp on subflows when SO_RCVBUF is set
- Results: 83b57683234a..a968ca54c292 (export-net)
- Results: fac20e19a7d2..9ec315f69069 (export)

Tests are now in progress:

- export-net:
https://github.com/multipath-tcp/mptcp_net-next/commit/ebbd36260bf0fc51690fbf16c146a51f95d32602/checks
- export:
https://github.com/multipath-tcp/mptcp_net-next/commit/876e5cac2c615fa953d03f4b90ab234ebfca3c73/checks

Cheers,
Matt
-- 
Sponsored by the NGI0 Core fund.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-05-08 10:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-06  9:43 [PATCH mptcp-net v3] mptcp: update window_clamp on subflows when SO_RCVBUF is set Gang Yan
2026-05-06 11:19 ` MPTCP CI
2026-05-08  9:24 ` Matthieu Baerts
2026-05-08 10:54 ` Matthieu Baerts

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.