5#ifndef _RTE_SPINLOCK_H_
6#define _RTE_SPINLOCK_H_
25#ifdef RTE_FORCE_INTRINSICS
28#include <rte_lock_annotations.h>
30#include <rte_stdatomic.h>
39typedef struct __rte_lockable {
40 volatile RTE_ATOMIC(
int) locked;
46#define RTE_SPINLOCK_INITIALIZER { 0 }
68 __rte_exclusive_lock_function(sl);
70#ifdef RTE_FORCE_INTRINSICS
73 __rte_no_thread_safety_analysis
77 while (!rte_atomic_compare_exchange_strong_explicit(&sl->locked, &exp, 1,
78 rte_memory_order_acquire, rte_memory_order_relaxed)) {
80 0, rte_memory_order_relaxed);
94 __rte_unlock_function(sl);
96#ifdef RTE_FORCE_INTRINSICS
99 __rte_no_thread_safety_analysis
101 rte_atomic_store_explicit(&sl->locked, 0, rte_memory_order_release);
116 __rte_exclusive_trylock_function(1, sl);
118#ifdef RTE_FORCE_INTRINSICS
121 __rte_no_thread_safety_analysis
124 return rte_atomic_compare_exchange_strong_explicit(&sl->locked, &exp, 1,
125 rte_memory_order_acquire, rte_memory_order_relaxed);
139 return rte_atomic_load_explicit(&sl->locked, rte_memory_order_acquire);
165 __rte_exclusive_lock_function(sl);
176 __rte_unlock_function(sl);
197 __rte_exclusive_trylock_function(1, sl);
211#define RTE_SPINLOCK_RECURSIVE_INITIALIZER {RTE_SPINLOCK_INITIALIZER, -1, 0}
222 rte_atomic_store_explicit(&slr->
owner, -1, rte_memory_order_relaxed);
233 __rte_no_thread_safety_analysis
237 if (rte_atomic_load_explicit(&slr->owner, rte_memory_order_relaxed) !=
id) {
239 rte_atomic_store_explicit(&slr->owner,
id, rte_memory_order_relaxed);
250 __rte_no_thread_safety_analysis
252 if (--(slr->count) == 0) {
253 rte_atomic_store_explicit(&slr->owner, -1, rte_memory_order_relaxed);
268 __rte_no_thread_safety_analysis
272 if (rte_atomic_load_explicit(&slr->owner, rte_memory_order_relaxed) !=
id) {
275 rte_atomic_store_explicit(&slr->owner,
id, rte_memory_order_relaxed);
#define __rte_warn_unused_result
static int rte_gettid(void)
static __rte_always_inline void rte_wait_until_equal_32(volatile uint32_t *addr, uint32_t expected, rte_memory_order memorder)
static __rte_warn_unused_result int rte_spinlock_trylock(rte_spinlock_t *sl) sl)
static int rte_tm_supported(void)
static __rte_warn_unused_result int rte_spinlock_recursive_trylock_tm(rte_spinlock_recursive_t *slr)
static void rte_spinlock_recursive_lock_tm(rte_spinlock_recursive_t *slr)
static void rte_spinlock_unlock(rte_spinlock_t *sl)
static void rte_spinlock_recursive_unlock_tm(rte_spinlock_recursive_t *slr)
static void rte_spinlock_lock(rte_spinlock_t *sl)
static void rte_spinlock_lock_tm(rte_spinlock_t *sl)
static void rte_spinlock_recursive_init(rte_spinlock_recursive_t *slr)
static __rte_warn_unused_result int rte_spinlock_recursive_trylock(rte_spinlock_recursive_t *slr) __rte_no_thread_safety_analysis
static void rte_spinlock_recursive_unlock(rte_spinlock_recursive_t *slr) __rte_no_thread_safety_analysis
static void rte_spinlock_unlock_tm(rte_spinlock_t *sl)
static __rte_warn_unused_result int rte_spinlock_trylock_tm(rte_spinlock_t *sl) sl)
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 void rte_spinlock_init(rte_spinlock_t *sl)