DPDK  19.05.0
rte_stack.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2019 Intel Corporation
3  */
4 
16 #ifndef _RTE_STACK_H_
17 #define _RTE_STACK_H_
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
23 #include <rte_atomic.h>
24 #include <rte_compat.h>
25 #include <rte_debug.h>
26 #include <rte_errno.h>
27 #include <rte_memzone.h>
28 #include <rte_spinlock.h>
29 
30 #define RTE_TAILQ_STACK_NAME "RTE_STACK"
31 #define RTE_STACK_MZ_PREFIX "STK_"
32 
33 #define RTE_STACK_NAMESIZE (RTE_MEMZONE_NAMESIZE - \
34  sizeof(RTE_STACK_MZ_PREFIX) + 1)
35 
36 struct rte_stack_lf_elem {
37  void *data;
38  struct rte_stack_lf_elem *next;
39 };
40 
41 struct rte_stack_lf_head {
42  struct rte_stack_lf_elem *top;
43  uint64_t cnt;
44 };
45 
46 struct rte_stack_lf_list {
48  struct rte_stack_lf_head head __rte_aligned(16);
50  rte_atomic64_t len;
51 };
52 
53 /* Structure containing two lock-free LIFO lists: the stack itself and a list
54  * of free linked-list elements.
55  */
56 struct rte_stack_lf {
58  struct rte_stack_lf_list used __rte_cache_aligned;
60  struct rte_stack_lf_list free __rte_cache_aligned;
62  struct rte_stack_lf_elem elems[] __rte_cache_aligned;
63 };
64 
65 /* Structure containing the LIFO, its current length, and a lock for mutual
66  * exclusion.
67  */
68 struct rte_stack_std {
69  rte_spinlock_t lock;
70  uint32_t len;
71  void *objs[];
72 };
73 
74 /* The RTE stack structure contains the LIFO structure itself, plus metadata
75  * such as its name and memzone pointer.
76  */
77 struct rte_stack {
81  const struct rte_memzone *memzone;
82  uint32_t capacity;
83  uint32_t flags;
85  union {
86  struct rte_stack_lf stack_lf;
87  struct rte_stack_std stack_std;
88  };
90 
95 #define RTE_STACK_F_LF 0x0001
96 
97 #include "rte_stack_std.h"
98 #include "rte_stack_lf.h"
99 
115 static __rte_always_inline unsigned int __rte_experimental
116 rte_stack_push(struct rte_stack *s, void * const *obj_table, unsigned int n)
117 {
118  RTE_ASSERT(s != NULL);
119  RTE_ASSERT(obj_table != NULL);
120 
121  if (s->flags & RTE_STACK_F_LF)
122  return __rte_stack_lf_push(s, obj_table, n);
123  else
124  return __rte_stack_std_push(s, obj_table, n);
125 }
126 
142 static __rte_always_inline unsigned int __rte_experimental
143 rte_stack_pop(struct rte_stack *s, void **obj_table, unsigned int n)
144 {
145  RTE_ASSERT(s != NULL);
146  RTE_ASSERT(obj_table != NULL);
147 
148  if (s->flags & RTE_STACK_F_LF)
149  return __rte_stack_lf_pop(s, obj_table, n);
150  else
151  return __rte_stack_std_pop(s, obj_table, n);
152 }
153 
165 static __rte_always_inline unsigned int __rte_experimental
166 rte_stack_count(struct rte_stack *s)
167 {
168  RTE_ASSERT(s != NULL);
169 
170  if (s->flags & RTE_STACK_F_LF)
171  return __rte_stack_lf_count(s);
172  else
173  return __rte_stack_std_count(s);
174 }
175 
187 static __rte_always_inline unsigned int __rte_experimental
188 rte_stack_free_count(struct rte_stack *s)
189 {
190  RTE_ASSERT(s != NULL);
191 
192  return s->capacity - rte_stack_count(s);
193 }
194 
225 struct rte_stack *__rte_experimental
226 rte_stack_create(const char *name, unsigned int count, int socket_id,
227  uint32_t flags);
228 
238 void __rte_experimental
239 rte_stack_free(struct rte_stack *s);
240 
255 struct rte_stack * __rte_experimental
256 rte_stack_lookup(const char *name);
257 
258 #ifdef __cplusplus
259 }
260 #endif
261 
262 #endif /* _RTE_STACK_H_ */