Skip to content

Commit 4dbe28c

Browse files
committed
rust: add helper for mutex_trylock
After commit c5b6aba ("locking/mutex: implement mutex_trylock_nested", currently in the KVM tree) mutex_trylock() will be a macro when lockdep is enabled. Rust therefore needs the corresponding helper. Just add it and the rust/bindings/bindings_helpers_generated.rs Makefile rules will do their thing. Reported-by: Stephen Rothwell <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]> Message-ID: <[email protected]> Acked-by: Miguel Ojeda <[email protected]> Reviewed-by: Alice Ryhl <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
1 parent 8f56770 commit 4dbe28c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

rust/helpers/mutex.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ void rust_helper_mutex_lock(struct mutex *lock)
77
mutex_lock(lock);
88
}
99

10+
int rust_helper_mutex_trylock(struct mutex *lock)
11+
{
12+
return mutex_trylock(lock);
13+
}
14+
1015
void rust_helper___mutex_init(struct mutex *mutex, const char *name,
1116
struct lock_class_key *key)
1217
{

0 commit comments

Comments
 (0)