public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
From: Vladimir Oltean <vladimir.oltean@nxp.com>
To: Shenwei Wang <shenwei.wang@nxp.com>
Cc: Claudiu Manoil <claudiu.manoil@nxp.com>,
	Wei Fang <wei.fang@nxp.com>, Clark Wang <xiaoning.wang@nxp.com>,
	Andrew Lunn <andrew+netdev@lunn.ch>,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
	imx@lists.linux.dev, netdev@vger.kernel.org, linux-imx@nxp.com
Subject: Re: [PATCH net-next] net: enetc: Support ethernet aliases in dts.
Date: Wed, 26 Feb 2025 17:47:53 +0200	[thread overview]
Message-ID: <20250226154753.soq575mvzquovufd@skbuf> (raw)
In-Reply-To: <20250225214458.658993-1-shenwei.wang@nxp.com> <20250225214458.658993-1-shenwei.wang@nxp.com>

On Tue, Feb 25, 2025 at 03:44:58PM -0600, Shenwei Wang wrote:
> Retrieve the "ethernet" alias ID from the DTS and assign it as the
> interface name (e.g., "eth0", "eth1"). This ensures predictable naming
> aligned with the DTS's configuration.
> 
> If no alias is defined, fall back to the kernel's default enumeration
> to maintain backward compatibility.
> 
> Signed-off-by: Shenwei Wang <shenwei.wang@nxp.com>
> ---
>  drivers/net/ethernet/freescale/enetc/enetc4_pf.c | 14 ++++++++++++--
>  1 file changed, 12 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/ethernet/freescale/enetc/enetc4_pf.c b/drivers/net/ethernet/freescale/enetc/enetc4_pf.c
> index fc41078c4f5d..5ec8dc59e809 100644
> --- a/drivers/net/ethernet/freescale/enetc/enetc4_pf.c
> +++ b/drivers/net/ethernet/freescale/enetc/enetc4_pf.c
> @@ -622,10 +622,20 @@ static int enetc4_pf_netdev_create(struct enetc_si *si)
>  	struct device *dev = &si->pdev->dev;
>  	struct enetc_ndev_priv *priv;
>  	struct net_device *ndev;
> +	char ifname[IFNAMSIZ];
>  	int err;
>  
> -	ndev = alloc_etherdev_mqs(sizeof(struct enetc_ndev_priv),
> -				  si->num_tx_rings, si->num_rx_rings);
> +	err = of_alias_get_id(dev->of_node, "ethernet");
> +	if (err >= 0) {
> +		snprintf(ifname, IFNAMSIZ, "eth%d", err);
> +		ndev = alloc_netdev_mqs(sizeof(struct enetc_ndev_priv),
> +					ifname, NET_NAME_PREDICTABLE, ether_setup,
> +					si->num_tx_rings, si->num_rx_rings);
> +	} else {
> +		ndev = alloc_etherdev_mqs(sizeof(struct enetc_ndev_priv),
> +					  si->num_tx_rings, si->num_rx_rings);
> +	}
> +
>  	if (!ndev)
>  		return  -ENOMEM;
>  

Shenwei, you don't want the kernel to attempt to be very smart about the
initial netdev naming. You will inevitably run into the situation where
"eth%d" is already the name chosen for the kernel for a different
net_device without a predictable name (e.g. e1000e PCIe card) which has
been allocated already. Then you'll want to fix that somehow, and the
stream of patches will never stop, because the kernel will never be able
to fulfill all requirements. Look at the udev naming rules for dpaa2 and
enetc on Layerscape and build something like that. DSA switch included -
the "label" device tree property is considered legacy.

Nacked-by: Vladimir Oltean <vladimir.oltean@nxp.com>

  parent reply	other threads:[~2025-02-26 15:47 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-25 21:44 [PATCH net-next] net: enetc: Support ethernet aliases in dts Shenwei Wang
2025-02-26 14:57 ` Andrew Lunn
2025-02-26 15:07   ` Shenwei Wang
2025-02-26 15:10     ` Vladimir Oltean
2025-02-26 15:47 ` Vladimir Oltean [this message]
2025-02-26 16:46   ` Shenwei Wang
2025-02-26 17:10     ` Vladimir Oltean
2025-02-26 17:43       ` Shenwei Wang
2025-02-26 20:02         ` Vladimir Oltean

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=20250226154753.soq575mvzquovufd@skbuf \
    --to=vladimir.oltean@nxp.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=claudiu.manoil@nxp.com \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=imx@lists.linux.dev \
    --cc=kuba@kernel.org \
    --cc=linux-imx@nxp.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=shenwei.wang@nxp.com \
    --cc=wei.fang@nxp.com \
    --cc=xiaoning.wang@nxp.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox