From: Florian Westphal <fw@strlen.de>
To: Stanislav Fomichev <stfomichev@gmail.com>
Cc: netdev@vger.kernel.org, Paolo Abeni <pabeni@redhat.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>,
linux-kernel@vger.kernel.org, sdf@fomichev.me
Subject: Re: [PATCH net 2/2] net: core: split unregister_netdevice list into smaller chunks
Date: Sat, 11 Oct 2025 16:30:06 +0200 [thread overview]
Message-ID: <aOpp7n2E9ZVS6RJh@strlen.de> (raw)
In-Reply-To: <aOmK5i5e_Oi93JiO@mini-arch>
Stanislav Fomichev <stfomichev@gmail.com> wrote:
> On 10/10, Florian Westphal wrote:
> > +static void unregister_netdevice_close_many_lockdep(struct list_head *head)
> > +{
> > +#ifdef CONFIG_LOCKDEP
> > + unsigned int lock_depth = lockdep_depth(current);
> > + unsigned int lock_count = lock_depth;
> > + struct net_device *dev, *tmp;
> > + LIST_HEAD(done_head);
> > +
> > + list_for_each_entry_safe(dev, tmp, head, unreg_list) {
> > + if (netdev_need_ops_lock(dev))
> > + lock_count++;
> > +
> > + /* we'll run out of lockdep keys, reduce size. */
> > + if (lock_count >= MAX_LOCK_DEPTH - 1) {
> > + LIST_HEAD(tmp_head);
> > +
> > + list_cut_before(&tmp_head, head, &dev->unreg_list);
> > + unregister_netdevice_close_many(&tmp_head);
> > + lock_count = lock_depth;
> > + list_splice_tail(&tmp_head, &done_head);
> > + }
> > + }
> > +
> > + unregister_netdevice_close_many(head);
> > +
> > + list_for_each_entry_safe_reverse(dev, tmp, &done_head, unreg_list)
> > + list_move(&dev->unreg_list, head);
> > +#else
> > + unregister_netdevice_close_many(head);
> > +#endif
>
>
> Any reason not to morph the original code to add this 'no more than 8 at a
> time' constraint? Having a separate lockdep path with list juggling
> seems a bit fragile.
>
> 1. add all ops locked devs to the list
> 2. for each MAX_LOCK_DEPTH (or 'infinity' in the case of non-lockdep)
> 2.1 lock N devs
> 2.2 netif_close_many
> 2.3 unlock N devs
> 3. ... do the non-ops-locked ones
>
> This way the code won't diverge too much I hope.
I think that having extra code for LOCKDEP (which means debug kernel
that often also includes k?san, kmemleak etc. is ok.
I was more concerned with having no changes to normal (non-lockdep)
kernel.
Let me try again, I tried to do your solution above before going with
this extra lockdep-only juggling but I ended up making a mess.
prev parent reply other threads:[~2025-10-11 14:30 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-10 13:54 [PATCH net 0/2] net: avoid LOCKDEP MAX_LOCK_DEPTH splat Florian Westphal
2025-10-10 13:54 ` [PATCH net 1/2] net: core: move unregister_many inner loops to a helper Florian Westphal
2025-10-10 13:54 ` [PATCH net 2/2] net: core: split unregister_netdevice list into smaller chunks Florian Westphal
2025-10-10 22:38 ` Stanislav Fomichev
2025-10-11 14:30 ` Florian Westphal [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=aOpp7n2E9ZVS6RJh@strlen.de \
--to=fw@strlen.de \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=sdf@fomichev.me \
--cc=stfomichev@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.