2024-08-15 10:30:26 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
|
|
|
|
void rust_helper___spin_lock_init(spinlock_t *lock, const char *name,
|
|
|
|
struct lock_class_key *key)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_DEBUG_SPINLOCK
|
2024-11-07 16:32:23 +00:00
|
|
|
# if defined(CONFIG_PREEMPT_RT)
|
|
|
|
__spin_lock_init(lock, name, key, false);
|
|
|
|
# else /*!CONFIG_PREEMPT_RT */
|
2024-08-15 10:30:26 +00:00
|
|
|
__raw_spin_lock_init(spinlock_check(lock), name, key, LD_WAIT_CONFIG);
|
2024-11-07 16:32:23 +00:00
|
|
|
# endif /* CONFIG_PREEMPT_RT */
|
|
|
|
#else /* !CONFIG_DEBUG_SPINLOCK */
|
2024-08-15 10:30:26 +00:00
|
|
|
spin_lock_init(lock);
|
2024-11-07 16:32:23 +00:00
|
|
|
#endif /* CONFIG_DEBUG_SPINLOCK */
|
2024-08-15 10:30:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void rust_helper_spin_lock(spinlock_t *lock)
|
|
|
|
{
|
|
|
|
spin_lock(lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
void rust_helper_spin_unlock(spinlock_t *lock)
|
|
|
|
{
|
|
|
|
spin_unlock(lock);
|
|
|
|
}
|
2024-09-26 20:50:37 +00:00
|
|
|
|
|
|
|
int rust_helper_spin_trylock(spinlock_t *lock)
|
|
|
|
{
|
|
|
|
return spin_trylock(lock);
|
|
|
|
}
|
2024-11-25 20:40:58 +00:00
|
|
|
|
|
|
|
void rust_helper_spin_assert_is_held(spinlock_t *lock)
|
|
|
|
{
|
|
|
|
lockdep_assert_held(lock);
|
|
|
|
}
|