netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Stanislav Fomichev <sdf@fomichev.me>
Cc: netdev@vger.kernel.org, davem@davemloft.net, edumazet@google.com,
	kuba@kernel.org, pabeni@redhat.com, saeed@kernel.org,
	dw@davidwei.uk
Subject: Re: [PATCH net-next v10 00/14] net: Hold netdev instance lock during ndo operations
Date: Thu, 06 Mar 2025 21:50:54 +0000	[thread overview]
Message-ID: <174129785425.1790842.9872735858764773480.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20250305163732.2766420-1-sdf@fomichev.me>

Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Wed,  5 Mar 2025 08:37:18 -0800 you wrote:
> As the gradual purging of rtnl continues, start grabbing netdev
> instance lock in more places so we can get to the state where
> most paths are working without rtnl. Start with requiring the
> drivers that use shaper api (and later queue mgmt api) to work
> with both rtnl and netdev instance lock. Eventually we might
> attempt to drop rtnl. This mostly affects iavf, gve, bnxt and
> netdev sim (as the drivers that implement shaper/queue mgmt)
> so those drivers are converted in the process.
> 
> [...]

Here is the summary with links:
  - [net-next,v10,01/14] net: hold netdev instance lock during ndo_open/ndo_stop
    https://git.kernel.org/netdev/net-next/c/d4c22ec680c8
  - [net-next,v10,02/14] net: hold netdev instance lock during nft ndo_setup_tc
    https://git.kernel.org/netdev/net-next/c/c4f0f30b424e
  - [net-next,v10,03/14] net: sched: wrap doit/dumpit methods
    https://git.kernel.org/netdev/net-next/c/7c79cff95535
  - [net-next,v10,04/14] net: hold netdev instance lock during qdisc ndo_setup_tc
    https://git.kernel.org/netdev/net-next/c/a0527ee2df3f
  - [net-next,v10,05/14] net: hold netdev instance lock during queue operations
    https://git.kernel.org/netdev/net-next/c/cae03e5bdd9e
  - [net-next,v10,06/14] net: hold netdev instance lock during rtnetlink operations
    https://git.kernel.org/netdev/net-next/c/7e4d784f5810
  - [net-next,v10,07/14] net: hold netdev instance lock during ioctl operations
    https://git.kernel.org/netdev/net-next/c/ffb7ed19ac0a
  - [net-next,v10,08/14] net: hold netdev instance lock during sysfs operations
    https://git.kernel.org/netdev/net-next/c/ad7c7b2172c3
  - [net-next,v10,09/14] net: hold netdev instance lock during ndo_bpf
    https://git.kernel.org/netdev/net-next/c/97246d6d21c2
  - [net-next,v10,10/14] net: ethtool: try to protect all callback with netdev instance lock
    https://git.kernel.org/netdev/net-next/c/2bcf4772e45a
  - [net-next,v10,11/14] net: replace dev_addr_sem with netdev instance lock
    https://git.kernel.org/netdev/net-next/c/df43d8bf1031
  - [net-next,v10,12/14] net: add option to request netdev instance lock
    https://git.kernel.org/netdev/net-next/c/605ef7aec060
  - [net-next,v10,13/14] docs: net: document new locking reality
    https://git.kernel.org/netdev/net-next/c/cc34acd577f1
  - [net-next,v10,14/14] eth: bnxt: remove most dependencies on RTNL
    https://git.kernel.org/netdev/net-next/c/004b5008016a

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



  parent reply	other threads:[~2025-03-06 21:50 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-05 16:37 [PATCH net-next v10 00/14] net: Hold netdev instance lock during ndo operations Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 01/14] net: hold netdev instance lock during ndo_open/ndo_stop Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 02/14] net: hold netdev instance lock during nft ndo_setup_tc Stanislav Fomichev
2025-03-07 19:39   ` Eric Dumazet
2025-03-07 19:57     ` Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 03/14] net: sched: wrap doit/dumpit methods Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 04/14] net: hold netdev instance lock during qdisc ndo_setup_tc Stanislav Fomichev
2025-03-13  8:51   ` Eric Dumazet
2025-03-13  9:11     ` Stanislav Fomichev
2025-05-05 13:41   ` Cosmin Ratiu
2025-05-05 15:07     ` Stanislav Fomichev
2025-05-05 15:12       ` Cosmin Ratiu
2025-05-05 18:35         ` Jakub Kicinski
2025-05-05 18:54           ` Stanislav Fomichev
2025-05-05 19:03             ` Jakub Kicinski
2025-03-05 16:37 ` [PATCH net-next v10 05/14] net: hold netdev instance lock during queue operations Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 06/14] net: hold netdev instance lock during rtnetlink operations Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 07/14] net: hold netdev instance lock during ioctl operations Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 08/14] net: hold netdev instance lock during sysfs operations Stanislav Fomichev
2025-03-24 15:34   ` Cosmin Ratiu
2025-03-24 15:56     ` Cosmin Ratiu
2025-03-24 16:06     ` Stanislav Fomichev
2025-03-24 17:06       ` Cosmin Ratiu
2025-03-24 18:18         ` Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 09/14] net: hold netdev instance lock during ndo_bpf Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 10/14] net: ethtool: try to protect all callback with netdev instance lock Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 11/14] net: replace dev_addr_sem " Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 12/14] net: add option to request " Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 13/14] docs: net: document new locking reality Stanislav Fomichev
2025-03-05 16:37 ` [PATCH net-next v10 14/14] eth: bnxt: remove most dependencies on RTNL Stanislav Fomichev
2025-03-06 21:50 ` patchwork-bot+netdevbpf [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-02  0:08 [PATCH net-next v10 00/14] net: Hold netdev instance lock during ndo operations Stanislav Fomichev
2025-03-03  4:22 ` Lei Yang

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=174129785425.1790842.9872735858764773480.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=davem@davemloft.net \
    --cc=dw@davidwei.uk \
    --cc=edumazet@google.com \
    --cc=kuba@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=saeed@kernel.org \
    --cc=sdf@fomichev.me \
    /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;
as well as URLs for NNTP newsgroup(s).