1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2019 Intel Corporation
5 #ifndef _RTE_STACK_LF_GENERIC_H_
6 #define _RTE_STACK_LF_GENERIC_H_
8 #include <rte_branch_prediction.h>
9 #include <rte_prefetch.h>
11 static __rte_always_inline unsigned int
12 __rte_stack_lf_count(struct rte_stack *s)
14 /* stack_lf_push() and stack_lf_pop() do not update the list's contents
15 * and stack_lf->len atomically, which can cause the list to appear
16 * shorter than it actually is if this function is called while other
17 * threads are modifying the list.
19 * However, given the inherently approximate nature of the get_count
20 * callback -- even if the list and its size were updated atomically,
21 * the size could change between when get_count executes and when the
22 * value is returned to the caller -- this is acceptable.
24 * The stack_lf->len updates are placed such that the list may appear to
25 * have fewer elements than it does, but will never appear to have more
26 * elements. If the mempool is near-empty to the point that this is a
27 * concern, the user should consider increasing the mempool size.
29 return (unsigned int)rte_atomic64_read((rte_atomic64_t *)
30 &s->stack_lf.used.len);
33 static __rte_always_inline void
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;
47 /* An acquire fence (or stronger) is needed for weak memory
48 * models to establish a synchronized-with relationship between
49 * the list->head load and store-release operations (as part of
50 * the rte_atomic128_cmp_exchange()).
54 /* Swing the top pointer to the first element in the list and
55 * make the last element point to the old top.
58 new_head.cnt = old_head.cnt + 1;
60 last->next = old_head.top;
62 /* old_head is updated on failure */
63 success = rte_atomic128_cmp_exchange(
64 (rte_int128_t *)&list->head,
65 (rte_int128_t *)&old_head,
66 (rte_int128_t *)&new_head,
69 } while (success == 0);
71 rte_atomic64_add((rte_atomic64_t *)&list->len, num);
74 static __rte_always_inline struct rte_stack_lf_elem *
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;
83 /* Reserve num elements, if available */
85 uint64_t len = rte_atomic64_read((rte_atomic64_t *)&list->len);
87 /* Does the list contain enough elements? */
88 if (unlikely(len < num))
91 if (rte_atomic64_cmpset((volatile uint64_t *)&list->len,
96 old_head = list->head;
98 /* Pop num elements */
100 struct rte_stack_lf_head new_head;
101 struct rte_stack_lf_elem *tmp;
104 /* An acquire fence (or stronger) is needed for weak memory
105 * models to ensure the LF LIFO element reads are properly
106 * ordered with respect to the head pointer read.
110 rte_prefetch0(old_head.top);
114 /* Traverse the list to find the new head. A next pointer will
115 * either point to another element or NULL; if a thread
116 * encounters a pointer that has already been popped, the CAS
119 for (i = 0; i < num && tmp != NULL; i++) {
120 rte_prefetch0(tmp->next);
122 obj_table[i] = tmp->data;
128 /* If NULL was encountered, the list was modified while
129 * traversing it. Retry.
135 new_head.cnt = old_head.cnt + 1;
137 /* old_head is updated on failure */
138 success = rte_atomic128_cmp_exchange(
139 (rte_int128_t *)&list->head,
140 (rte_int128_t *)&old_head,
141 (rte_int128_t *)&new_head,
144 } while (success == 0);
149 #endif /* _RTE_STACK_LF_GENERIC_H_ */