5#ifndef _RTE_STACK_LF_GENERIC_H_
6#define _RTE_STACK_LF_GENERIC_H_
12__rte_stack_lf_count(
struct rte_stack *s)
30 &s->stack_lf.used.len);
34__rte_stack_lf_push_elems(
struct rte_stack_lf_list *list,
35 struct rte_stack_lf_elem *first,
36 struct rte_stack_lf_elem *last,
39 struct rte_stack_lf_head old_head;
42 old_head = list->head;
45 struct rte_stack_lf_head new_head;
58 new_head.cnt = old_head.cnt + 1;
60 last->next = old_head.top;
64 (rte_int128_t *)&list->head,
65 (rte_int128_t *)&old_head,
66 (rte_int128_t *)&new_head,
69 }
while (success == 0);
75__rte_stack_lf_pop_elems(
struct rte_stack_lf_list *list,
78 struct rte_stack_lf_elem **last)
80 struct rte_stack_lf_head old_head;
96 old_head = list->head;
100 struct rte_stack_lf_head new_head;
101 struct rte_stack_lf_elem *tmp;
119 for (i = 0; i < num && tmp != NULL; i++) {
122 obj_table[i] = tmp->data;
132 old_head = list->head;
137 new_head.cnt = old_head.cnt + 1;
141 (rte_int128_t *)&list->head,
142 (rte_int128_t *)&old_head,
143 (rte_int128_t *)&new_head,
146 }
while (success == 0);
static int rte_atomic64_cmpset(volatile uint64_t *dst, uint64_t exp, uint64_t src)
static void rte_atomic64_add(rte_atomic64_t *v, int64_t inc)
static void rte_smp_mb(void)
static __rte_experimental int rte_atomic128_cmp_exchange(rte_int128_t *dst, rte_int128_t *exp, const rte_int128_t *src, unsigned int weak, int success, int failure)
static int64_t rte_atomic64_read(rte_atomic64_t *v)
#define __rte_always_inline
static void rte_prefetch0(const volatile void *p)