2024-08-15 10:30:26 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
|
|
2026-01-05 12:42:33 +00:00
|
|
|
__rust_helper void rust_helper___spin_lock_init(spinlock_t *lock,
|
|
|
|
|
const char *name,
|
|
|
|
|
struct lock_class_key *key)
|
2024-08-15 10:30:26 +00:00
|
|
|
{
|
|
|
|
|
#ifdef CONFIG_DEBUG_SPINLOCK
|
2024-11-07 17:32:23 +01: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 17:32:23 +01:00
|
|
|
# endif /* CONFIG_PREEMPT_RT */
|
|
|
|
|
#else /* !CONFIG_DEBUG_SPINLOCK */
|
2024-08-15 10:30:26 +00:00
|
|
|
spin_lock_init(lock);
|
2024-11-07 17:32:23 +01:00
|
|
|
#endif /* CONFIG_DEBUG_SPINLOCK */
|
2024-08-15 10:30:26 +00:00
|
|
|
}
|
|
|
|
|
|
2026-01-05 12:42:33 +00:00
|
|
|
__rust_helper void rust_helper_spin_lock(spinlock_t *lock)
|
2024-08-15 10:30:26 +00:00
|
|
|
{
|
|
|
|
|
spin_lock(lock);
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-05 12:42:33 +00:00
|
|
|
__rust_helper void rust_helper_spin_unlock(spinlock_t *lock)
|
2024-08-15 10:30:26 +00:00
|
|
|
{
|
|
|
|
|
spin_unlock(lock);
|
|
|
|
|
}
|
2024-09-26 17:50:37 -03:00
|
|
|
|
2026-01-05 12:42:33 +00:00
|
|
|
__rust_helper int rust_helper_spin_trylock(spinlock_t *lock)
|
2024-09-26 17:50:37 -03:00
|
|
|
{
|
|
|
|
|
return spin_trylock(lock);
|
|
|
|
|
}
|
2024-11-25 15:40:58 -05:00
|
|
|
|
2026-01-05 12:42:33 +00:00
|
|
|
__rust_helper void rust_helper_spin_assert_is_held(spinlock_t *lock)
|
2024-11-25 15:40:58 -05:00
|
|
|
{
|
|
|
|
|
lockdep_assert_held(lock);
|
|
|
|
|
}
|