Message ID | 20250221-net-next-mptcp-pm-misc-cleanup-3-v1-0-2b70ab1cee79@kernel.org (mailing list archive) |
---|---|
Headers | show |
Series | mptcp: pm: misc cleanups, part 3 | expand |
Hello: This series was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Fri, 21 Feb 2025 16:43:53 +0100 you wrote: > These cleanups lead the way to the unification of the path-manager > interfaces, and allow future extensions. The following patches are not > all linked to each others, but are all related to the path-managers, > except the last three. > > - Patch 1: remove unused returned value in mptcp_nl_set_flags(). > > [...] Here is the summary with links: - [net-next,01/10] mptcp: pm: remove unused ret value to set flags https://git.kernel.org/netdev/net-next/c/bc337e8c0e76 - [net-next,02/10] mptcp: pm: change to fullmesh only for 'subflow' https://git.kernel.org/netdev/net-next/c/145dc6cc4abd - [net-next,03/10] mptcp: pm: add a build check for userspace_pm_dump_addr https://git.kernel.org/netdev/net-next/c/63132fb05474 - [net-next,04/10] mptcp: pm: add mptcp_pm_genl_fill_addr helper https://git.kernel.org/netdev/net-next/c/f8fe81746573 - [net-next,05/10] mptcp: pm: drop match in userspace_pm_append_new_local_addr https://git.kernel.org/netdev/net-next/c/640e3d69d0bc - [net-next,06/10] mptcp: pm: drop inet6_sk after inet_sk https://git.kernel.org/netdev/net-next/c/dc41695200a1 - [net-next,07/10] mptcp: pm: use ipv6_addr_equal in addresses_equal https://git.kernel.org/netdev/net-next/c/7720790fd56b - [net-next,08/10] mptcp: sched: split get_subflow interface into two https://git.kernel.org/netdev/net-next/c/9771a96a7a35 - [net-next,09/10] mptcp: sched: reduce size for unused data https://git.kernel.org/netdev/net-next/c/b68b106b0f15 - [net-next,10/10] mptcp: blackhole: avoid checking the state twice https://git.kernel.org/netdev/net-next/c/8275ac799ee1 You are awesome, thank you!
These cleanups lead the way to the unification of the path-manager interfaces, and allow future extensions. The following patches are not all linked to each others, but are all related to the path-managers, except the last three. - Patch 1: remove unused returned value in mptcp_nl_set_flags(). - Patch 2: new flag: avoid iterating over all connections if not needed. - Patch 3: add a build check making sure there is enough space in cb-ctx. - Patch 4: new mptcp_pm_genl_fill_addr helper to reduce duplicated code. - Patch 5: simplify userspace_pm_append_new_local_addr helper. - Patch 6: drop unneeded inet6_sk(). - Patch 7: use ipv6_addr_equal() instead of !ipv6_addr_cmp() - Patch 8: scheduler: split an interface in two. - Patch 9: scheduler: save 64 bytes of currently unused data. - Patch 10: small optimisation to exit early in case of retransmissions. Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org> --- Geliang Tang (6): mptcp: pm: add a build check for userspace_pm_dump_addr mptcp: pm: add mptcp_pm_genl_fill_addr helper mptcp: pm: drop match in userspace_pm_append_new_local_addr mptcp: pm: drop inet6_sk after inet_sk mptcp: pm: use ipv6_addr_equal in addresses_equal mptcp: sched: split get_subflow interface into two Matthieu Baerts (NGI0) (4): mptcp: pm: remove unused ret value to set flags mptcp: pm: change to fullmesh only for 'subflow' mptcp: sched: reduce size for unused data mptcp: blackhole: avoid checking the state twice include/net/mptcp.h | 5 +++-- net/mptcp/ctrl.c | 32 ++++++++++++++++++-------------- net/mptcp/pm.c | 21 +++++++++++++++++++++ net/mptcp/pm_netlink.c | 46 ++++++++++++++++------------------------------ net/mptcp/pm_userspace.c | 29 +++++++---------------------- net/mptcp/protocol.h | 3 +++ net/mptcp/sched.c | 39 ++++++++++++++++++++++++++------------- 7 files changed, 94 insertions(+), 81 deletions(-) --- base-commit: bb3bb6c92e5719c0f5d7adb9d34db7e76705ac33 change-id: 20250221-net-next-mptcp-pm-misc-cleanup-3-51e9c67a95a6 Best regards,