Received: by 2002:a05:6a10:206:0:0:0:0 with SMTP id 6csp379162pxj; Fri, 7 May 2021 10:33:33 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzaPnMdY+gO4gbwtk4qap7JB3FpoX6mWhkZtlTE5Vv2mSPQKvbYdlXHvVGnfu5oZ4n31gL1 X-Received: by 2002:a17:90b:2394:: with SMTP id mr20mr11147142pjb.167.1620408812875; Fri, 07 May 2021 10:33:32 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1620408812; cv=none; d=google.com; s=arc-20160816; b=OPjLkLkisqR5kyC1nQ54iwp21X8WVQ9Np92g84OnNjnxs/9ceu8HVeGdrMU7I0LFpd 5A32CU9qs+jd5tXwbjaDjf2lbv/BaFDC+3eRiqwHZ9V/L0YC45qwRT/Nirl/LOvUgOkw u+fWsYrEXmudujbc+M9v2tJvTKMs87zMV3HdG7gqiITnrSdTzllL7IAKLJ1nVE3jd0Ep J7hPfGxPbuHDSzvGYQ1xsm4rvwGTQphado1gJpYnOn4J5n9Cz/M6N2nuhvstEzyqFp3O n7DM1BybAaUwZfY4JoAMpRyOkdE8CE70fL5zNqoXt/BSQKCrQJxWGkyfT8LtiYufPZtg wwZQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=gu/Oko8NF+Sot/ZPGB5mkhPKj9Idp5sZMsBSDjBSx0U=; b=MklpvWisvY+H2AbPpjhkRIZ0DLaLt7VVzMvqOlj0hnNl79kHNX63oKZkzoeJiiGaa/ IBeM1GId+2WlRMhDNvdJhfsYVIaDJPGNtmnJXyx3kIA3Zt+Q4fd1qsN2VGCgh65yjMn+ W7Zt4H6A7u4Sx9eQeq6wGgncX7/XidwlPAVTpD4fPp0OLrFsyd2o1/7M1oT6FVHvwtSs zmv7WF20roFUVl9YjRM69uSBeInjnSQjr8iuCGTVaIJ9MzT1jcncj5kMga/mNjB5wsaa xyacv3ZRhFVqe83kVMeR3twHJq9tGyBL60IEQ7FY6u6d2lyQxOcStpZ3L7RBSmKb55B6 Q+8g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id r64si8029262pfc.234.2021.05.07.10.33.21; Fri, 07 May 2021 10:33:32 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236269AbhEGQAJ (ORCPT + 99 others); Fri, 7 May 2021 12:00:09 -0400 Received: from netrider.rowland.org ([192.131.102.5]:59983 "HELO netrider.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S231130AbhEGQAI (ORCPT ); Fri, 7 May 2021 12:00:08 -0400 Received: (qmail 780607 invoked by uid 1000); 7 May 2021 11:59:08 -0400 Date: Fri, 7 May 2021 11:59:08 -0400 From: Alan Stern To: chris.chiu@canonical.com Cc: gregkh@linuxfoundation.org, m.v.b@runbox.com, hadess@hadess.net, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] USB: reset-resume the device when PORT_SUSPEND is set but timeout Message-ID: <20210507155908.GB776548@rowland.harvard.edu> References: <20210507093329.895-1-chris.chiu@canonical.com> <20210507093329.895-2-chris.chiu@canonical.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210507093329.895-2-chris.chiu@canonical.com> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, May 07, 2021 at 05:33:28PM +0800, chris.chiu@canonical.com wrote: > From: Chris Chiu > > On the Realtek hub of Dell Dock WD19, the port which has wakeup > enabled descendants will sometimes timeout when setting PORT_SUSPEND > feature. After checking the PORT_SUSPEND bit in wPortStatus, it is > already set. However, the hub will fail to activate because the > PORT_SUSPEND feature of that port is not cleared during resume. All > devices connecting via the port are lost after resume. > > This commit force reset-resume the device connected to the timeout > but suspended port so that the hub will have chance to clear the > PORT_SUSPEND feature during resume. > > Signed-off-by: Chris Chiu > --- > drivers/usb/core/hub.c | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) > > diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c > index b2bc4b7c4289..18603949a8de 100644 > --- a/drivers/usb/core/hub.c > +++ b/drivers/usb/core/hub.c > @@ -3385,6 +3385,21 @@ int usb_port_suspend(struct usb_device *udev, pm_message_t msg) > status = 0; > } > if (status) { > + if (status == -ETIMEDOUT) { > + u16 portstatus, portchange; > + > + status = hub_port_status(hub, port1, &portstatus, > + &portchange); Don't reuse status like this. There will be a problem if this line sets status to 0 but the port isn't actually suspended. Use a different variable instead. Alan Stern > + > + dev_dbg(&port_dev->dev, > + "suspend timeout, status %04x\n", portstatus); > + > + if (status == 0 && port_is_suspended(hub, portstatus)) { > + udev->reset_resume = 1; > + goto err_wakeup; > + } > + } > + > dev_dbg(&port_dev->dev, "can't suspend, status %d\n", status); > > /* Try to enable USB3 LTM again */ > -- > 2.20.1 >