27#define RTE_TAILQ_STACK_NAME "RTE_STACK"
28#define RTE_STACK_MZ_PREFIX "STK_"
30#define RTE_STACK_NAMESIZE (RTE_MEMZONE_NAMESIZE - \
31 sizeof(RTE_STACK_MZ_PREFIX) + 1)
33struct rte_stack_lf_elem {
35 struct rte_stack_lf_elem *next;
38struct rte_stack_lf_head {
39 struct rte_stack_lf_elem *top;
43struct rte_stack_lf_list {
47 RTE_ATOMIC(uint64_t) len;
82 struct rte_stack_lf stack_lf;
83 struct rte_stack_std stack_std;
91#define RTE_STACK_F_LF 0x0001
93#include "rte_stack_std.h"
94#include "rte_stack_lf.h"
111 RTE_ASSERT(s != NULL);
112 RTE_ASSERT(obj_table != NULL);
115 return __rte_stack_lf_push(s, obj_table, n);
117 return __rte_stack_std_push(s, obj_table, n);
135 RTE_ASSERT(s != NULL);
136 RTE_ASSERT(obj_table != NULL);
139 return __rte_stack_lf_pop(s, obj_table, n);
141 return __rte_stack_std_pop(s, obj_table, n);
155 RTE_ASSERT(s != NULL);
158 return __rte_stack_lf_count(s);
160 return __rte_stack_std_count(s);
174 RTE_ASSERT(s != NULL);
#define __rte_cache_aligned
#define __rte_always_inline
struct rte_stack * rte_stack_create(const char *name, unsigned int count, int socket_id, uint32_t flags)
#define RTE_STACK_NAMESIZE
void rte_stack_free(struct rte_stack *s)
static __rte_always_inline unsigned int rte_stack_count(struct rte_stack *s)
static __rte_always_inline unsigned int rte_stack_push(struct rte_stack *s, void *const *obj_table, unsigned int n)
static __rte_always_inline unsigned int rte_stack_free_count(struct rte_stack *s)
static __rte_always_inline unsigned int rte_stack_pop(struct rte_stack *s, void **obj_table, unsigned int n)
struct rte_stack * rte_stack_lookup(const char *name)