DPDK  19.08.2
rte_stack_lf.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2019 Intel Corporation
3  */
4 
5 #ifndef _RTE_STACK_LF_H_
6 #define _RTE_STACK_LF_H_
7 
8 #ifdef RTE_USE_C11_MEM_MODEL
9 #include "rte_stack_lf_c11.h"
10 #else
11 #include "rte_stack_lf_generic.h"
12 #endif
13 
26 __rte_experimental
27 static __rte_always_inline unsigned int
28 __rte_stack_lf_push(struct rte_stack *s,
29  void * const *obj_table,
30  unsigned int n)
31 {
32  struct rte_stack_lf_elem *tmp, *first, *last = NULL;
33  unsigned int i;
34 
35  if (unlikely(n == 0))
36  return 0;
37 
38  /* Pop n free elements */
39  first = __rte_stack_lf_pop_elems(&s->stack_lf.free, n, NULL, &last);
40  if (unlikely(first == NULL))
41  return 0;
42 
43  /* Construct the list elements */
44  for (tmp = first, i = 0; i < n; i++, tmp = tmp->next)
45  tmp->data = obj_table[n - i - 1];
46 
47  /* Push them to the used list */
48  __rte_stack_lf_push_elems(&s->stack_lf.used, first, last, n);
49 
50  return n;
51 }
52 
65 __rte_experimental
66 static __rte_always_inline unsigned int
67 __rte_stack_lf_pop(struct rte_stack *s, void **obj_table, unsigned int n)
68 {
69  struct rte_stack_lf_elem *first, *last = NULL;
70 
71  if (unlikely(n == 0))
72  return 0;
73 
74  /* Pop n used elements */
75  first = __rte_stack_lf_pop_elems(&s->stack_lf.used,
76  n, obj_table, &last);
77  if (unlikely(first == NULL))
78  return 0;
79 
80  /* Push the list elements to the free list */
81  __rte_stack_lf_push_elems(&s->stack_lf.free, first, last, n);
82 
83  return n;
84 }
85 
94 void
95 rte_stack_lf_init(struct rte_stack *s, unsigned int count);
96 
105 ssize_t
106 rte_stack_lf_get_memsize(unsigned int count);
107 
108 #endif /* _RTE_STACK_LF_H_ */
#define __rte_always_inline
Definition: rte_common.h:153
#define unlikely(x)