mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 07:31:45 +00:00
3253aba340
Add initial abstractions for working with blk-mq.
This patch is a maintained, refactored subset of code originally published
by Wedson Almeida Filho <wedsonaf@gmail.com> [1].
[1] f2cfd2fe0e/rust/kernel/blk/mq.rs
Cc: Wedson Almeida Filho <wedsonaf@gmail.com>
Signed-off-by: Andreas Hindborg <a.hindborg@samsung.com>
Reviewed-by: Benno Lossin <benno.lossin@proton.me>
Link: https://lore.kernel.org/r/20240611114551.228679-2-nmi@metaspace.dk
Signed-off-by: Jens Axboe <axboe@kernel.dk>
6 lines
94 B
Rust
6 lines
94 B
Rust
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
//! Types for working with the block layer.
|
|
|
|
pub mod mq;
|