rust: add helper for mutex_trylock
authorPaolo Bonzini <pbonzini@redhat.com>
Wed, 28 May 2025 08:34:30 +0000 (10:34 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 28 May 2025 10:28:30 +0000 (06:28 -0400)
After commit c5b6ababd21a ("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 <sfr@canb.auug.org.au>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-ID: <20250528083431.1875345-1-pbonzini@redhat.com>
Acked-by: Miguel Ojeda <ojeda@kernel.org>
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
rust/helpers/mutex.c

index 06575553eda5c5a99ab27ef38101f9bf0c7f5644..9ab29104bee1dd0e44546128c464a45a010bafbc 100644 (file)
@@ -7,6 +7,11 @@ void rust_helper_mutex_lock(struct mutex *lock)
        mutex_lock(lock);
 }
 
+int rust_helper_mutex_trylock(struct mutex *lock)
+{
+       return mutex_trylock(lock);
+}
+
 void rust_helper___mutex_init(struct mutex *mutex, const char *name,
                              struct lock_class_key *key)
 {