From: Ido Schimmel Date: Thu, 7 May 2026 10:59:03 +0000 (+0300) Subject: net: Set dev->proto_down before changing carrier state X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04bb6595b55a1e262a4a833b065b8a42ddab915c;p=thirdparty%2Flinux.git net: Set dev->proto_down before changing carrier state A subsequent patch will make netif_carrier_on() a NOP for net devices that have protodown turned on so that they will not accidentally gain carrier. As a preparation, set dev->proto_down before calling netif_carrier_{off,on}(). Note that the only driver that supports protodown and has a notion of a carrier is macvlan and it is calling netif_carrier_{off,on}() with RTNL held. No functional changes intended. Signed-off-by: Ido Schimmel Link: https://patch.msgid.link/20260507105906.891817-2-idosch@nvidia.com Signed-off-by: Jakub Kicinski --- diff --git a/net/core/dev.c b/net/core/dev.c index 8bfa8313ef62..02d16be3457b 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -10147,11 +10147,11 @@ int netif_change_proto_down(struct net_device *dev, bool proto_down) return -EOPNOTSUPP; if (!netif_device_present(dev)) return -ENODEV; + WRITE_ONCE(dev->proto_down, proto_down); if (proto_down) netif_carrier_off(dev); else netif_carrier_on(dev); - WRITE_ONCE(dev->proto_down, proto_down); return 0; }