5 #ifndef _RTE_SPINLOCK_H_ 6 #define _RTE_SPINLOCK_H_ 21 #ifdef RTE_FORCE_INTRINSICS 24 #include <rte_lock_annotations.h> 30 typedef struct __rte_lockable {
37 #define RTE_SPINLOCK_INITIALIZER { 0 } 59 __rte_exclusive_lock_function(sl);
61 #ifdef RTE_FORCE_INTRINSICS 64 __rte_no_thread_safety_analysis
68 while (!__atomic_compare_exchange_n(&sl->
locked, &exp, 1, 0,
69 __ATOMIC_ACQUIRE, __ATOMIC_RELAXED)) {
85 __rte_unlock_function(sl);
87 #ifdef RTE_FORCE_INTRINSICS 90 __rte_no_thread_safety_analysis
92 __atomic_store_n(&sl->
locked, 0, __ATOMIC_RELEASE);
107 __rte_exclusive_trylock_function(1, sl);
109 #ifdef RTE_FORCE_INTRINSICS 112 __rte_no_thread_safety_analysis
115 return __atomic_compare_exchange_n(&sl->
locked, &exp, 1,
117 __ATOMIC_ACQUIRE, __ATOMIC_RELAXED);
131 return __atomic_load_n(&sl->
locked, __ATOMIC_ACQUIRE);
157 __rte_exclusive_lock_function(sl);
168 __rte_unlock_function(sl);
189 __rte_exclusive_trylock_function(1, sl);
203 #define RTE_SPINLOCK_RECURSIVE_INITIALIZER {RTE_SPINLOCK_INITIALIZER, -1, 0} 225 __rte_no_thread_safety_analysis
229 if (slr->user !=
id) {
242 __rte_no_thread_safety_analysis
244 if (--(slr->count) == 0) {
261 __rte_no_thread_safety_analysis
265 if (slr->user !=
id) {
static __rte_warn_unused_result int rte_spinlock_trylock_tm(rte_spinlock_t *sl) sl)
static void rte_spinlock_recursive_lock_tm(rte_spinlock_recursive_t *slr)
static void rte_spinlock_lock(rte_spinlock_t *sl)
static void rte_spinlock_recursive_unlock(rte_spinlock_recursive_t *slr) __rte_no_thread_safety_analysis
static __rte_warn_unused_result int rte_spinlock_recursive_trylock_tm(rte_spinlock_recursive_t *slr)
static void rte_spinlock_recursive_init(rte_spinlock_recursive_t *slr)
static void rte_spinlock_unlock(rte_spinlock_t *sl)
static void rte_spinlock_unlock_tm(rte_spinlock_t *sl)
static __rte_warn_unused_result int rte_spinlock_recursive_trylock(rte_spinlock_recursive_t *slr) __rte_no_thread_safety_analysis
static void rte_spinlock_init(rte_spinlock_t *sl)
static int rte_tm_supported(void)
static __rte_warn_unused_result int rte_spinlock_trylock(rte_spinlock_t *sl) sl)
static void rte_spinlock_recursive_unlock_tm(rte_spinlock_recursive_t *slr)
static int rte_spinlock_is_locked(rte_spinlock_t *sl)
static void rte_spinlock_recursive_lock(rte_spinlock_recursive_t *slr) __rte_no_thread_safety_analysis
static __rte_always_inline void rte_wait_until_equal_32(volatile uint32_t *addr, uint32_t expected, int memorder)
static void rte_spinlock_lock_tm(rte_spinlock_t *sl)
static int rte_gettid(void)
#define __rte_warn_unused_result