* Build error on -next in rust/kernel/usb.rs:92:34 (was: Re: [PATCH 1/8] rust: device: narrow the generic of drvdata_obtain()) [not found] ` <20251020223516.241050-2-dakr@kernel.org> @ 2025-11-03 6:43 ` Thorsten Leemhuis 2025-11-03 10:49 ` Build error on -next in rust/kernel/usb.rs:92:34 Danilo Krummrich 0 siblings, 1 reply; 2+ messages in thread From: Thorsten Leemhuis @ 2025-11-03 6:43 UTC (permalink / raw) To: Danilo Krummrich, gregkh, rafael, bhelgaas, kwilczynski, david.m.ertman, ira.weiny, leon, acourbot, ojeda, alex.gaynor, boqun.feng, gary, bjorn3_gh, lossin, a.hindborg, aliceryhl, tmgross, pcolberg, Linux Next Mailing List, Stephen Rothwell Cc: rust-for-linux, linux-pci, linux-kernel On 10/21/25 00:34, Danilo Krummrich wrote: > Let T be the actual private driver data type without the surrounding > box, as it leaves less room for potential bugs. > > Signed-off-by: Danilo Krummrich <dakr@kernel.org> This patch showed up in linux-next today and I wonder if that caused my build to break on arm64 and x86:64. The error message looked like this during "make bzimage": """ error[E0599]: no method named `data` found for struct `core::pin::Pin<kbox::Box<T, Kmalloc>>` in the current scope --> rust/kernel/usb.rs:92:34 | 92 | T::disconnect(intf, data.data()); | ^^^^ method not found in `core::pin::Pin<kbox::Box<T, Kmalloc>>` error: aborting due to 1 previous error For more information about this error, try `rustc --explain E0599`. make[2]: *** [rust/Makefile:553: rust/kernel.o] Error 1 make[1]: *** [/builddir/build/BUILD/kernel-6.18.0-build/kernel-next-20251103/linux-6.18.0-0.0.next.20251103.436.vanilla.fc44.x86_64/Makefile:1316: prepare] Error 2 make: *** [Makefile:256: __sub-make] Error 2 """ Full log: https://download.copr.fedorainfracloud.org/results/@kernel-vanilla/next/fedora-rawhide-aarch64/09759703-next-next-all/builder-live.log.gz A quick search for "T::disconnect(intf, data.data());" on lore lead me here: > diff --git a/rust/kernel/usb.rs b/rust/kernel/usb.rs > index 9238b96c2185..05eed3f4f73e 100644 > --- a/rust/kernel/usb.rs > +++ b/rust/kernel/usb.rs > @@ -87,9 +87,9 @@ extern "C" fn disconnect_callback(intf: *mut bindings::usb_interface) { > // SAFETY: `disconnect_callback` is only ever called after a successful call to > // `probe_callback`, hence it's guaranteed that `Device::set_drvdata()` has been called > // and stored a `Pin<KBox<T>>`. > - let data = unsafe { dev.drvdata_obtain::<Pin<KBox<T>>>() }; > + let data = unsafe { dev.drvdata_obtain::<T>() }; > > - T::disconnect(intf, data.as_ref()); > + T::disconnect(intf, data.data()); > } > } Ciao, Thorsten ^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Build error on -next in rust/kernel/usb.rs:92:34 2025-11-03 6:43 ` Build error on -next in rust/kernel/usb.rs:92:34 (was: Re: [PATCH 1/8] rust: device: narrow the generic of drvdata_obtain()) Thorsten Leemhuis @ 2025-11-03 10:49 ` Danilo Krummrich 0 siblings, 0 replies; 2+ messages in thread From: Danilo Krummrich @ 2025-11-03 10:49 UTC (permalink / raw) To: Thorsten Leemhuis Cc: gregkh, rafael, bhelgaas, kwilczynski, david.m.ertman, ira.weiny, leon, acourbot, ojeda, alex.gaynor, boqun.feng, gary, bjorn3_gh, lossin, a.hindborg, aliceryhl, tmgross, pcolberg, Linux Next Mailing List, Stephen Rothwell, rust-for-linux, linux-pci, linux-kernel On 11/3/25 7:43 AM, Thorsten Leemhuis wrote: > """ > error[E0599]: no method named `data` found for struct `core::pin::Pin<kbox::Box<T, Kmalloc>>` in the current scope > --> rust/kernel/usb.rs:92:34 > | > 92 | T::disconnect(intf, data.data()); > | ^^^^ method not found in `core::pin::Pin<kbox::Box<T, Kmalloc>>` > > error: aborting due to 1 previous error > > For more information about this error, try `rustc --explain E0599`. > make[2]: *** [rust/Makefile:553: rust/kernel.o] Error 1 > make[1]: *** [/builddir/build/BUILD/kernel-6.18.0-build/kernel-next-20251103/linux-6.18.0-0.0.next.20251103.436.vanilla.fc44.x86_64/Makefile:1316: prepare] Error 2 > make: *** [Makefile:256: __sub-make] Error 2 > """ > > Full log: > https://download.copr.fedorainfracloud.org/results/@kernel-vanilla/next/fedora-rawhide-aarch64/09759703-next-next-all/builder-live.log.gz > > A quick search for "T::disconnect(intf, data.data());" on lore > lead me here: > >> diff --git a/rust/kernel/usb.rs b/rust/kernel/usb.rs >> index 9238b96c2185..05eed3f4f73e 100644 >> --- a/rust/kernel/usb.rs >> +++ b/rust/kernel/usb.rs >> @@ -87,9 +87,9 @@ extern "C" fn disconnect_callback(intf: *mut bindings::usb_interface) { >> // SAFETY: `disconnect_callback` is only ever called after a successful call to >> // `probe_callback`, hence it's guaranteed that `Device::set_drvdata()` has been called >> // and stored a `Pin<KBox<T>>`. >> - let data = unsafe { dev.drvdata_obtain::<Pin<KBox<T>>>() }; >> + let data = unsafe { dev.drvdata_obtain::<T>() }; >> >> - T::disconnect(intf, data.as_ref()); >> + T::disconnect(intf, data.data()); >> } >> } This error is cause by commit 6bbaa93912bf ("rust: device: narrow the generic of drvdata_obtain()"). It seems it slipped through, since the USB abstractions are disabled in all trees other than the USB tree. I tested with enabling them locally, but it seems I forgot to re-enable them after a rebase etc. I will send a patch with the following fix: diff --git a/rust/kernel/usb.rs b/rust/kernel/usb.rs index 92215fdc3c6a..534e3ded5442 100644 --- a/rust/kernel/usb.rs +++ b/rust/kernel/usb.rs @@ -89,7 +89,7 @@ extern "C" fn disconnect_callback(intf: *mut bindings::usb_interface) { // and stored a `Pin<KBox<T>>`. let data = unsafe { dev.drvdata_obtain::<T>() }; - T::disconnect(intf, data.data()); + T::disconnect(intf, data.as_ref()); } } ^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-11-03 10:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20251020223516.241050-1-dakr@kernel.org>
[not found] ` <20251020223516.241050-2-dakr@kernel.org>
2025-11-03 6:43 ` Build error on -next in rust/kernel/usb.rs:92:34 (was: Re: [PATCH 1/8] rust: device: narrow the generic of drvdata_obtain()) Thorsten Leemhuis
2025-11-03 10:49 ` Build error on -next in rust/kernel/usb.rs:92:34 Danilo Krummrich
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox