From: Alvin Sun <alvin.sun@linux.dev>
To: "Gary Guo" <gary@garyguo.net>, "Miguel Ojeda" <ojeda@kernel.org>,
"Boqun Feng" <boqun@kernel.org>,
"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
"Benno Lossin" <lossin@kernel.org>,
"Andreas Hindborg" <a.hindborg@kernel.org>,
"Alice Ryhl" <aliceryhl@google.com>,
"Trevor Gross" <tmgross@umich.edu>,
"Danilo Krummrich" <dakr@kernel.org>,
"Luis Chamberlain" <mcgrof@kernel.org>,
"Petr Pavlu" <petr.pavlu@suse.com>,
"Daniel Gomez" <da.gomez@kernel.org>,
"Sami Tolvanen" <samitolvanen@google.com>,
"Aaron Tomlin" <atomlin@atomlin.com>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Rafael J. Wysocki" <rafael@kernel.org>,
"David Airlie" <airlied@gmail.com>,
"Simona Vetter" <simona@ffwll.ch>,
"Daniel Almeida" <daniel.almeida@collabora.com>,
"Arnd Bergmann" <arnd@arndb.de>,
"Brendan Higgins" <brendan.higgins@linux.dev>,
"David Gow" <david@davidgow.net>,
"Rae Moar" <raemoar63@gmail.com>,
"Breno Leitao" <leitao@debian.org>,
"Jens Axboe" <axboe@kernel.dk>
Cc: rust-for-linux@vger.kernel.org, linux-modules@vger.kernel.org,
driver-core@lists.linux.dev, dri-devel@lists.freedesktop.org,
nova-gpu@lists.linux.dev, linux-kselftest@vger.kernel.org,
kunit-dev@googlegroups.com, linux-block@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 1/6] rust: module: add `THIS_MODULE` const to `ModuleMetadata` trait
Date: Mon, 22 Jun 2026 20:52:30 +0800 [thread overview]
Message-ID: <2d54f3e0-3f35-4f97-b6af-b3ceb1aca246@linux.dev> (raw)
In-Reply-To: <DJFIQPLOVO4T.1K8T0VZM30LDA@garyguo.net>
On 6/22/26 18:50, Gary Guo wrote:
> On Mon Jun 22, 2026 at 3:44 AM BST, Alvin Sun wrote:
>> Since `const_refs_to_static` has been stable as of the MSRV bump, a
>> `ThisModule` pointer can now be used in const contexts.
>>
>> Add a `THIS_MODULE` const to the `ModuleMetadata` trait so that modules
>> can provide their `ThisModule` pointer in const contexts such as static
>> `file_operations`.
>>
>> Move the `THIS_MODULE` static from the `module!` macro into the
>> `ModuleMetadata` impl, add a `this_module()` helper, and update `__init`
>> to use it.
>>
>> Signed-off-by: Alvin Sun <alvin.sun@linux.dev>
>> ---
>> rust/kernel/lib.rs | 8 ++++++++
>> rust/macros/module.rs | 34 +++++++++++++++++-----------------
>> 2 files changed, 25 insertions(+), 17 deletions(-)
>>
>> diff --git a/rust/kernel/lib.rs b/rust/kernel/lib.rs
>> index b72b2fbe046d6..50f5a7b5f028e 100644
>> --- a/rust/kernel/lib.rs
>> +++ b/rust/kernel/lib.rs
>> @@ -184,6 +184,14 @@ fn init(module: &'static ThisModule) -> impl pin_init::PinInit<Self, error::Erro
>> pub trait ModuleMetadata {
>> /// The name of the module as specified in the `module!` macro.
>> const NAME: &'static crate::str::CStr;
>> +
>> + /// The module's `THIS_MODULE` pointer.
>> + const THIS_MODULE: ThisModule;
>> +}
>> +
>> +/// Returns a reference to the `THIS_MODULE` of the given module type.
>> +pub const fn this_module<M: ModuleMetadata>() -> &'static ThisModule {
>> + &M::THIS_MODULE
>> }
> Also, FWIW I think this should not put this in the crate root. Perhaps create a
> modules.rs?
Makes sense. I'll create a new `module.rs` and move the module-related items
(`ModuleMetadata`, `ThisModule`, `this_module()`) there, then re-export from
`lib.rs`.
Best regards,
Alvin Sun
>
> Best,
> Gary
>
>>
>> /// Equivalent to `THIS_MODULE` in the C API.
>> diff --git a/rust/macros/module.rs b/rust/macros/module.rs
>> index 06c18e2075083..b9fdee2f2af47 100644
>> --- a/rust/macros/module.rs
>> +++ b/rust/macros/module.rs
>> @@ -497,28 +497,28 @@ pub(crate) fn module(info: ModuleInfo) -> Result<TokenStream> {
>> /// Used by the printing macros, e.g. [`info!`].
>> const __LOG_PREFIX: &[u8] = #name_cstr.to_bytes_with_nul();
>>
>> - // SAFETY: `__this_module` is constructed by the kernel at load time and will not be
>> - // freed until the module is unloaded.
>> - #[cfg(MODULE)]
>> - static THIS_MODULE: ::kernel::ThisModule = unsafe {
>> - extern "C" {
>> - static __this_module: ::kernel::types::Opaque<::kernel::bindings::module>;
>> - };
>> -
>> - ::kernel::ThisModule::from_ptr(__this_module.get())
>> - };
>> -
>> - #[cfg(not(MODULE))]
>> - static THIS_MODULE: ::kernel::ThisModule = unsafe {
>> - ::kernel::ThisModule::from_ptr(::core::ptr::null_mut())
>> - };
>> -
>> /// The `LocalModule` type is the type of the module created by `module!`,
>> /// `module_pci_driver!`, `module_platform_driver!`, etc.
>> type LocalModule = #type_;
>>
>> impl ::kernel::ModuleMetadata for #type_ {
>> const NAME: &'static ::kernel::str::CStr = #name_cstr;
>> +
>> + #[cfg(MODULE)]
>> + const THIS_MODULE: ::kernel::ThisModule = {
>> + extern "C" {
>> + static __this_module: ::kernel::types::Opaque<::kernel::bindings::module>;
>> + }
>> +
>> + // SAFETY: `__this_module` is constructed by the kernel at load time
>> + // and lives until the module is unloaded.
>> + unsafe { ::kernel::ThisModule::from_ptr(__this_module.get()) }
>> + };
>> +
>> + #[cfg(not(MODULE))]
>> + const THIS_MODULE: ::kernel::ThisModule = unsafe {
>> + ::kernel::ThisModule::from_ptr(::core::ptr::null_mut())
>> + };
>> }
>>
>> // Double nested modules, since then nobody can access the public items inside.
>> @@ -616,7 +616,7 @@ pub extern "C" fn #ident_exit() {
>> /// This function must only be called once.
>> unsafe fn __init() -> ::kernel::ffi::c_int {
>> let initer = <super::super::LocalModule as ::kernel::InPlaceModule>::init(
>> - &super::super::THIS_MODULE
>> + ::kernel::this_module::<super::super::LocalModule>()
>> );
>> // SAFETY: No data race, since `__MOD` can only be accessed by this module
>> // and there only `__init` and `__exit` access it. These functions are only
>
next prev parent reply other threads:[~2026-06-22 12:53 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-22 2:44 [PATCH v3 0/6] Fix missing fops.owner in Rust DRM/misc abstractions Alvin Sun
2026-06-22 2:44 ` [PATCH v3 1/6] rust: module: add `THIS_MODULE` const to `ModuleMetadata` trait Alvin Sun
2026-06-22 9:44 ` Andreas Hindborg
2026-06-22 10:42 ` Gary Guo
2026-06-22 12:42 ` Alvin Sun
2026-06-22 10:50 ` Gary Guo
2026-06-22 12:52 ` Alvin Sun [this message]
2026-06-22 13:06 ` Gary Guo
2026-06-22 2:44 ` [PATCH v3 2/6] rust: doctest: add LocalModule fallback for #[vtable] ThisModule Alvin Sun
2026-06-22 2:44 ` [PATCH v3 3/6] rust: macros: auto-insert OwnerModule in #[vtable] Alvin Sun
2026-06-22 10:44 ` Gary Guo
2026-06-22 2:44 ` [PATCH v3 4/6] rust: drm: set fops.owner from driver module pointer Alvin Sun
2026-06-22 9:39 ` Andreas Hindborg
2026-06-22 10:48 ` Gary Guo
2026-06-22 2:44 ` [PATCH v3 5/6] rust: miscdevice: " Alvin Sun
2026-06-22 9:38 ` Andreas Hindborg
2026-06-22 2:45 ` [PATCH v3 6/6] rust: configfs: use `LocalModule` for `THIS_MODULE` Alvin Sun
2026-06-22 9:38 ` Andreas Hindborg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2d54f3e0-3f35-4f97-b6af-b3ceb1aca246@linux.dev \
--to=alvin.sun@linux.dev \
--cc=a.hindborg@kernel.org \
--cc=airlied@gmail.com \
--cc=aliceryhl@google.com \
--cc=arnd@arndb.de \
--cc=atomlin@atomlin.com \
--cc=axboe@kernel.dk \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun@kernel.org \
--cc=brendan.higgins@linux.dev \
--cc=da.gomez@kernel.org \
--cc=dakr@kernel.org \
--cc=daniel.almeida@collabora.com \
--cc=david@davidgow.net \
--cc=dri-devel@lists.freedesktop.org \
--cc=driver-core@lists.linux.dev \
--cc=gary@garyguo.net \
--cc=gregkh@linuxfoundation.org \
--cc=kunit-dev@googlegroups.com \
--cc=leitao@debian.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=linux-modules@vger.kernel.org \
--cc=lossin@kernel.org \
--cc=mcgrof@kernel.org \
--cc=nova-gpu@lists.linux.dev \
--cc=ojeda@kernel.org \
--cc=petr.pavlu@suse.com \
--cc=raemoar63@gmail.com \
--cc=rafael@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=samitolvanen@google.com \
--cc=simona@ffwll.ch \
--cc=tmgross@umich.edu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.