[PATCH v2 34/83] block: rust: add `hctx` private data support

From: Andreas Hindborg

Date: Tue Jun 09 2026 - 15:26:25 EST


From: Andreas Hindborg <a.hindborg@xxxxxxxxxxx>

C block device drivers can attach private data to a hardware context
(`struct blk_mq_hw_ctx`). Add support for this feature for Rust block
device drivers via the `Operations::HwData` associated type.

The private data is created in the `init_hctx` callback and stored in
the `driver_data` field of `blk_mq_hw_ctx`. It is passed to `queue_rq`,
`commit_rqs`, and `poll` callbacks, and is released in `exit_hctx`.

Signed-off-by: Andreas Hindborg <a.hindborg@xxxxxxxxxx>
---
drivers/block/rnull/rnull.rs | 8 +++-
rust/kernel/block/mq.rs | 23 +++++++++-
rust/kernel/block/mq/operations.rs | 88 +++++++++++++++++++++++++++++++-------
3 files changed, 100 insertions(+), 19 deletions(-)

diff --git a/drivers/block/rnull/rnull.rs b/drivers/block/rnull/rnull.rs
index ad26a4a8dbbe..0c1bc2f5ae9c 100644
--- a/drivers/block/rnull/rnull.rs
+++ b/drivers/block/rnull/rnull.rs
@@ -534,6 +534,7 @@ impl Operations for NullBlkDevice {
type QueueData = Pin<KBox<QueueData>>;
type RequestData = Pdu;
type TagSetData = ();
+ type HwData = ();

fn new_request_data() -> impl PinInit<Self::RequestData> {
pin_init!(Pdu {
@@ -544,6 +545,7 @@ fn new_request_data() -> impl PinInit<Self::RequestData> {

#[inline(always)]
fn queue_rq(
+ _hw_data: (),
queue_data: Pin<&QueueData>,
mut rq: Owned<mq::Request<Self>>,
_is_last: bool,
@@ -575,7 +577,11 @@ fn queue_rq(
Ok(())
}

- fn commit_rqs(_queue_data: Pin<&QueueData>) {}
+ fn commit_rqs(_hw_data: (), _queue_data: Pin<&QueueData>) {}
+
+ fn init_hctx(_tagset_data: (), _hctx_idx: u32) -> Result {
+ Ok(())
+ }

fn complete(rq: ARef<mq::Request<Self>>) {
Self::end_request(
diff --git a/rust/kernel/block/mq.rs b/rust/kernel/block/mq.rs
index 28cee0d60846..b095cc7f51ce 100644
--- a/rust/kernel/block/mq.rs
+++ b/rust/kernel/block/mq.rs
@@ -17,6 +17,12 @@
//! - The [`GenDisk`] type that abstracts the C type `struct gendisk`.
//! - The [`Request`] type that abstracts the C type `struct request`.
//!
+//! Many of the C types that this module abstracts allow a driver to carry
+//! private data, either embedded in the struct directly, or as a C `void*`. In
+//! these abstractions, this data is typed. The types of the data is defined by
+//! associated types in `Operations`, see [`Operations::RequestData`] for an
+//! example.
+//!
//! The kernel will interface with the block device driver by calling the method
//! implementations of the `Operations` trait.
//!
@@ -71,6 +77,7 @@
//! impl Operations for MyBlkDevice {
//! type RequestData = ();
//! type QueueData = ();
+//! type HwData = ();
//! type TagSetData = ();
//!
//! fn new_request_data(
@@ -78,12 +85,17 @@
//! Ok(())
//! }
//!
-//! fn queue_rq(_queue_data: (), rq: Owned<Request<Self>>, _is_last: bool) -> Result {
+//! fn queue_rq(
+//! _hw_data: (),
+//! _queue_data: (),
+//! rq: Owned<Request<Self>>,
+//! _is_last: bool
+//! ) -> Result {
//! rq.end_ok();
//! Ok(())
//! }
//!
-//! fn commit_rqs(_queue_data: ()) {}
+//! fn commit_rqs(_hw_data: (), _queue_data: ()) {}
//!
//! fn complete(rq: ARef<Request<Self>>) {
//! OwnableRefCounted::try_from_shared(rq)
@@ -91,6 +103,13 @@
//! .expect("Fatal error - expected to be able to end request")
//! .end_ok();
//! }
+//!
+//! fn init_hctx(
+//! _tagset_data: (),
+//! _hctx_idx: u32,
+//! ) -> Result<Self::HwData> {
+//! Ok(())
+//! }
//! }
//!
//! let tagset: Arc<TagSet<MyBlkDevice>> =
diff --git a/rust/kernel/block/mq/operations.rs b/rust/kernel/block/mq/operations.rs
index 093bb21fa1b2..1b20df25d6df 100644
--- a/rust/kernel/block/mq/operations.rs
+++ b/rust/kernel/block/mq/operations.rs
@@ -63,6 +63,13 @@ pub trait Operations: Sized {
/// the `GenDisk` associated with this `Operations` implementation.
type QueueData: ForeignOwnable + Sync;

+ /// Data associated with a dispatch queue. This is stored as a pointer in the C `struct
+ /// blk_mq_hw_ctx` that represents a hardware queue.
+ ///
+ /// Hardware contexts may be cleaned up by a thread different from the allocating thread, so
+ /// `HwData` must be `Send`.
+ type HwData: ForeignOwnable + Sync + Send;
+
/// Data associated with a `TagSet`. This is stored as a pointer in `struct
/// blk_mq_tag_set`.
type TagSetData: ForeignOwnable + Sync;
@@ -73,20 +80,30 @@ pub trait Operations: Sized {
/// Called by the kernel to queue a request with the driver. If `is_last` is
/// `false`, the driver is allowed to defer committing the request.
fn queue_rq(
+ hw_data: ForeignBorrowed<'_, Self::HwData>,
queue_data: ForeignBorrowed<'_, Self::QueueData>,
rq: Owned<Request<Self>>,
is_last: bool,
) -> Result;

/// Called by the kernel to indicate that queued requests should be submitted.
- fn commit_rqs(queue_data: ForeignBorrowed<'_, Self::QueueData>);
+ fn commit_rqs(
+ hw_data: ForeignBorrowed<'_, Self::HwData>,
+ queue_data: ForeignBorrowed<'_, Self::QueueData>,
+ );
+
+ /// Called by the kernel to allocate and initialize a driver specific hardware context data.
+ fn init_hctx(
+ tagset_data: ForeignBorrowed<'_, Self::TagSetData>,
+ hctx_idx: u32,
+ ) -> Result<Self::HwData>;

/// Called by the kernel when the request is completed.
fn complete(rq: ARef<Request<Self>>);

/// Called by the kernel to poll the device for completed requests. Only
/// used for poll queues.
- fn poll() -> bool {
+ fn poll(_hw_data: ForeignBorrowed<'_, Self::HwData>) -> bool {
build_error!(crate::error::VTABLE_DEFAULT_ERROR)
}
}
@@ -146,6 +163,11 @@ impl<T: Operations> OperationsVTable<T> {
let mut rq =
unsafe { Owned::from_raw(NonNull::<Request<T>>::new_unchecked((*bd).rq.cast())) };

+ // SAFETY: The safety requirement for this function ensure that `hctx`
+ // is valid and that `driver_data` was produced by a call to
+ // `into_foreign` in `Self::init_hctx_callback`.
+ let hw_data = unsafe { T::HwData::borrow((*hctx).driver_data) };
+
// SAFETY: `hctx` is valid as required by this function.
let queue_data = unsafe { (*(*hctx).queue).queuedata };

@@ -159,6 +181,7 @@ impl<T: Operations> OperationsVTable<T> {
unsafe { rq.start_unchecked() };

let ret = T::queue_rq(
+ hw_data,
queue_data,
rq,
// SAFETY: `bd` is valid as required by the safety requirement for
@@ -181,6 +204,10 @@ impl<T: Operations> OperationsVTable<T> {
/// This function may only be called by blk-mq C infrastructure. The caller
/// must ensure that `hctx` is valid.
unsafe extern "C" fn commit_rqs_callback(hctx: *mut bindings::blk_mq_hw_ctx) {
+ // SAFETY: `driver_data` was installed by us in `init_hctx_callback` as
+ // the result of a call to `into_foreign`.
+ let hw_data = unsafe { T::HwData::borrow((*hctx).driver_data) };
+
// SAFETY: `hctx` is valid as required by this function.
let queue_data = unsafe { (*(*hctx).queue).queuedata };

@@ -189,7 +216,7 @@ impl<T: Operations> OperationsVTable<T> {
// `ForeignOwnable::from_foreign()` is only called when the tagset is
// dropped, which happens after we are dropped.
let queue_data = unsafe { T::QueueData::borrow(queue_data) };
- T::commit_rqs(queue_data)
+ T::commit_rqs(hw_data, queue_data)
}

/// This function is called by the C kernel. A pointer to this function is
@@ -213,12 +240,18 @@ impl<T: Operations> OperationsVTable<T> {
///
/// # Safety
///
- /// This function may only be called by blk-mq C infrastructure.
+ /// This function may only be called by blk-mq C infrastructure. `hctx` must
+ /// be a pointer to a valid and aligned `struct blk_mq_hw_ctx` that was
+ /// previously initialized by a call to `init_hctx_callback`.
unsafe extern "C" fn poll_callback(
- _hctx: *mut bindings::blk_mq_hw_ctx,
+ hctx: *mut bindings::blk_mq_hw_ctx,
_iob: *mut bindings::io_comp_batch,
) -> crate::ffi::c_int {
- T::poll().into()
+ // SAFETY: By function safety requirement, `hctx` was initialized by
+ // `init_hctx_callback` and thus `driver_data` came from a call to
+ // `into_foreign`.
+ let hw_data = unsafe { T::HwData::borrow((*hctx).driver_data) };
+ T::poll(hw_data).into()
}

/// This function is called by the C kernel. A pointer to this function is
@@ -226,15 +259,29 @@ impl<T: Operations> OperationsVTable<T> {
///
/// # Safety
///
- /// This function may only be called by blk-mq C infrastructure. This
- /// function may only be called once before `exit_hctx_callback` is called
- /// for the same context.
+ /// This function may only be called by blk-mq C infrastructure.
+ /// `tagset_data` must be initialized by the initializer returned by
+ /// `TagSet::try_new` as part of tag set initialization. `hctx` must be a
+ /// pointer to a valid `blk_mq_hw_ctx` where the `driver_data` field was not
+ /// yet initialized. This function may only be called once before
+ /// `exit_hctx_callback` is called for the same context.
unsafe extern "C" fn init_hctx_callback(
- _hctx: *mut bindings::blk_mq_hw_ctx,
- _tagset_data: *mut crate::ffi::c_void,
- _hctx_idx: crate::ffi::c_uint,
- ) -> crate::ffi::c_int {
- from_result(|| Ok(0))
+ hctx: *mut bindings::blk_mq_hw_ctx,
+ tagset_data: *mut c_void,
+ hctx_idx: c_uint,
+ ) -> c_int {
+ from_result(|| {
+ // SAFETY: By the safety requirements of this function,
+ // `tagset_data` came from a call to `into_foreign` when the
+ // `TagSet` was initialized.
+ let tagset_data = unsafe { T::TagSetData::borrow(tagset_data) };
+ let data = T::init_hctx(tagset_data, hctx_idx)?;
+
+ // SAFETY: by the safety requirements of this function, `hctx` is
+ // valid for write
+ unsafe { (*hctx).driver_data = data.into_foreign().cast() };
+ Ok(0)
+ })
}

/// This function is called by the C kernel. A pointer to this function is
@@ -242,11 +289,20 @@ impl<T: Operations> OperationsVTable<T> {
///
/// # Safety
///
- /// This function may only be called by blk-mq C infrastructure.
+ /// This function may only be called by blk-mq C infrastructure. `hctx` must
+ /// be a valid pointer that was previously initialized by a call to
+ /// `init_hctx_callback`. This function may be called only once after
+ /// `init_hctx_callback` was called.
unsafe extern "C" fn exit_hctx_callback(
- _hctx: *mut bindings::blk_mq_hw_ctx,
+ hctx: *mut bindings::blk_mq_hw_ctx,
_hctx_idx: crate::ffi::c_uint,
) {
+ // SAFETY: By the safety requirements of this function, `hctx` is valid for read.
+ let ptr = unsafe { (*hctx).driver_data };
+
+ // SAFETY: By the safety requirements of this function, `ptr` came from
+ // a call to `into_foreign` in `init_hctx_callback`
+ unsafe { T::HwData::from_foreign(ptr) };
}

/// This function is called by the C kernel. A pointer to this function is

--
2.51.2