Messages in this thread Patch in this message |  | | From | Danilo Krummrich <> | | Subject | [PATCH v2 07/25] rust: auxiliary: implement Sync for Device<Bound> | | Date | Wed, 6 May 2026 23:50:43 +0200 |
| |
Device<Bound> uses the same underlying struct auxiliary_device as Device<Normal>; Bound is a zero-sized type-state marker that does not affect thread safety.
This is needed for drivers to store &'bound auxiliary::Device<Bound> in their HRT private data while remaining Send.
Signed-off-by: Danilo Krummrich <dakr@kernel.org> --- rust/kernel/auxiliary.rs | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/rust/kernel/auxiliary.rs b/rust/kernel/auxiliary.rs index 37690fa14891..e193ba5b7167 100644 --- a/rust/kernel/auxiliary.rs +++ b/rust/kernel/auxiliary.rs @@ -366,6 +366,10 @@ unsafe impl Send for Device {} // (i.e. `Device<Normal>) are thread safe. unsafe impl Sync for Device {} +// SAFETY: Same as `Device<Normal>` -- the underlying `struct auxiliary_device` is the same; +// `Bound` is a zero-sized type-state marker that does not affect thread safety. +unsafe impl Sync for Device<device::Bound> {} + /// Wrapper that stores a [`TypeId`] alongside the registration data for runtime type checking. #[repr(C)] #[pin_data] -- 2.54.0
|  |