netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Oleksij Rempel <o.rempel@pengutronix.de>
To: Andrew Lunn <andrew@lunn.ch>
Cc: "David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
	Woojung Huh <woojung.huh@microchip.com>,
	Andrew Lunn <andrew+netdev@lunn.ch>,
	kernel@pengutronix.de, linux-kernel@vger.kernel.org,
	netdev@vger.kernel.org, UNGLinuxDriver@microchip.com,
	Phil Elwell <phil@raspberrypi.org>
Subject: Re: [PATCH net-next v1 07/11] net: usb: lan78xx: Use ETIMEDOUT instead of ETIME in lan78xx_stop_hw
Date: Fri, 13 Dec 2024 15:37:54 +0100	[thread overview]
Message-ID: <Z1xGwllbEtrVO5-O@pengutronix.de> (raw)
In-Reply-To: <b7fa7a73-a1f1-4eeb-a97d-2ad25af0f0f5@lunn.ch>

On Tue, Dec 10, 2024 at 03:08:18AM +0100, Andrew Lunn wrote:
> On Mon, Dec 09, 2024 at 02:07:47PM +0100, Oleksij Rempel wrote:
> > Update `lan78xx_stop_hw` to return `-ETIMEDOUT` instead of `-ETIME` when
> > a timeout occurs. While `-ETIME` indicates a general timer expiration,
> > `-ETIMEDOUT` is more commonly used for signaling operation timeouts and
> > provides better consistency with standard error handling in the driver.
> > 
> > Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
> > ---
> >  drivers/net/usb/lan78xx.c | 4 +---
> >  1 file changed, 1 insertion(+), 3 deletions(-)
> > 
> > diff --git a/drivers/net/usb/lan78xx.c b/drivers/net/usb/lan78xx.c
> > index 2966f7e63617..c66e404f51ac 100644
> > --- a/drivers/net/usb/lan78xx.c
> > +++ b/drivers/net/usb/lan78xx.c
> > @@ -844,9 +844,7 @@ static int lan78xx_stop_hw(struct lan78xx_net *dev, u32 reg, u32 hw_enabled,
> >  		} while (!stopped && !time_after(jiffies, timeout));
> >  	}
> >  
> > -	ret = stopped ? 0 : -ETIME;
> > -
> > -	return ret;
> > +	return stopped ? 0 : -ETIMEDOUT;
> 
> I've not looked at the call stack, but tx_complete() and rx_complete()
> specifically looks for ETIME. Do they need to change as well?

No, the tx_complete() and rx_complete() will get error values in to the
urb->status from the USB stack. In this case it is a different ETIME.

I'll update commit message.

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

  reply	other threads:[~2024-12-13 14:38 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-09 13:07 [PATCH net-next v1 00/11] lan78xx: Preparations for PHYlink Oleksij Rempel
2024-12-09 13:07 ` [PATCH net-next v1 01/11] net: usb: lan78xx: Add error handling to lan78xx_setup_irq_domain Oleksij Rempel
2024-12-10  2:00   ` Andrew Lunn
2024-12-09 13:07 ` [PATCH net-next v1 02/11] net: usb: lan78xx: Add error handling to lan78xx_init_mac_address Oleksij Rempel
2024-12-10  2:01   ` Andrew Lunn
2024-12-09 13:07 ` [PATCH net-next v1 03/11] net: usb: lan78xx: Add error handling to lan78xx_set_mac_addr Oleksij Rempel
2024-12-10  2:02   ` Andrew Lunn
2024-12-09 13:07 ` [PATCH net-next v1 04/11] net: usb: lan78xx: Add error handling to lan78xx_get_regs Oleksij Rempel
2024-12-10  2:03   ` Andrew Lunn
2024-12-11  2:53   ` Jakub Kicinski
2024-12-09 13:07 ` [PATCH net-next v1 05/11] net: usb: lan78xx: Simplify lan78xx_update_reg Oleksij Rempel
2024-12-10  2:04   ` Andrew Lunn
2024-12-09 13:07 ` [PATCH net-next v1 06/11] net: usb: lan78xx: Fix return value handling in lan78xx_set_features Oleksij Rempel
2024-12-10  2:04   ` Andrew Lunn
2024-12-09 13:07 ` [PATCH net-next v1 07/11] net: usb: lan78xx: Use ETIMEDOUT instead of ETIME in lan78xx_stop_hw Oleksij Rempel
2024-12-10  2:08   ` Andrew Lunn
2024-12-13 14:37     ` Oleksij Rempel [this message]
2024-12-09 13:07 ` [PATCH net-next v1 08/11] net: usb: lan78xx: Use function-specific label in lan78xx_mac_reset Oleksij Rempel
2024-12-10  2:08   ` Andrew Lunn
2024-12-11  2:55   ` Jakub Kicinski
2024-12-09 13:07 ` [PATCH net-next v1 09/11] net: usb: lan78xx: Improve error handling in lan78xx_phy_wait_not_busy Oleksij Rempel
2024-12-10  2:11   ` Andrew Lunn
2024-12-09 13:07 ` [PATCH net-next v1 10/11] net: usb: lan78xx: Rename lan78xx_phy_wait_not_busy to lan78xx_mdiobus_wait_not_busy Oleksij Rempel
2024-12-10  2:12   ` Andrew Lunn
2024-12-09 13:07 ` [PATCH net-next v1 11/11] net: usb: lan78xx: Improve error handling in WoL operations Oleksij Rempel
2024-12-10  2:13   ` Andrew Lunn
2024-12-11  2:56   ` Jakub Kicinski
2024-12-11  2:52 ` [PATCH net-next v1 00/11] lan78xx: Preparations for PHYlink Jakub Kicinski
2024-12-11  3:00 ` 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=Z1xGwllbEtrVO5-O@pengutronix.de \
    --to=o.rempel@pengutronix.de \
    --cc=UNGLinuxDriver@microchip.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=andrew@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=kernel@pengutronix.de \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=phil@raspberrypi.org \
    --cc=woojung.huh@microchip.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;
as well as URLs for NNTP newsgroup(s).