From: patchwork-bot+netdevbpf@kernel•org
To: Kuniyuki Iwashima <kuniyu@amazon•com>
Cc: davem@davemloft•net, edumazet@google•com, kuba@kernel•org,
pabeni@redhat•com, dsahern@kernel•org, kuni1840@gmail•com,
netdev@vger•kernel.org
Subject: Re: [PATCH v1 net-next 00/12] ipv4: Convert RTM_{NEW,DEL}ADDR and more to per-netns RTNL.
Date: Tue, 29 Oct 2024 11:20:35 +0000 [thread overview]
Message-ID: <173020083526.660943.8648689683935289296.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20241021183239.79741-1-kuniyu@amazon.com>
Hello:
This series was applied to netdev/net-next.git (main)
by Paolo Abeni <pabeni@redhat•com>:
On Mon, 21 Oct 2024 11:32:27 -0700 you wrote:
> The IPv4 address hash table and GC are already namespacified.
>
> This series converts RTM_NEWADDR/RTM_DELADDR and some more
> RTNL users to per-netns RTNL.
>
>
> Changes:
> v2:
> * Add patch 1 to address sparse warning for CONFIG_DEBUG_NET_SMALL_RTNL=n
> * Add Eric's tags to patch 2-12
>
> [...]
Here is the summary with links:
- [v1,net-next,01/12] rtnetlink: Make per-netns RTNL dereference helpers to macro.
https://git.kernel.org/netdev/net-next/c/9cb7e40d388d
- [v1,net-next,02/12] rtnetlink: Define RTNL_FLAG_DOIT_PERNET for per-netns RTNL doit().
https://git.kernel.org/netdev/net-next/c/26d8db55eeac
- [v1,net-next,03/12] ipv4: Factorise RTM_NEWADDR validation to inet_validate_rtm().
https://git.kernel.org/netdev/net-next/c/2d34429d14f9
- [v1,net-next,04/12] ipv4: Don't allocate ifa for 0.0.0.0 in inet_rtm_newaddr().
https://git.kernel.org/netdev/net-next/c/abd0deff03d8
- [v1,net-next,05/12] ipv4: Convert RTM_NEWADDR to per-netns RTNL.
https://git.kernel.org/netdev/net-next/c/487257786b71
- [v1,net-next,06/12] ipv4: Use per-netns RTNL helpers in inet_rtm_newaddr().
https://git.kernel.org/netdev/net-next/c/d4b483208b26
- [v1,net-next,07/12] ipv4: Convert RTM_DELADDR to per-netns RTNL.
https://git.kernel.org/netdev/net-next/c/4df5066f079c
- [v1,net-next,08/12] ipv4: Convert check_lifetime() to per-netns RTNL.
https://git.kernel.org/netdev/net-next/c/c350c4761e7f
- [v1,net-next,09/12] rtnetlink: Define rtnl_net_trylock().
https://git.kernel.org/netdev/net-next/c/d1c81818aa22
- [v1,net-next,10/12] ipv4: Convert devinet_sysctl_forward() to per-netns RTNL.
https://git.kernel.org/netdev/net-next/c/77453d428d4c
- [v1,net-next,11/12] ipv4: Convert devinet_ioctl() to per-netns RTNL except for SIOCSIFFLAGS.
https://git.kernel.org/netdev/net-next/c/88d1f8770690
- [v1,net-next,12/12] ipv4: Convert devinet_ioctl to per-netns RTNL.
https://git.kernel.org/netdev/net-next/c/7ed8da17bfb2
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:[~2024-10-29 11:20 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-21 18:32 [PATCH v1 net-next 00/12] ipv4: Convert RTM_{NEW,DEL}ADDR and more to per-netns RTNL Kuniyuki Iwashima
2024-10-21 18:32 ` [PATCH v1 net-next 01/12] rtnetlink: Make per-netns RTNL dereference helpers to macro Kuniyuki Iwashima
2024-10-23 18:58 ` Simon Horman
2024-10-21 18:32 ` [PATCH v1 net-next 02/12] rtnetlink: Define RTNL_FLAG_DOIT_PERNET for per-netns RTNL doit() Kuniyuki Iwashima
2024-10-21 18:32 ` [PATCH v1 net-next 03/12] ipv4: Factorise RTM_NEWADDR validation to inet_validate_rtm() Kuniyuki Iwashima
2024-10-21 18:32 ` [PATCH v1 net-next 04/12] ipv4: Don't allocate ifa for 0.0.0.0 in inet_rtm_newaddr() Kuniyuki Iwashima
2024-10-21 18:32 ` [PATCH v1 net-next 05/12] ipv4: Convert RTM_NEWADDR to per-netns RTNL Kuniyuki Iwashima
2024-10-21 18:32 ` [PATCH v1 net-next 06/12] ipv4: Use per-netns RTNL helpers in inet_rtm_newaddr() Kuniyuki Iwashima
2024-10-21 18:32 ` [PATCH v1 net-next 07/12] ipv4: Convert RTM_DELADDR to per-netns RTNL Kuniyuki Iwashima
2024-10-21 18:32 ` [PATCH v1 net-next 08/12] ipv4: Convert check_lifetime() " Kuniyuki Iwashima
2024-10-21 18:32 ` [PATCH v1 net-next 09/12] rtnetlink: Define rtnl_net_trylock() Kuniyuki Iwashima
2024-10-21 18:32 ` [PATCH v1 net-next 10/12] ipv4: Convert devinet_sysctl_forward() to per-netns RTNL Kuniyuki Iwashima
2024-10-21 18:32 ` [PATCH v1 net-next 11/12] ipv4: Convert devinet_ioctl() to per-netns RTNL except for SIOCSIFFLAGS Kuniyuki Iwashima
2024-10-21 18:32 ` [PATCH v1 net-next 12/12] ipv4: Convert devinet_ioctl to per-netns RTNL Kuniyuki Iwashima
2024-10-29 11:20 ` 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=173020083526.660943.8648689683935289296.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel$(echo .)org \
--cc=davem@davemloft$(echo .)net \
--cc=dsahern@kernel$(echo .)org \
--cc=edumazet@google$(echo .)com \
--cc=kuba@kernel$(echo .)org \
--cc=kuni1840@gmail$(echo .)com \
--cc=kuniyu@amazon$(echo .)com \
--cc=netdev@vger$(echo .)kernel.org \
--cc=pabeni@redhat$(echo .)com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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