From: Fernando Fernandez Mancera <fmancera@suse.de>
To: Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org, tgraf@infradead.org, horms@kernel.org,
pabeni@redhat.com, edumazet@google.com, dsahern@kernel.org,
davem@davemloft.net
Subject: Re: [PATCH net v3] ipv4: bump rt_genid when a relevant devconf value changes through netlink
Date: Wed, 4 Mar 2026 10:03:37 +0100 [thread overview]
Message-ID: <e773e5dc-b08c-4bc4-bfd6-95b6134e344a@suse.de> (raw)
In-Reply-To: <20260303183843.5b29d5b0@kernel.org>
On 3/4/26 3:38 AM, Jakub Kicinski wrote:
> On Mon, 2 Mar 2026 14:08:57 +0100 Fernando Fernandez Mancera wrote:
>> + switch (nla_type(a)) {
>> + case IPV4_DEVCONF_FORWARDING:
>> + if (nla_get_u32(a))
>> + netif_disable_lro(dev);
>
> why not dev_disable_lro()??
dev_disable_lro() takes netdev_lock_ops() but when handling IFLA_AF_SPEC
at net/core/rtnetlink.c:3320 we are already holding netdev lock ops. So
we need to call netif_disable_lro() instead.
>
>> + fallthrough;
>> + case IPV4_DEVCONF_NOXFRM:
>> + case IPV4_DEVCONF_NOPOLICY:
>> + case IPV4_DEVCONF_PROMOTE_SECONDARIES:
>> + case IPV4_DEVCONF_ROUTE_LOCALNET:
>> + case IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST:
>> + flush_cache = true;
>> + break;
>> + default:
>> + break;
>> + }
>> + }
>> + if (flush_cache)
>> + rt_cache_flush(net);
>> }
>
> Looking closer at this I'm struggling to connect this to
> devinet_conf_proc(). The attrs you're snooping here are completely different!?
> Logic for when rt_cache_flush() happens is different.
>
So I was planning to to handle inet_netconf_notify_devconf() calls in a
follow-up patch to net-next because it might require some more changes
and also the missing notification shouldn't be net tree material IMHO.
This is handling ipv4_doint_and_flush() which is used by
DEVINET_SYSCTL_FLUSHING_ENTRY() macro. But now that you mention it,
BC_FORWARDING and ACCEPT_LOCAL are part of devinet_conf_proc() while
they probably could go to ipv4_doint_and_flush().
In addition, I guess we should flush the cache only if the value
changed. I will add that bit too.
P.S: there is also dead code in devinet_conf_proc() as `i ==
IPV4_DEVCONF_ROUTE_LOCALNET - 1` won't never evaluate as true.
Thanks,
Fernando.
> inet_netconf_notify_devconf() is missing even after the patch.
next prev parent reply other threads:[~2026-03-04 9:03 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-02 13:08 [PATCH net v3] ipv4: bump rt_genid when a relevant devconf value changes through netlink Fernando Fernandez Mancera
2026-03-04 2:38 ` Jakub Kicinski
2026-03-04 9:03 ` Fernando Fernandez Mancera [this message]
2026-03-04 18:52 ` Jakub Kicinski
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=e773e5dc-b08c-4bc4-bfd6-95b6134e344a@suse.de \
--to=fmancera@suse.de \
--cc=davem@davemloft.net \
--cc=dsahern@kernel.org \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=tgraf@infradead.org \
/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.