From: patchwork-bot+netdevbpf@kernel.org
To: Matthieu Baerts <matttbe@kernel.org>
Cc: mptcp@lists.linux.dev, martineau@kernel.org, geliang@kernel.org,
davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
pabeni@redhat.com, horms@kernel.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH net-next 00/15] mptcp: pm: code reorganisation
Date: Mon, 10 Mar 2025 20:50:36 +0000 [thread overview]
Message-ID: <174163983626.3691119.3217596204968315026.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20250307-net-next-mptcp-pm-reorg-v1-0-abef20ada03b@kernel.org>
Hello:
This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Fri, 07 Mar 2025 12:21:44 +0100 you wrote:
> Before this series, the PM code was dispersed in different places:
>
> - pm.c had common code for all PMs.
>
> - pm_netlink.c was initially only about the in-kernel PM, but ended up
> also getting exported common helpers, callbacks used by the different
> PMs, NL events for PM userspace daemon, etc. quite confusing.
>
> [...]
Here is the summary with links:
- [net-next,01/15] mptcp: pm: use addr entry for get_local_id
https://git.kernel.org/netdev/net-next/c/7462fe22cc74
- [net-next,02/15] mptcp: pm: remove '_nl' from mptcp_pm_nl_addr_send_ack
https://git.kernel.org/netdev/net-next/c/fac7a6ddc757
- [net-next,03/15] mptcp: pm: remove '_nl' from mptcp_pm_nl_mp_prio_send_ack
https://git.kernel.org/netdev/net-next/c/d1734987992c
- [net-next,04/15] mptcp: pm: remove '_nl' from mptcp_pm_nl_work
https://git.kernel.org/netdev/net-next/c/551a9ad7879d
- [net-next,05/15] mptcp: pm: remove '_nl' from mptcp_pm_nl_rm_addr_received
https://git.kernel.org/netdev/net-next/c/636113918508
- [net-next,06/15] mptcp: pm: remove '_nl' from mptcp_pm_nl_subflow_chk_stale()
https://git.kernel.org/netdev/net-next/c/550c50bbc2b7
- [net-next,07/15] mptcp: pm: remove '_nl' from mptcp_pm_nl_is_init_remote_addr
https://git.kernel.org/netdev/net-next/c/498d7d8b75f1
- [net-next,08/15] mptcp: pm: kernel: add '_pm' to mptcp_nl_set_flags
https://git.kernel.org/netdev/net-next/c/40aa7409d30d
- [net-next,09/15] mptcp: pm: avoid calling PM specific code from core
https://git.kernel.org/netdev/net-next/c/a17336b2b2e0
- [net-next,10/15] mptcp: pm: worker: split in-kernel and common tasks
https://git.kernel.org/netdev/net-next/c/a49eb8ae95b8
- [net-next,11/15] mptcp: pm: export mptcp_remote_address
https://git.kernel.org/netdev/net-next/c/a14673127236
- [net-next,12/15] mptcp: pm: move generic helper at the top
https://git.kernel.org/netdev/net-next/c/bcc32640ada0
- [net-next,13/15] mptcp: pm: move generic PM helpers to pm.c
https://git.kernel.org/netdev/net-next/c/e4c28e3d5c09
- [net-next,14/15] mptcp: pm: split in-kernel PM specific code
https://git.kernel.org/netdev/net-next/c/8617e85e04bd
- [net-next,15/15] mptcp: pm: move Netlink PM helpers to pm_netlink.c
https://git.kernel.org/netdev/net-next/c/2e7e6e9cda1e
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
prev parent reply other threads:[~2025-03-10 20:50 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-07 11:21 Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 01/15] mptcp: pm: use addr entry for get_local_id Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 02/15] mptcp: pm: remove '_nl' from mptcp_pm_nl_addr_send_ack Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 03/15] mptcp: pm: remove '_nl' from mptcp_pm_nl_mp_prio_send_ack Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 04/15] mptcp: pm: remove '_nl' from mptcp_pm_nl_work Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 05/15] mptcp: pm: remove '_nl' from mptcp_pm_nl_rm_addr_received Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 06/15] mptcp: pm: remove '_nl' from mptcp_pm_nl_subflow_chk_stale() Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 07/15] mptcp: pm: remove '_nl' from mptcp_pm_nl_is_init_remote_addr Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 08/15] mptcp: pm: kernel: add '_pm' to mptcp_nl_set_flags Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 09/15] mptcp: pm: avoid calling PM specific code from core Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 10/15] mptcp: pm: worker: split in-kernel and common tasks Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 11/15] mptcp: pm: export mptcp_remote_address Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 12/15] mptcp: pm: move generic helper at the top Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 13/15] mptcp: pm: move generic PM helpers to pm.c Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 14/15] mptcp: pm: split in-kernel PM specific code Matthieu Baerts (NGI0)
2025-03-07 11:21 ` [PATCH net-next 15/15] mptcp: pm: move Netlink PM helpers to pm_netlink.c Matthieu Baerts (NGI0)
2025-03-10 20:50 ` patchwork-bot+netdevbpf [this message]
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=174163983626.3691119.3217596204968315026.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=geliang@kernel.org \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martineau@kernel.org \
--cc=matttbe@kernel.org \
--cc=mptcp@lists.linux.dev \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/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
all inboxes | Powered by JetHome®