]> git.ipfire.org Git - thirdparty/linux.git/commit
Merge branch 'mptcp-misc-fixes'
authorDavid S. Miller <davem@davemloft.net>
Mon, 12 Feb 2024 10:08:13 +0000 (10:08 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 12 Feb 2024 10:08:13 +0000 (10:08 +0000)
commit603604c8be421b88ff594c8ea696d6c8a9165cb5
treeb5d1b846fb507f8f913d553a3de058cc9745c53a
parentbab091d54600b62c1246caa6075d98a24b2c9e03
parent68990d006d42b6ef7910fa263f87e9e0d812113b
Merge branch 'mptcp-misc-fixes'

Matthieu Baerts says:

====================
mptcp: locking cleanup & misc. fixes

Patches 1-4 are fixes for issues found by Paolo while working on adding
TCP_NOTSENT_LOWAT support. The latter will need to track more states
under the msk data lock. Since the locking msk locking schema is already
quite complex, do a long awaited clean-up step by moving several
confusing lockless initialization under the relevant locks. Note that it
is unlikely a real race could happen even prior to such patches as the
MPTCP-level state machine implicitly ensures proper serialization of the
write accesses, even lacking explicit lock. But still, simplification is
welcome and this will help for the maintenance. This can be backported
up to v5.6.

Patch 5 is a fix for the userspace PM, not to add new local address
entries if the address is already in the list. This behaviour can be
seen since v5.19.

Patch 6 fixes an issue when Fastopen is used. The issue can happen since
v6.2. A previous fix has already been applied, but not taking care of
all cases according to syzbot.

Patch 7 updates Geliang's email address in the MAINTAINERS file.
====================

Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>