From: patchwork-bot+netdevbpf@kernel.org
To: Stanislav Fomichev <sdf.kernel@gmail.com>
Cc: netdev@vger.kernel.org, davem@davemloft.net, edumazet@google.com,
kuba@kernel.org, pabeni@redhat.com
Subject: Re: [PATCH net v8 00/15] net: sleepable ndo_set_rx_mode
Date: Tue, 21 Apr 2026 11:00:28 +0000 [thread overview]
Message-ID: <177676922879.2351021.18340708312396220142.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20260416185712.2155425-1-sdf@fomichev.me>
Hello:
This series was applied to netdev/net.git (main)
by Paolo Abeni <pabeni@redhat.com>:
On Thu, 16 Apr 2026 11:56:57 -0700 you wrote:
> This series adds a new ndo_set_rx_mode_async callback that enables
> drivers to handle address list updates in a sleepable context. The
> current ndo_set_rx_mode is called under the netif_addr_lock spinlock
> with BHs disabled, which prevents drivers from sleeping. This is
> problematic for ops-locked drivers that need to sleep.
>
> The approach:
> 1. Add snapshot/reconcile infrastructure for address lists
> 2. Introduce dev_rx_mode_work that takes snapshots under the lock,
> drops the lock, calls the driver, then reconciles changes back
> 3. Move promiscuity handling into the scheduled work as well
> 4. Convert existing ops-locked drivers to ndo_set_rx_mode_async
> 5. Add a warning for ops-locked drivers still using ndo_set_rx_mode
> 6. Add a selftest exercising the team+bridge+macvlan topology that
> triggers the addr_lock -> ops_lock ordering issue
>
> [...]
Here is the summary with links:
- [net,v8,01/15] net: add address list snapshot and reconciliation infrastructure
https://git.kernel.org/netdev/net/c/db9e726525e4
- [net,v8,02/15] net: introduce ndo_set_rx_mode_async and netdev_rx_mode_work
https://git.kernel.org/netdev/net/c/3554b4345d85
- [net,v8,03/15] net: cache snapshot entries for ndo_set_rx_mode_async
https://git.kernel.org/netdev/net/c/a4c833278144
- [net,v8,04/15] net: move promiscuity handling into netdev_rx_mode_work
https://git.kernel.org/netdev/net/c/7ef83bf1712b
- [net,v8,05/15] fbnic: convert to ndo_set_rx_mode_async
https://git.kernel.org/netdev/net/c/60dd9781e9b8
- [net,v8,06/15] mlx5: convert to ndo_set_rx_mode_async
https://git.kernel.org/netdev/net/c/5cf06fbdaf02
- [net,v8,07/15] bnxt: convert to ndo_set_rx_mode_async
https://git.kernel.org/netdev/net/c/f6c53cfa1217
- [net,v8,08/15] bnxt: use snapshot in bnxt_cfg_rx_mode
https://git.kernel.org/netdev/net/c/a453b5d9b3ed
- [net,v8,09/15] iavf: convert to ndo_set_rx_mode_async
https://git.kernel.org/netdev/net/c/d071c15b43e9
- [net,v8,10/15] netdevsim: convert to ndo_set_rx_mode_async
https://git.kernel.org/netdev/net/c/8a5df09e70c2
- [net,v8,11/15] dummy: convert to ndo_set_rx_mode_async
https://git.kernel.org/netdev/net/c/4d157e89bde4
- [net,v8,12/15] netkit: convert to ndo_set_rx_mode_async
https://git.kernel.org/netdev/net/c/754b7e1169a7
- [net,v8,13/15] net: warn ops-locked drivers still using ndo_set_rx_mode
https://git.kernel.org/netdev/net/c/3cbd22938877
- [net,v8,14/15] selftests: net: add team_bridge_macvlan rx_mode test
https://git.kernel.org/netdev/net/c/ee514cdb07b3
- [net,v8,15/15] selftests: net: use ip commands instead of teamd in team rx_mode test
https://git.kernel.org/netdev/net/c/c4dde411bc36
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:[~2026-04-21 11:01 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-16 18:56 [PATCH net v8 00/15] net: sleepable ndo_set_rx_mode Stanislav Fomichev
2026-04-16 18:56 ` [PATCH net v8 01/15] net: add address list snapshot and reconciliation infrastructure Stanislav Fomichev
2026-04-16 18:56 ` [PATCH net v8 02/15] net: introduce ndo_set_rx_mode_async and netdev_rx_mode_work Stanislav Fomichev
2026-04-16 18:57 ` [PATCH net v8 03/15] net: cache snapshot entries for ndo_set_rx_mode_async Stanislav Fomichev
2026-04-21 9:52 ` Paolo Abeni
2026-04-21 10:48 ` Paolo Abeni
2026-04-16 18:57 ` [PATCH net v8 04/15] net: move promiscuity handling into netdev_rx_mode_work Stanislav Fomichev
2026-04-16 18:57 ` [PATCH net v8 05/15] fbnic: convert to ndo_set_rx_mode_async Stanislav Fomichev
2026-04-16 18:57 ` [PATCH net v8 06/15] mlx5: " Stanislav Fomichev
2026-04-16 18:57 ` [PATCH net v8 07/15] bnxt: " Stanislav Fomichev
2026-04-16 18:57 ` [PATCH net v8 08/15] bnxt: use snapshot in bnxt_cfg_rx_mode Stanislav Fomichev
2026-04-16 18:57 ` [PATCH net v8 09/15] iavf: convert to ndo_set_rx_mode_async Stanislav Fomichev
2026-04-16 18:57 ` [PATCH net v8 10/15] netdevsim: " Stanislav Fomichev
2026-04-16 18:57 ` [PATCH net v8 11/15] dummy: " Stanislav Fomichev
2026-04-16 18:57 ` [PATCH net v8 12/15] netkit: " Stanislav Fomichev
2026-04-16 18:57 ` [PATCH net v8 13/15] net: warn ops-locked drivers still using ndo_set_rx_mode Stanislav Fomichev
2026-04-16 18:57 ` [PATCH net v8 14/15] selftests: net: add team_bridge_macvlan rx_mode test Stanislav Fomichev
2026-04-16 18:57 ` [PATCH net v8 15/15] selftests: net: use ip commands instead of teamd in team " Stanislav Fomichev
2026-04-21 11:00 ` 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=177676922879.2351021.18340708312396220142.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=sdf.kernel@gmail.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