Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp515786pxf; Thu, 25 Mar 2021 08:33:45 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxNMljZTZPt6FSkePqFhQ4KJgUCxYIgTcFAt65HbERKRWFNdPIEqSWeNw00MvkvzyB6XdQ3 X-Received: by 2002:a17:906:52d0:: with SMTP id w16mr10038059ejn.172.1616686424877; Thu, 25 Mar 2021 08:33:44 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1616686424; cv=none; d=google.com; s=arc-20160816; b=RncCrDknasmCouAvxtRCf9DRwatFZDrZ/75+C2ShxV70ixgaxX4ZQxI30XyEKCWLGj RB8L2Cl8r8saaWEiATQYQ1hBBVgAeJuKIO9cBlqN2LGrb9cwA+fCSFiamILAts0ondxb lsuZswJQEwIo512Zscw03YEiaVDUhWcmeMjzm0VULNuwW9oqmVmCVGhMcFgjYeRL9oZs zmOwzIbTtJmNQBLwyHdAW5HWcsZpZ0qe7ixJDeHFZTmqXLUF5SNc51jMZaovymGqK5kK F+I1IxqSdfceedMyW/QuVB7846J8wpT3GQK/gMBhnQsVRnM081X4XRWWDquTg4eyI6yX g13w== 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=6VdnYpoOyr12mJf1Ypq46HRKt3B9pWCsMah74HMkpm0=; b=qQa+IKJ0bReGVX4Z+jjX7z24kbRs7AzMz8ctFQLAusVVal7jOvegjoL0twMpefC9nW YdEZWQuLooGye5o+8BMfu9eBqCTRJABlv+XnQGrIc/At+5a8yF/f93Nl0qDAQv2ZDNwh iDL14p6kfqMSeQ8H8D0eMs71XzX0SBgPoLcAhOsaQMfRBJsuz57jeTT3t5m/hXVMHyM9 W4f/bB8jCEx8zMNIajpgNvabnxI2u8q80KGxEbhxQlmVWCUlT+KjomMjiTD4n+kzqhEs ymURnayjHRnjZ7iwCUrm0GpB2thz6lVwCoqDIt4hOaautZD40lBXFDZ68PNK4aLSk6SU h6zQ== 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 j3si4378324eds.542.2021.03.25.08.33.20; Thu, 25 Mar 2021 08:33:44 -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 S231330AbhCYPcQ (ORCPT + 99 others); Thu, 25 Mar 2021 11:32:16 -0400 Received: from netrider.rowland.org ([192.131.102.5]:56693 "HELO netrider.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S231278AbhCYPbl (ORCPT ); Thu, 25 Mar 2021 11:31:41 -0400 Received: (qmail 792712 invoked by uid 1000); 25 Mar 2021 11:31:39 -0400 Date: Thu, 25 Mar 2021 11:31:39 -0400 From: Alan Stern To: Heikki Krogerus Cc: Greg Kroah-Hartman , Benson Leung , Prashant Malani , Guenter Roeck , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/6] usb: Iterator for ports Message-ID: <20210325153139.GA792030@rowland.harvard.edu> References: <20210325122926.58392-1-heikki.krogerus@linux.intel.com> <20210325122926.58392-2-heikki.krogerus@linux.intel.com> <20210325144109.GB785961@rowland.harvard.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Mar 25, 2021 at 05:14:42PM +0200, Heikki Krogerus wrote: > On Thu, Mar 25, 2021 at 10:41:09AM -0400, Alan Stern wrote: > > On Thu, Mar 25, 2021 at 03:29:21PM +0300, Heikki Krogerus wrote: > > > Introducing usb_for_each_port(). It works the same way as > > > usb_for_each_dev(), but instead of going through every USB > > > device in the system, it walks through the USB ports in the > > > system. > > > > > > Signed-off-by: Heikki Krogerus > > > > This has a couple of nasty errors. > > > > > --- > > > drivers/usb/core/usb.c | 43 ++++++++++++++++++++++++++++++++++++++++++ > > > include/linux/usb.h | 1 + > > > 2 files changed, 44 insertions(+) > > > > > > diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c > > > index 2ce3667ec6fae..6d49db9a1b208 100644 > > > --- a/drivers/usb/core/usb.c > > > +++ b/drivers/usb/core/usb.c > > > @@ -398,6 +398,49 @@ int usb_for_each_dev(void *data, int (*fn)(struct usb_device *, void *)) > > > } > > > EXPORT_SYMBOL_GPL(usb_for_each_dev); > > > > > > +struct each_hub_arg { > > > + void *data; > > > + int (*fn)(struct device *, void *); > > > +}; > > > + > > > +static int __each_hub(struct device *dev, void *data) > > > +{ > > > + struct each_hub_arg *arg = (struct each_hub_arg *)data; > > > + struct usb_device *hdev = to_usb_device(dev); > > > > to_usb_device() won't work properly if the struct device isn't embedded > > in an actual usb_device structure. And that will happen, since the USB > > bus type holds usb_interface structures as well as usb_devices. > > OK, so I need to filter them out. > > > In fact, you should use usb_for_each_dev here; it already does what you > > want. > > Unfortunately I can't use usb_for_each_dev here, because it deals with > struct usb_device while I need to deal with struct device in the > callback. I see; the prototypes of arg->fn are different. Oh well, it's a shame the code can't be reused. In any case, you should copy what usb.c:__each_dev() does. Alan Stern > > > + struct usb_hub *hub; > > > + int ret; > > > + int i; > > > + > > > + hub = usb_hub_to_struct_hub(hdev); > > > + if (!hub) > > > + return 0; > > > + > > > + for (i = 0; i < hdev->maxchild; i++) { > > > + ret = arg->fn(&hub->ports[i]->dev, arg->data); > > > + if (ret) > > > + return ret; > > > + } > > > + > > > + return 0; > > > +} > > > > Don't you need some sort of locking or refcounting here? What would > > happen if this hub got removed while the routine was running? > > I'll use a lock then. > > thanks, > > -- > heikki