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 X-Spam-Level: X-Spam-Status: No, score=-11.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3A14CC433ED for ; Thu, 13 May 2021 16:40:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 17A496143B for ; Thu, 13 May 2021 16:40:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235011AbhEMQlR (ORCPT ); Thu, 13 May 2021 12:41:17 -0400 Received: from mail.kernel.org ([198.145.29.99]:37252 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230431AbhEMQlP (ORCPT ); Thu, 13 May 2021 12:41:15 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id DA7A8611CE; Thu, 13 May 2021 16:40:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1620924005; bh=5rfxTbjI2Dsz8BC/GGx0TY9nxdFnMPLQE66RblsPHk8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=nbY52qPR6zpqZ6ppQ7zNzlcNqVJ5NQU8E43ylWtEvcPdoEPV1xE5cwej2nKIzD/ft 5olsmRyTbLv7j/GZJZyp+6C1b9VvHEgW9eESthlbQasiSUYhooz3DUArhid3eGrPiD ha24srS0BptxUJ4zbWpOpO7/nsvyHL5MVPMjS3mk= Date: Thu, 13 May 2021 18:40:03 +0200 From: Greg Kroah-Hartman To: Rajat Jain Cc: "Rafael J. Wysocki" , Bjorn Helgaas , Alan Stern , Linux Kernel Mailing List , linux-pci , "open list:ULTRA-WIDEBAND (UWB) SUBSYSTEM:" , Bjorn Helgaas , Oliver Neukum , David Laight , Krzysztof =?utf-8?Q?Wilczy=C5=84ski?= , Rajat Jain , Jesse Barnes , Dmitry Torokhov Subject: Re: [PATCH v3 1/2] driver core: Move the "removable" attribute from USB to core Message-ID: References: <20210512213457.1310774-1-rajatja@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org On Thu, May 13, 2021 at 09:26:26AM -0700, Rajat Jain wrote: > > > static ssize_t ltm_capable_show(struct device *dev, > > > struct device_attribute *attr, char *buf) > > > { > > > @@ -828,7 +805,6 @@ static struct attribute *dev_attrs[] = { > > > &dev_attr_avoid_reset_quirk.attr, > > > &dev_attr_authorized.attr, > > > &dev_attr_remove.attr, > > > - &dev_attr_removable.attr, > > > &dev_attr_ltm_capable.attr, > > > #ifdef CONFIG_OF > > > &dev_attr_devspec.attr, > > > diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c > > > index 62368c4ed37a..ce18e84528cf 100644 > > > --- a/drivers/usb/core/usb.c > > > +++ b/drivers/usb/core/usb.c > > > @@ -569,6 +569,7 @@ struct device_type usb_device_type = { > > > #ifdef CONFIG_PM > > > .pm = &usb_device_pm_ops, > > > #endif > > > + .supports_removable = true, > > > }; > > > > > > > > > diff --git a/include/linux/device.h b/include/linux/device.h > > > index 38a2071cf776..7e87ab048307 100644 > > > --- a/include/linux/device.h > > > +++ b/include/linux/device.h > > > @@ -93,6 +93,8 @@ struct device_type { > > > void (*release)(struct device *dev); > > > > > > const struct dev_pm_ops *pm; > > > + > > > + bool supports_removable:1; /* subsystem can classify removable/fixed */ > > > > Why isn't this a bus type? Shouldn't it go there and not in the device > > type? > > Please see below. > > > > > > }; > > > > > > /* interface for exporting device attributes */ > > > @@ -350,6 +352,19 @@ enum dl_dev_state { > > > DL_DEV_UNBINDING, > > > }; > > > > > > +/** > > > + * enum device_removable - Whether the device is removable. The criteria for a > > > + * device to be classified as removable is determined by its subsystem or bus. > > > + * @DEVICE_REMOVABLE_UNKNOWN: Device location is Unknown (default). > > > + * @DEVICE_REMOVABLE: Device is removable by the user. > > > + * @DEVICE_FIXED: Device is not removable by the user. > > > + */ > > > +enum device_removable { > > > + DEVICE_REMOVABLE_UNKNOWN = 0, > > > + DEVICE_REMOVABLE, > > > + DEVICE_FIXED, > > > +}; > > > + > > > /** > > > * struct dev_links_info - Device data related to device links. > > > * @suppliers: List of links to supplier devices. > > > @@ -431,6 +446,9 @@ struct dev_links_info { > > > * device (i.e. the bus driver that discovered the device). > > > * @iommu_group: IOMMU group the device belongs to. > > > * @iommu: Per device generic IOMMU runtime data > > > + * @removable: Whether the device can be removed from the system. This > > > + * should be set by the subsystem / bus driver that discovered > > > + * the device. > > > * > > > * @offline_disabled: If set, the device is permanently online. > > > * @offline: Set after successful invocation of bus type's .offline(). > > > @@ -544,6 +562,8 @@ struct device { > > > struct iommu_group *iommu_group; > > > struct dev_iommu *iommu; > > > > > > + enum device_removable removable; > > > + > > > bool offline_disabled:1; > > > bool offline:1; > > > bool of_node_reused:1; > > > @@ -782,6 +802,18 @@ static inline bool dev_has_sync_state(struct device *dev) > > > return false; > > > } > > > > > > +static inline void dev_set_removable(struct device *dev, > > > + enum device_removable removable) > > > +{ > > > + dev->removable = removable; > > > +} > > > + > > > +static inline bool dev_is_removable(struct device *dev) > > > +{ > > > + return dev && dev->type && dev->type->supports_removable > > > + && dev->removable == DEVICE_REMOVABLE; > > > > Again, shouldn't this be a bus type, and not a device type? > > > > Where are you going to have devices of different types on a bus that do, > > or do not, allow this attribute? > > USB. Presently, both the usb_device_type and usb_if_device_type sit on > the usb_bus_type but "removable" only applies to usb_device_type (the > attribute shows up only under usb_devices and not under > usb_interfaces). Ah. Messy. Then should this be a per-device value and don't worry about the type at all? You have a field in the device already, why not make it: enum device_removable { DEVICE_REMOVABLE_NOT_SUPPORTED = 0, /* must be 0 */ DEVICE_REMOVABLE_UNKNOWN, DEVICE_REMOVABLE, DEVICE_FIXED, }; And then only show the file if a device does NOT have the value set to DEVICE_REMOVABLE_NOT_SUPPORTED? If a bus/subsystem/whatever wants the device to have a sysfs file and value there, then it needs to set it to anything other than 0 and it will be created? That gets you out of the device bus/type mess and it is localized to only the device itself, allowing for any device to do this? Should make the logic everywhere a bit simpler as well. thanks, greg k-h