From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id BBE553CC9F6; Mon, 18 May 2026 10:49:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779101390; cv=none; b=pBb+ixLEJfFhk1UuhOO8kMCCuwh/ho3acGsOXogkBEqMsREWUtHCBbciOit25vcEiAT5lSmGMUAtZnhV94AXlZzv+vwXia3B0S387MMs8Uz4TByyu977Vdxbkt9o9/QKW8LKLUrgloVStguUvSNLlypsdw9sLQdcQLHDK/9VFCI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779101390; c=relaxed/simple; bh=42jNNsHQpsQpdQu92rwfrOHOBcpmK94BPUkm62USyd4=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=OkuwPOMzL326bvihT7wQt2XhxDIuQXQF/HUq/yf7EUnotP0+RoZMK/0go+OxB7nWQdqfK8XtjVLB/UA5hoB/HFJ28/2rAydEjlRvBMWRvr4IcOMulbUjbfHIN1UUa2BMN5i3GhkbZtMMUCJv+yI/x9iJZXqyUp1/SPR8SkLKKzI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=bvmkqrM+; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="bvmkqrM+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8FC5DC2BCB7; Mon, 18 May 2026 10:49:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1779101389; bh=42jNNsHQpsQpdQu92rwfrOHOBcpmK94BPUkm62USyd4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=bvmkqrM+eXFjvGXVjJHiwUCycK215Afb0uWDNVzd1/qkeeUmDxVKwfS8cLg9LcLFf gSI0Vp7+TKoFzL9pIp3Ga8zHUcTvD0kmsveZ2nd3ds7cGPM81D3VR4kwFq9v4CNLjR /m8B69I8qyU/qSTxlW0YVjITv6VzOn4aKpDD49W8= Date: Mon, 18 May 2026 12:49:03 +0200 From: Greg Kroah-Hartman To: Shashank Balaji Cc: Suzuki K Poulose , James Clark , Alexander Shishkin , "Rafael J. Wysocki" , Danilo Krummrich , Miguel Ojeda , Boqun Feng , Gary Guo , =?iso-8859-1?Q?Bj=F6rn?= Roy Baron , Benno Lossin , Andreas Hindborg , Alice Ryhl , Trevor Gross , Jonathan Corbet , Shuah Khan , Luis Chamberlain , Petr Pavlu , Daniel Gomez , Sami Tolvanen , Aaron Tomlin , Mike Leach , Leo Yan , Thierry Reding , Jonathan Hunter , Rahul Bukte , linux-kernel@vger.kernel.org, coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org, driver-core@lists.linux.dev, rust-for-linux@vger.kernel.org, linux-doc@vger.kernel.org, Daniel Palmer , Tim Bird , linux-modules@vger.kernel.org, linux-tegra@vger.kernel.org, Sumit Gupta Subject: Re: [PATCH v5 4/4] driver core: platform: set mod_name in driver registration Message-ID: <2026051849-life-almanac-224e@gregkh> References: <20260518-acpi_mod_name-v5-0-705ccc430885@sony.com> <20260518-acpi_mod_name-v5-4-705ccc430885@sony.com> <2026051827-curler-disjoin-c83f@gregkh> Precedence: bulk X-Mailing-List: linux-modules@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: On Mon, May 18, 2026 at 07:32:28PM +0900, Shashank Balaji wrote: > On Mon, May 18, 2026 at 12:27:13PM +0200, Greg Kroah-Hartman wrote: > > On Mon, May 18, 2026 at 07:20:00PM +0900, Shashank Balaji wrote: > > > Pass KBUILD_MODNAME through the driver registration macro so that > > > the driver core can create the module symlink in sysfs for built-in > > > drivers, and fixup all callers. > > > > > > The Rust platform adapter is updated to pass the module name through to the new > > > parameter. > > > > > > Tested on qemu with: > > > - x86 defconfig + CONFIG_RUST > > > - arm64 defconfig + CONFIG_RUST + CONFIG_CORESIGHT stuff > > > > > > Examples after this patch: > > > > > > /sys/bus/platform/drivers/... > > > coresight-itnoc/module -> coresight_tnoc > > > coresight-static-tpdm/module -> coresight_tpdm > > > coresight-catu-platform/module -> coresight_catu > > > serial8250/module -> 8250 > > > acpi-ged/module -> acpi > > > vmclock/module -> ptp_vmclock > > > > > > Co-developed-by: Rahul Bukte > > > Signed-off-by: Rahul Bukte > > > Signed-off-by: Shashank Balaji > > > --- > > > This patch depends on patches 1, 2, 3 > > > --- > > > Documentation/driver-api/driver-model/platform.rst | 3 ++- > > > drivers/base/platform.c | 21 ++++++++++++++------- > > > drivers/hwtracing/coresight/coresight-core.c | 5 +++-- > > > include/linux/coresight.h | 5 +++-- > > > include/linux/platform_device.h | 17 +++++++++-------- > > > rust/kernel/platform.rs | 4 +++- > > > 6 files changed, 34 insertions(+), 21 deletions(-) > > > > > > diff --git a/Documentation/driver-api/driver-model/platform.rst b/Documentation/driver-api/driver-model/platform.rst > > > index cf5ff48d3115..9673470bded2 100644 > > > --- a/Documentation/driver-api/driver-model/platform.rst > > > +++ b/Documentation/driver-api/driver-model/platform.rst > > > @@ -70,7 +70,8 @@ Kernel modules can be composed of several platform drivers. The platform core > > > provides helpers to register and unregister an array of drivers:: > > > > > > int __platform_register_drivers(struct platform_driver * const *drivers, > > > - unsigned int count, struct module *owner); > > > + unsigned int count, struct module *owner, > > > + const char *mod_name); > > > > Why can't you just use the owner->name value instead? They are always > > the same here, right? > > owner is NULL for built-in modules. Ah, sorry, forgot about that.