diff options
| author | Andreas Hindborg <[email protected]> | 2025-05-08 08:52:09 +0000 |
|---|---|---|
| committer | Andreas Hindborg <[email protected]> | 2025-05-12 09:05:07 +0000 |
| commit | 446cafc295bfc0e89da94a482fe8290bd8b429fb (patch) | |
| tree | f33521d0df1e57b52044e563ef9ca3b634c0ece0 /rust/helpers/mutex.c | |
| parent | configfs: Correct error value returned by API config_item_set_name() (diff) | |
| download | kernel-446cafc295bfc0e89da94a482fe8290bd8b429fb.tar.gz kernel-446cafc295bfc0e89da94a482fe8290bd8b429fb.zip | |
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/[email protected]
Signed-off-by: Andreas Hindborg <[email protected]>
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); +} |
