From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CA469C47088 for ; Thu, 1 Dec 2022 17:55:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229817AbiLARzj (ORCPT ); Thu, 1 Dec 2022 12:55:39 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49958 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229811AbiLARz3 (ORCPT ); Thu, 1 Dec 2022 12:55:29 -0500 Received: from metis.ext.pengutronix.de (metis.ext.pengutronix.de [IPv6:2001:67c:670:201:290:27ff:fe1d:cc33]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A13082714D for ; Thu, 1 Dec 2022 09:55:28 -0800 (PST) Received: from dude02.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::28]) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1p0nmQ-0001ds-Lc; Thu, 01 Dec 2022 18:55:26 +0100 From: Lucas Stach To: linux-usb@vger.kernel.org, netdev@vger.kernel.org Cc: "David S . Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , kernel@pengutronix.de, patchwork-lst@pengutronix.de Subject: [PATCH 2/2] net: asix: Avoid looping when the device is diconnected Date: Thu, 1 Dec 2022 18:55:25 +0100 Message-Id: <20221201175525.2733125-2-l.stach@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20221201175525.2733125-1-l.stach@pengutronix.de> References: <20221201175525.2733125-1-l.stach@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SA-Exim-Connect-IP: 2a0a:edc0:0:1101:1d::28 X-SA-Exim-Mail-From: l.stach@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: netdev@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org We've seen device access fail with -EPROTO when the device has been recently disconnected and before the USB core had a chance to handle the disconnect hub event. It doesn't make sense to continue on trying to enable host access when the adapter is gone. Signed-off-by: Lucas Stach --- drivers/net/usb/asix_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/usb/asix_common.c b/drivers/net/usb/asix_common.c index be1e103b7a95..28b31e4da020 100644 --- a/drivers/net/usb/asix_common.c +++ b/drivers/net/usb/asix_common.c @@ -96,7 +96,7 @@ static int asix_check_host_enable(struct usbnet *dev, int in_pm) for (i = 0; i < AX_HOST_EN_RETRIES; ++i) { ret = asix_set_sw_mii(dev, in_pm); - if (ret == -ENODEV || ret == -ETIMEDOUT) + if (ret == -ENODEV || ret == -ETIMEDOUT || ret == -EPROTO) break; usleep_range(1000, 1100); ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG, -- 2.30.2