[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230530064821.1222290-1-changxian.cqs@antgroup.com>
Date: Tue, 30 May 2023 14:48:19 +0800
From: "Qingsong Chen" <changxian.cqs@...group.com>
To: linux-kernel@...r.kernel.org
Cc: "田洪亮" <tate.thl@...group.com>,
"Qingsong Chen" <changxian.cqs@...group.com>,
"Miguel Ojeda" <ojeda@...nel.org>,
"Alex Gaynor" <alex.gaynor@...il.com>,
"Wedson Almeida Filho" <wedsonaf@...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>,
<rust-for-linux@...r.kernel.org>
Subject: [PATCH 0/2] Rust scatterlist abstractions
Hi All!
This is a version of scatterlist abstractions for Rust drivers.
Scatterlist is used for efficient management of memory buffers, which is
essential for many kernel-level operations such as Direct Memory Access
(DMA) transfers and crypto APIs.
This patch should be a good start to introduce the crypto APIs for Rust
drivers and to develop cipher algorithms in Rust later.
Qingsong Chen (2):
rust: kernel: add scatterlist wrapper
samples: rust: add `SgTable` and `ScatterList` selftests
rust/bindings/bindings_helper.h | 1 +
rust/helpers.c | 14 +
rust/kernel/error.rs | 2 +-
rust/kernel/lib.rs | 1 +
rust/kernel/scatterlist.rs | 478 ++++++++++++++++++++++++++++++++
samples/rust/Kconfig | 10 +
samples/rust/Makefile | 1 +
samples/rust/rust_selftests.rs | 186 +++++++++++++
8 files changed, 692 insertions(+), 1 deletion(-)
create mode 100644 rust/kernel/scatterlist.rs
create mode 100644 samples/rust/rust_selftests.rs
--
2.40.1
Powered by blists - more mailing lists