selftests: mptcp: join: cannot rm sf if closed
Matthieu Baerts (NGI0) authored
Thanks to the previous commit, the MPTCP subflows are now closed on both
directions even when only the MPTCP path-manager of one peer asks for
their closure.

In the two tests modified here -- "userspace pm add & remove address"
and "userspace pm create destroy subflow" -- one peer is controlled by
the userspace PM, and the other one by the in-kernel PM. When the
userspace PM sends a RM_ADDR notification, the in-kernel PM will
automatically react by closing all subflows using this address. Now,
thanks to the previous commit, the subflows are properly closed on both
directions, the userspace PM can then no longer closes the same
subflows if they are already closed. Before, it was OK to do that,
because the subflows were still half-opened, still OK to send a RM_ADDR.

In other words, thanks to the previous commit closing the subflows, an
error will be returned to the userspace if it tries to close a subflow
that has already been closed. So no need to run this command, which mean
that the linked counters will then not be incremented.

These tests are then no longer sending both a RM_ADDR, then closing the
linked subflow just after. The test with the userspace PM on the server
side is now removing one subflow linked to one address, then sending
a RM_ADDR for another address. The test with the userspace PM on the
client side is now only removing the subflow that was previously
created.

Fixes: 4369c198

 ("selftests: mptcp: test userspace pm out of transfer")
Cc: stable@vger.kernel.org
Reviewed-by: default avatarMat Martineau <martineau@kernel.org>
Signed-off-by: default avatarMatthieu Baerts (NGI0) <matttbe@kernel.org>
Link: https://patch.msgid.link/20240826-net-mptcp-close-extra-sf-fin-v1-2-905199fe1172@kernel.org

Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
e93681af
Name Last commit Last update
Documentation net: drop special comment style
LICENSES LICENSES: Add the copyleft-next-0.3.1 license
arch Merge tag 'driver-core-6.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
block block: Fix lockdep warning in blk_mq_mark_tag_wait
certs kbuild: use $(src) instead of $(srctree)/$(src) for source directory
crypto crypto: testmgr - generate power-of-2 lengths more often
drivers gtp: fix a potential NULL pointer dereference
fs Merge tag 'erofs-for-6.11-rc5-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs
include bonding: change ipsec_lock from spin lock to mutex
init Merge tag 'rust-fixes-6.11' of https://github.com/Rust-for-Linux/linux
io_uring io_uring/sqpoll: annotate debug task == current with data_race()
ipc sysctl: treewide: constify the ctl_table argument of proc_handlers
kernel Merge tag 'printk-for-6.11-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux
lib Merge tag 'bcachefs-2024-08-16' of git://evilpiepirate.org/bcachefs
mm Merge tag 'mm-hotfixes-stable-2024-08-17-19-34' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
net mptcp: close subflow when receiving TCP+FIN
rust Merge tag 'rust-fixes-6.11' of https://github.com/Rust-for-Linux/linux
samples treewide: remove unnecessary <linux/version.h> inclusion
scripts net: drop special comment style
security KEYS: trusted: dcp: fix leak of blob encryption key
sound Merge tag 'kbuild-fixes-v6.11-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild
tools selftests: mptcp: join: cannot rm sf if closed
usr initramfs: shorten cmd_initfs in usr/Makefile
virt KVM: x86: Disallow read-only memslots for SEV-ES and SEV-SNP (and TDX)
.clang-format Docs: Move clang-format from process/ to dev-tools/
.cocciconfig
.editorconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
.rustfmt.toml
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Linux kernel
============

There are several guides for kernel developers and users. These guides can
be rendered in a number of formats, like HTML and PDF. Please read
Documentation/admin-guide/README.rst first.

In order to build the documentation, use ``make htmldocs`` or
``make pdfdocs``.  The formatted documentation can also be read online at:

    https://www.kernel.org/doc/html/latest/

There are various text files in the Documentation/ subdirectory,
several of them using the reStructuredText markup notation.

Please read the Documentation/process/changes.rst file, as it contains the
requirements for building and running the kernel, and information about
the problems which may result by upgrading your kernel.