[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20250320020740.1631171-11-contact@antoniohickey.com>
Date: Wed, 19 Mar 2025 22:07:29 -0400
From: Antonio Hickey <contact@...oniohickey.com>
To: Miguel Ojeda <ojeda@...nel.org>,
Alex Gaynor <alex.gaynor@...il.com>,
Boqun Feng <boqun.feng@...il.com>,
Gary Guo <gary@...yguo.net>,
Björn Roy Baron <bjorn3_gh@...tonmail.com>,
Benno Lossin <benno.lossin@...ton.me>,
Andreas Hindborg <a.hindborg@...nel.org>,
Alice Ryhl <aliceryhl@...gle.com>,
Trevor Gross <tmgross@...ch.edu>,
Danilo Krummrich <dakr@...nel.org>
Cc: Antonio Hickey <contact@...oniohickey.com>,
rust-for-linux@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH v5 10/17] rust: workqueue: replace `raw_get` with pointer cast
Now that `Work` is initialized via `pin-init`, the `work` field
is always used. This allows us to replace the use of unsafe
`Opaque::raw_get` with direct pointer casting.
Suggested-by: Boqun Feng <boqun.feng@...il.com>
Link: https://lore.kernel.org/all/20250316061429.817126-1-contact@antoniohickey.com/T/#mc7a4757e8c132f84228b728c7d123d73841501d6
Signed-off-by: Antonio Hickey <contact@...oniohickey.com>
---
rust/kernel/workqueue.rs | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/rust/kernel/workqueue.rs b/rust/kernel/workqueue.rs
index 4e27df324d26..5cc259c1e502 100644
--- a/rust/kernel/workqueue.rs
+++ b/rust/kernel/workqueue.rs
@@ -399,12 +399,8 @@ pub fn new(name: &'static CStr, key: &'static LockClassKey) -> impl PinInit<Self
/// need not be initialized.)
#[inline]
pub unsafe fn raw_get(ptr: *const Self) -> *mut bindings::work_struct {
- // SAFETY: The caller promises that the pointer is aligned and not dangling.
- //
- // A pointer cast would also be ok due to `#[repr(transparent)]`. We use
- // `&raw const (*ptr).work` so that the compiler does not complain that the
- // `work` field is unused.
- unsafe { Opaque::raw_get(&raw const (*ptr).work) }
+ // CAST: `Work` is transparent to `bindings::work_struct`.
+ ptr.cast_mut().cast()
}
}
Powered by blists - more mailing lists