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 A63D5C54E94 for ; Tue, 24 Jan 2023 13:59:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234173AbjAXN7f (ORCPT ); Tue, 24 Jan 2023 08:59:35 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33690 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233977AbjAXN7c (ORCPT ); Tue, 24 Jan 2023 08:59:32 -0500 Received: from mail-ej1-f43.google.com (mail-ej1-f43.google.com [209.85.218.43]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 323C346083; Tue, 24 Jan 2023 05:59:09 -0800 (PST) Received: by mail-ej1-f43.google.com with SMTP id u19so39182170ejm.8; Tue, 24 Jan 2023 05:59:09 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=J2lXeXDqGRi72Z7AvKODItv9Wb9h3SsxMbVGpQDGFwM=; b=RmW2aRfKTnm3YRNb0yiExdO5t1IQkU5Uy+6jNMpibVGAvUahqCwYSzTsZmrjEn9APy WBz0marfvUm9koGH4Df1Vey3JDnair4bEHy4QI+Y6pY6HBj8vnjGRr3pnXJAUYYa2yda eGQeb2jGdK436Q4B4hnrPZYVbGjmk45IWpStoqfpqnvtTElCuQ6Mt7CGZN5Sqmfl1NLw OlQcC9stXrjqjVD6wqHhDK21KbQtL2OQQtqsCRS8CmsJPJYbY+vLy6u4vgmuSIuv+aRb 2NMcUPhO02vis21RuBrByZ70D7gLZHzZ92B9w+wbFlrH6hSFqwcX8zZ2I549sC5gQf+f Fi1w== X-Gm-Message-State: AFqh2krhNIOM0yShfb5OEJdwn0hW79CtoqeuCuHg4Ylz8tCbr59Lgdcs 2v7jN8IeQfQyp/I/PCfe0TDMvcVia9wTKKXmy4Q= X-Google-Smtp-Source: AMrXdXt272T2gLt8zGhAPIDeefYDvDCUpzKrcOQrFQU+4hD2ak44rOCQjlHNEwJcFjpO88qpGIihAEQqm+uT6FwD8VU= X-Received: by 2002:a17:906:514:b0:870:6768:ebcb with SMTP id j20-20020a170906051400b008706768ebcbmr3385384eja.13.1674568686751; Tue, 24 Jan 2023 05:58:06 -0800 (PST) MIME-Version: 1.0 References: <5905717.lOV4Wx5bFT@kreacher> <4780418.GXAFRqVoOG@kreacher> In-Reply-To: From: "Rafael J. Wysocki" Date: Tue, 24 Jan 2023 14:57:55 +0100 Message-ID: Subject: Re: [PATCH v1 2/2] thermal: Fail object registration if thermal class is not registered To: Greg Kroah-Hartman Cc: "Rafael J. Wysocki" , "Rafael J. Wysocki" , Linux PM , LKML , Daniel Lezcano , Srinivas Pandruvada , Zhang Rui Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jan 24, 2023 at 7:03 AM Greg Kroah-Hartman wrote: > > On Mon, Jan 23, 2023 at 09:16:33PM +0100, Rafael J. Wysocki wrote: > > On Sat, Jan 21, 2023 at 8:40 AM Greg Kroah-Hartman > > wrote: > > > > > > On Fri, Jan 20, 2023 at 08:48:07PM +0100, Rafael J. Wysocki wrote: > > > > From: Rafael J. Wysocki > > > > > > > > If thermal_class is not registered with the driver core, there is no way > > > > to expose the interfaces used by the thermal control framework, so > > > > prevent thermal zones and cooling devices from being registered in > > > > that case by returning an error from object registration functions. > > > > > > > > For this purpose, introduce class_is_registered() that checks the > > > > private pointer of the given class and returns 'false' if it is NULL, > > > > which means that the class has not been registered, and use it in the > > > > thermal framework. > > > > > > > > Signed-off-by: Rafael J. Wysocki > > > > --- > > > > drivers/thermal/thermal_core.c | 6 ++++++ > > > > include/linux/device/class.h | 5 +++++ > > > > 2 files changed, 11 insertions(+) > > > > > > > > Index: linux-pm/include/linux/device/class.h > > > > =================================================================== > > > > --- linux-pm.orig/include/linux/device/class.h > > > > +++ linux-pm/include/linux/device/class.h > > > > @@ -82,6 +82,11 @@ struct class_dev_iter { > > > > const struct device_type *type; > > > > }; > > > > > > > > +static inline bool class_is_registered(struct class *class) > > > > +{ > > > > + return !!class->p; > > > > > > I really do not like this as it is exposing internals to drivers and > > > whenever we do that, it gets abused and we have to unwind the mess in a > > > few years. > > > > > > Overall, I'm trying to remove the ->p usage, but that's a longterm goal > > > of mine (to allow class and bus structures to be in read-only memory), > > > which isn't your issue here, but it's good to think about why you want > > > to know this information (more below.) > > > > > > > +} > > > > + > > > > extern struct kobject *sysfs_dev_block_kobj; > > > > extern struct kobject *sysfs_dev_char_kobj; > > > > extern int __must_check __class_register(struct class *class, > > > > Index: linux-pm/drivers/thermal/thermal_core.c > > > > =================================================================== > > > > --- linux-pm.orig/drivers/thermal/thermal_core.c > > > > +++ linux-pm/drivers/thermal/thermal_core.c > > > > @@ -880,6 +880,9 @@ __thermal_cooling_device_register(struct > > > > !ops->set_cur_state) > > > > return ERR_PTR(-EINVAL); > > > > > > > > + if (!class_is_registered(&thermal_class)) > > > > + return ERR_PTR(-ENODEV); > > > > > > If the class isn't registered, then sommething went wrong with the > > > thermal core code, right? So why isn't the thermal core keeping a local > > > variable of "class was registered" and relying on the driver core to > > > know this? > > > > > > The number of individual users that should be doing one thing or another > > > if a class is not registered feels very very slim. How come this code > > > is being called at all if the thermal class was not registered in the > > > first place? What would have prevented that from happening? Is it an > > > ordering issue, or a kernel configuration issue? > > > > It's basically a matter of class_register() returning an error. > > Ok, so not a real problem then :) > > > Yes, we could use an extra variable for this purpose, but that would > > be a bit wasteful, because thermal_class will then sit unused and > > occupy memory in vain. > > How would it retain memory if class_register() failed? The point was that we might use the existing (but not registered) class object to "flag" the fact that the class could not be used without adding extra variables. > > Oh well, we may as well just allocate it dynamically. > > Allocate what? Well, that was a bit terse, sorry. This patch implements what I meant: https://patchwork.kernel.org/project/linux-pm/patch/5660360.DvuYhMxLoT@kreacher/