mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Siddharth Vadapalli <s-vadapalli@ti.com>
To: Paolo Abeni <pabeni@redhat.com>
Cc: <davem@davemloft.net>, <kuba@kernel.org>, <linux@armlinux.org.uk>,
	<netdev@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	<kishon@ti.com>, <vigneshr@ti.com>, <grygorii.strashko@ti.com>,
	<s-vadapalli@ti.com>
Subject: Re: [PATCH net v3] net: ethernet: ti: am65-cpsw: Fix devlink port register sequence
Date: Thu, 7 Jul 2022 14:41:35 +0530	[thread overview]
Message-ID: <5d06687a-17f1-4d5c-7d3f-83d11e5ec2e7@ti.com> (raw)
In-Reply-To: <e454f6de32de3be092260d19da24f58635eb6e49.camel@redhat.com>

Hello Paolo,

On 07/07/22 13:00, Paolo Abeni wrote:
> On Wed, 2022-07-06 at 12:32 +0530, Siddharth Vadapalli wrote:
>> Renaming interfaces using udevd depends on the interface being registered
>> before its netdev is registered. Otherwise, udevd reads an empty
>> phys_port_name value, resulting in the interface not being renamed.
>>
>> Fix this by registering the interface before registering its netdev
>> by invoking am65_cpsw_nuss_register_devlink() before invoking
>> register_netdev() for the interface.
>>
>> Move the function call to devlink_port_type_eth_set(), invoking it after
>> register_netdev() is invoked, to ensure that netlink notification for the
>> port state change is generated after the netdev is completely initialized.
>>
>> Fixes: 58356eb31d60 ("net: ti: am65-cpsw-nuss: Add devlink support")
>> Signed-off-by: Siddharth Vadapalli <s-vadapalli@ti.com>
>> ---
>> Changelog:
>> v2 -> v3:
>> 1. Add error handling to unregister devlink.
>>
>> v1-> v2:
>> 1. Add Fixes tag in commit message.
>> 2. Update patch subject to include "net".
>> 3. Invoke devlink_port_type_eth_set() after register_netdev() is called.
>> 4. Update commit message describing the cause for moving the call to
>>    devlink_port_type_eth_set().
>>
>> v2: https://lore.kernel.org/r/20220704073040.7542-1-s-vadapalli@ti.com/
>> v1: https://lore.kernel.org/r/20220623044337.6179-1-s-vadapalli@ti.com/
>>
>>  drivers/net/ethernet/ti/am65-cpsw-nuss.c | 17 ++++++++++-------
>>  1 file changed, 10 insertions(+), 7 deletions(-)
>>
>> diff --git a/drivers/net/ethernet/ti/am65-cpsw-nuss.c b/drivers/net/ethernet/ti/am65-cpsw-nuss.c
>> index fb92d4c1547d..f4a6b590a1e3 100644
>> --- a/drivers/net/ethernet/ti/am65-cpsw-nuss.c
>> +++ b/drivers/net/ethernet/ti/am65-cpsw-nuss.c
>> @@ -2467,7 +2467,6 @@ static int am65_cpsw_nuss_register_devlink(struct am65_cpsw_common *common)
>>  				port->port_id, ret);
>>  			goto dl_port_unreg;
>>  		}
>> -		devlink_port_type_eth_set(dl_port, port->ndev);
>>  	}
>>  	devlink_register(common->devlink);
>>  	return ret;
>> @@ -2511,6 +2510,7 @@ static void am65_cpsw_unregister_devlink(struct am65_cpsw_common *common)
>>  static int am65_cpsw_nuss_register_ndevs(struct am65_cpsw_common *common)
>>  {
>>  	struct device *dev = common->dev;
>> +	struct devlink_port *dl_port;
>>  	struct am65_cpsw_port *port;
>>  	int ret = 0, i;
>>  
>> @@ -2527,6 +2527,10 @@ static int am65_cpsw_nuss_register_ndevs(struct am65_cpsw_common *common)
>>  		return ret;
>>  	}
>>  
>> +	ret = am65_cpsw_nuss_register_devlink(common);
>> +	if (ret)
>> +		return ret;
>> +
>>  	for (i = 0; i < common->port_num; i++) {
>>  		port = &common->ports[i];
>>  
>> @@ -2539,25 +2543,24 @@ static int am65_cpsw_nuss_register_ndevs(struct am65_cpsw_common *common)
>>  				i, ret);
>>  			goto err_cleanup_ndev;
>>  		}
>> +
>> +		dl_port = &port->devlink_port;
>> +		devlink_port_type_eth_set(dl_port, port->ndev);
>>  	}
>>  
>>  	ret = am65_cpsw_register_notifiers(common);
>>  	if (ret)
>>  		goto err_cleanup_ndev;
>>  
>> -	ret = am65_cpsw_nuss_register_devlink(common);
>> -	if (ret)
>> -		goto clean_unregister_notifiers;
>> -
>>  	/* can't auto unregister ndev using devm_add_action() due to
>>  	 * devres release sequence in DD core for DMA
>>  	 */
>>  
>>  	return 0;
>> -clean_unregister_notifiers:
>> -	am65_cpsw_unregister_notifiers(common);
>> +
>>  err_cleanup_ndev:
>>  	am65_cpsw_nuss_cleanup_ndev(common);
>> +	am65_cpsw_unregister_devlink(common);
> 
> It looks strange that there is no error path leading to
> am65_cpsw_unregister_devlink() only.
> 
> Why we don't need to call it when/if devm_request_irq() fails? 

am65_cpsw_nuss_register_devlink() is invoked after devm_request_irq() and
devm_request_irq()'s associated error handling.

> 
> Not strictly related to this patch, but it looks like there is another
> suspect cleanup point: if a 'register_netdev()' call fails, the cleanup
> code will still call unregister_netdev() on the relevant device and the
> later ones, hitting a WARN_ON(1) in unregister_netdevice_many().

Thank you for pointing it out. I will look at it and address it in a separate
cleanup patch.

Regards,
Siddharth.

  reply	other threads:[~2022-07-07  9:11 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-06  7:02 Siddharth Vadapalli
2022-07-07  7:30 ` Paolo Abeni
2022-07-07  9:11   ` Siddharth Vadapalli [this message]
2022-07-07 11:35     ` Paolo Abeni
2022-07-08  0:30 ` patchwork-bot+netdevbpf

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=5d06687a-17f1-4d5c-7d3f-83d11e5ec2e7@ti.com \
    --to=s-vadapalli@ti.com \
    --cc=davem@davemloft.net \
    --cc=grygorii.strashko@ti.com \
    --cc=kishon@ti.com \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=vigneshr@ti.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

all inboxes | Powered by JetHome®