Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp21570046ybl; Mon, 6 Jan 2020 07:09:45 -0800 (PST) X-Google-Smtp-Source: APXvYqx2Ce/5E9zC9dyDOH26Sk7KCTNlE5+sHpsDqh2aI4oQJVwlU0W0172AnUU+DrWyhz45+/Eg X-Received: by 2002:a9d:67c1:: with SMTP id c1mr81611322otn.161.1578323385873; Mon, 06 Jan 2020 07:09:45 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1578323385; cv=none; d=google.com; s=arc-20160816; b=p1vcapjHy4MrDtjQhylBEpGg1JqQaKaNAqfoqvaF8prWCluMQktUHuv8nRWePpUUFb S/rsyE4K+Wj0akOXajDnj/lubUXzQQ4xSNzBd7Usz9xAYfjRqydSY0KjRFbuY4/89Srv REpSs0QPJtHPcMCnXerLI0Bg+DMb+dL9Qa/ngqBvLOIYAB+FpMiSbepbX5dEHSa/2sle 6WCQadGwbPlJPeyRlzrfX5sNcjXrXXS654E6OQneosKsHA3bshWXTMt7C6mHfsO6eMvD iYo1O05ecSnwbUf+CGxTInIf+mmJyMPN8IMu0PLWYMNoiQRRmM1DzD5sXD/rojJFhTxG MflQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:in-reply-to :subject:cc:to:from:date; bh=gOsZmTT7q4zxvL+Fen0SMJ7sttvQ+wV2bvh8Xc/1fv4=; b=hsOtMBoI+PNYA74QZrpDYc02oAkk0FLppRhX5L9GFiyqcsSC5pDcuQjfZsqvweqsV0 s9hp7eTihMNo2yFUzpkaaLl4daC/b7mQmTO1XS7pZPyPqCuMBIt7pI4HVWOfIxJAx5N5 Sn9NqrvQCUkcAQXOGbCgCyKoSmQHKDh2v13TUuEnLjBp8Za7wr2e289/9TOFXBLuEYq/ ZMSU6tPfQEDOAc7feShA8440i951E8qP9wGP45dKUPgRQyLdr4uYy8X+uq++qTwfkJc6 +CeSLneOm6OelIqLHUCL7BQssoYh6sHKqBgQ3fSWpgwSBN03D66xJZ9dg/9nxv8oTC1I MqLQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id q12si5144334otr.183.2020.01.06.07.09.33; Mon, 06 Jan 2020 07:09:45 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726636AbgAFPIo (ORCPT + 99 others); Mon, 6 Jan 2020 10:08:44 -0500 Received: from iolanthe.rowland.org ([192.131.102.54]:53008 "HELO iolanthe.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1726296AbgAFPIo (ORCPT ); Mon, 6 Jan 2020 10:08:44 -0500 Received: (qmail 1584 invoked by uid 2102); 6 Jan 2020 10:08:42 -0500 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 6 Jan 2020 10:08:42 -0500 Date: Mon, 6 Jan 2020 10:08:42 -0500 (EST) From: Alan Stern X-X-Sender: stern@iolanthe.rowland.org To: Kai-Heng Feng cc: Mathias Nyman , , , , Subject: Re: [PATCH 3/3] USB: Disable LPM on WD19's Realtek Hub during setting its ports to U0 In-Reply-To: <90B37743-30D1-41BB-8272-D5FBDC89C88F@canonical.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 6 Jan 2020, Kai-Heng Feng wrote: > > On Jan 5, 2020, at 00:20, Alan Stern wrote: > > > > On Sat, 4 Jan 2020, Kai-Heng Feng wrote: > > > >>>>>> @@ -3533,9 +3533,17 @@ int usb_port_resume(struct usb_device *udev, pm_message_t msg) > >>>>>> } > >>>>>> > >>>>>> /* see 7.1.7.7; affects power usage, but not budgeting */ > >>>>>> - if (hub_is_superspeed(hub->hdev)) > >>>>>> + if (hub_is_superspeed(hub->hdev)) { > >>>>>> + if (hub->hdev->quirks & USB_QUIRK_DISABLE_LPM_ON_U0) { > >>>>>> + usb_lock_device(hub->hdev); > >>>>>> + usb_unlocked_disable_lpm(hub->hdev); > >>>>>> + } > >>>>>> status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0); > >>>>>> - else > >>>>>> + if (hub->hdev->quirks & USB_QUIRK_DISABLE_LPM_ON_U0) { > >>>>>> + usb_unlocked_enable_lpm(hub->hdev); > >>>>>> + usb_unlock_device(hub->hdev); > >>>>> > >>>>> The locking here seems questionable. Doesn't this code sometimes get > >>>>> called with the hub already locked? Or with the child device locked > >>>>> (in which case locking the hub would violate the normal locking order: > >>>>> parent first, child second)? > >>> > >>> I did a little checking. In many cases the child device _will_ be > >>> locked at this point. > >>> > >>>> Maybe introduce a new lock? The lock however will only be used by this specific hub. > >>>> But I still want the LPM can be enabled for this hub. > >>> > >>> Do you really need to lock the hub at all? What would the lock protect > >>> against? > >> > >> There can be multiple usb_port_resume() run at the same time for different ports, so this is to prevent LPM enable/disable race. > > > > But there can't really be an LPM enable/disable race, can there? The > > individual function calls are protected by the bandwidth mutex taken by > > the usb_unlocked_{en|dis}able_lpm routines, and the overall LPM setting > > is controlled by the hub device's lpm_disable_counter. > > For enable/disable LPM itself, there's no race. > But the lock here is to protect hub_set_port_link_state(). > If we don't lock the hub, other instances of usb_port_resume() > routine can enable LPM and we want the LPM stays disabled until > hub_set_port_link_state() is done. That's what I was trying to explain above. Other instances of usb_port_resume() _can't_ enable LPM while this instance is running, because the lpm_disable_counter value will be > 0. Alan Stern