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/helpers/mutex.c | |
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/helpers/mutex.c')
-rw-r--r-- | rust/helpers/mutex.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rust/helpers/mutex.c b/rust/helpers/mutex.c index 06575553eda5..3e9b910a88e9 100644 --- a/rust/helpers/mutex.c +++ b/rust/helpers/mutex.c @@ -17,3 +17,8 @@ void rust_helper_mutex_assert_is_held(struct mutex *mutex) { lockdep_assert_held(mutex); } + +void rust_helper_mutex_destroy(struct mutex *lock) +{ + mutex_destroy(lock); +} |