diff options
author | Andreas Hindborg <a.hindborg@kernel.org> | 2025-05-08 10:52:09 +0200 |
---|---|---|
committer | Andreas Hindborg <a.hindborg@kernel.org> | 2025-05-12 11:05:07 +0200 |
commit | 446cafc295bfc0e89da94a482fe8290bd8b429fb (patch) | |
tree | f33521d0df1e57b52044e563ef9ca3b634c0ece0 /rust/kernel/lib.rs | |
parent | bbb67d4f85fd00a216fca4ca048e15f8ff6a2195 (diff) |
rust: configfs: introduce rust support for configfs
Add a Rust API for configfs, thus allowing Rust modules to use configfs for
configuration. Make the implementation a shim on top of the C configfs
implementation, allowing safe use of the C infrastructure from Rust.
Link: https://lore.kernel.org/r/20250508-configfs-v8-1-8ebde6180edc@kernel.org
Signed-off-by: Andreas Hindborg <a.hindborg@kernel.org>
Diffstat (limited to 'rust/kernel/lib.rs')
-rw-r--r-- | rust/kernel/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rust/kernel/lib.rs b/rust/kernel/lib.rs index de07aadd1ff5..bcbf5026449d 100644 --- a/rust/kernel/lib.rs +++ b/rust/kernel/lib.rs @@ -42,6 +42,8 @@ pub mod alloc; pub mod block; #[doc(hidden)] pub mod build_assert; +#[cfg(CONFIG_CONFIGFS_FS)] +pub mod configfs; pub mod cred; pub mod device; pub mod device_id; |