From: "Matthieu Baerts (NGI0)" <matttbe@kernel.org>
To: Mat Martineau <martineau@kernel.org>,
Geliang Tang <geliang@kernel.org>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>,
Paolo Abeni <pabeni@redhat.com>, Simon Horman <horms@kernel.org>
Cc: netdev@vger.kernel.org, mptcp@lists.linux.dev,
linux-kernel@vger.kernel.org,
"Matthieu Baerts (NGI0)" <matttbe@kernel.org>,
stable@vger.kernel.org, Florian Westphal <fw@strlen.de>,
Kalpan Jani <kalpan.jani@mpiricsoftware.com>,
syzbot+55c2a5c871441261ed14@syzkaller.appspotmail.com,
Tao Cui <cuitao@kylinos.cn>, Gang Yan <yangang@kylinos.cn>,
Shuah Khan <shuah@kernel.org>,
linux-kselftest@vger.kernel.org, Qing Luo <luoqing@kylinos.cn>,
Kishen Maloor <kishen.maloor@intel.com>,
Kuniyuki Iwashima <kuniyu@google.com>,
Keita Morisaki <kmta1236@gmail.com>,
Jakub Sitnicki <jakub@cloudflare.com>
Subject: [PATCH net 00/14] mptcp: misc fixes for v7.3-rc1
Date: Mon, 24 Aug 2026 18:48:20 +0200 [thread overview]
Message-ID: <20260824-net-mptcp-misc-fixes-7-3-rc1-v1-0-a92309d121ca@kernel.org> (raw)
Here are various unrelated fixes:
- Patch 1: Do not reschedule the RTX timer for sockets that fell back to
TCP. A fix for v5.7.
- Patch 2: Avoid copying thmac which will not be used and could be
uninitialised. A fix for v5.7.
- Patch 3: Re-set the request backup flag when SYN cookies are used. A
fix for v5.9.
- Patch 4: Drop pending ADD_ADDR when removing ID0, and avoid a WARN. A
fix for v5.13.
- Patch 5: Handle invalid suboptions where the checksum is requested in
the MP_CAPABLE 4th ACK with data, but not added in the option. A fix
for v5.14.
- Patch 6: Fix a use-after-free in the selftests that could lead to
false positive. A fix for v5.17.
- Patch 7: Limit new addresses with the userspace PM to avoid an address
ID overflow. A fix for v5.19.
- Patch 8: Reset the ADD_ADDR retransmission counter when the timer is
reused. A fix for v5.19.
- Patch 9: Remove unneeded and confusing READ_ONCE() annotations. A fix
for v6.13.
- Patches 10-11: Get nstat counters for the current test, not since the
creation of the netns. A fix for v6.19.
- Patch 12: Fix an uninit-value in mptcp_write_data_fin for a corner
case now that only a part of the tcp_out_options struct is reset. A
fix for v7.1.
- Patches 13-14: Two follow-up patches addressing minor comments
discovered after the human review. A fix for v7.3-rc0.
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
---
Gang Yan (1):
selftests: mptcp: fix an UAF in mptcp_connect.c
Kalpan Jani (1):
mptcp: pm: kernel: drop pending ADD_ADDR when removing ID0
Matthieu Baerts (NGI0) (7):
mptcp: subflow: no need to copy thmac during ulp_clone
mptcp: syncookies: remember the request backup flag
mptcp: options: handle MPC data + csum reqd + no csum
mptcp: pm: reset retrans_time when ADD_ADDR entry is reused
selftests: mptcp: lib: dump nstat for the right test
selftests: mptcp: lib: get counters for the right test
mptcp: options: fix uninit-value in mptcp_write_data_fin
Paolo Abeni (4):
mptcp: do not reschedule the RTX timer for fallback sockets
mptcp: remove unneeded READ_ONCE() annotation
mptcp: being below memory limit is a likely() condition
mptcp: avoid pruning for OoW data
Qing Luo (1):
mptcp: pm: userspace: fix address ID overflow
net/mptcp/options.c | 8 ++++---
net/mptcp/pm.c | 2 +-
net/mptcp/pm_kernel.c | 8 +++++++
net/mptcp/pm_userspace.c | 18 ++++++++++----
net/mptcp/protocol.c | 29 +++++++++++++----------
net/mptcp/protocol.h | 1 +
net/mptcp/subflow.c | 1 -
net/mptcp/syncookies.c | 5 +++-
tools/testing/selftests/net/mptcp/mptcp_connect.c | 4 +++-
tools/testing/selftests/net/mptcp/mptcp_lib.sh | 26 +++++++++++---------
10 files changed, 68 insertions(+), 34 deletions(-)
---
base-commit: 7cbfb180945ce529608e4d4e24a6d483699fab1e
change-id: 20260824-net-mptcp-misc-fixes-7-3-rc1-6a4d6223ec41
Best regards,
--
Matthieu Baerts (NGI0) <matttbe@kernel.org>
next reply other threads:[~2026-08-24 16:48 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-24 16:48 Matthieu Baerts (NGI0) [this message]
2026-08-24 16:48 ` [PATCH net 01/14] mptcp: do not reschedule the RTX timer for fallback sockets Matthieu Baerts (NGI0)
2026-08-27 19:07 ` Jakub Kicinski
2026-08-28 6:35 ` Paolo Abeni
2026-08-24 16:48 ` [PATCH net 02/14] mptcp: subflow: no need to copy thmac during ulp_clone Matthieu Baerts (NGI0)
2026-08-27 19:07 ` Jakub Kicinski
2026-08-28 9:58 ` Matthieu Baerts
2026-08-24 16:48 ` [PATCH net 03/14] mptcp: syncookies: remember the request backup flag Matthieu Baerts (NGI0)
2026-08-24 16:48 ` [PATCH net 04/14] mptcp: pm: kernel: drop pending ADD_ADDR when removing ID0 Matthieu Baerts (NGI0)
2026-08-27 19:07 ` Jakub Kicinski
2026-08-24 16:48 ` [PATCH net 05/14] mptcp: options: handle MPC data + csum reqd + no csum Matthieu Baerts (NGI0)
2026-08-27 19:07 ` Jakub Kicinski
2026-08-24 16:48 ` [PATCH net 06/14] selftests: mptcp: fix an UAF in mptcp_connect.c Matthieu Baerts (NGI0)
2026-08-24 16:48 ` [PATCH net 07/14] mptcp: pm: userspace: fix address ID overflow Matthieu Baerts (NGI0)
2026-08-24 16:48 ` [PATCH net 08/14] mptcp: pm: reset retrans_time when ADD_ADDR entry is reused Matthieu Baerts (NGI0)
2026-08-27 19:07 ` Jakub Kicinski
2026-08-24 16:48 ` [PATCH net 09/14] mptcp: remove unneeded READ_ONCE() annotation Matthieu Baerts (NGI0)
2026-08-24 16:48 ` [PATCH net 10/14] selftests: mptcp: lib: dump nstat for the right test Matthieu Baerts (NGI0)
2026-08-24 16:48 ` [PATCH net 11/14] selftests: mptcp: lib: get counters " Matthieu Baerts (NGI0)
2026-08-24 16:48 ` [PATCH net 12/14] mptcp: options: fix uninit-value in mptcp_write_data_fin Matthieu Baerts (NGI0)
2026-08-24 16:48 ` [PATCH net 13/14] mptcp: being below memory limit is a likely() condition Matthieu Baerts (NGI0)
2026-08-24 16:48 ` [PATCH net 14/14] mptcp: avoid pruning for OoW data Matthieu Baerts (NGI0)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260824-net-mptcp-misc-fixes-7-3-rc1-v1-0-a92309d121ca@kernel.org \
--to=matttbe@kernel.org \
--cc=cuitao@kylinos.cn \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=fw@strlen.de \
--cc=geliang@kernel.org \
--cc=horms@kernel.org \
--cc=jakub@cloudflare.com \
--cc=kalpan.jani@mpiricsoftware.com \
--cc=kishen.maloor@intel.com \
--cc=kmta1236@gmail.com \
--cc=kuba@kernel.org \
--cc=kuniyu@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=luoqing@kylinos.cn \
--cc=martineau@kernel.org \
--cc=mptcp@lists.linux.dev \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=shuah@kernel.org \
--cc=stable@vger.kernel.org \
--cc=syzbot+55c2a5c871441261ed14@syzkaller.appspotmail.com \
--cc=yangang@kylinos.cn \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox