[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <970325157b7598b6367c293380cace3624e6cb88.camel@gmail.com>
Date: Sat, 04 Nov 2023 17:32:19 +0100
From: Klaus Kudielka <klaus.kudielka@...il.com>
To: Andrew Lunn <andrew@...n.ch>
Cc: Pavel Machek <pavel@....cz>, Lee Jones <lee@...nel.org>,
Christian Marangi <ansuelsmth@...il.com>,
"David S . Miller" <davem@...emloft.net>,
Jakub Kicinski <kuba@...nel.org>,
Samuel Holland <samuel@...lland.org>,
Jisheng Zhang <jszhang@...nel.org>,
Li Zetao <lizetao1@...wei.com>, linux-leds@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] leds: triggers: netdev: add a check, whether device is
up
On Sat, 2023-11-04 at 16:27 +0100, Klaus Kudielka wrote:
>
> phylink_start() is the first one that does netif_carrier_off() and thus
> sets the NOCARRIER bit, but that only happens when bringing the device up.
>
> Before that, I would not know who cares about setting the NOCARRIER bit.
A different, driver-specific solution could be like this (tested and working):
--- a/drivers/net/ethernet/marvell/mvneta.c
+++ b/drivers/net/ethernet/marvell/mvneta.c
@@ -5690,6 +5690,7 @@ static int mvneta_probe(struct platform_device *pdev)
/* 9676 == 9700 - 20 and rounding to 8 */
dev->max_mtu = 9676;
+ netif_carrier_off(dev);
err = register_netdev(dev);
if (err < 0) {
dev_err(&pdev->dev, "failed to register\n");
Would that be the "correct" approach?
Regards, Klaus
Powered by blists - more mailing lists