DPDK 25.03.0-rc1
rte_ring_hts_elem_pvt.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: BSD-3-Clause
2 *
3 * Copyright (c) 2010-2020 Intel Corporation
4 * Copyright (c) 2007-2009 Kip Macy kmacy@freebsd.org
5 * All rights reserved.
6 * Derived from FreeBSD's bufring.h
7 * Used as BSD-3 Licensed with permission from Kip Macy.
8 */
9
10#ifndef _RTE_RING_HTS_ELEM_PVT_H_
11#define _RTE_RING_HTS_ELEM_PVT_H_
12
13#include <rte_stdatomic.h>
14
26static __rte_always_inline void
27__rte_ring_hts_update_tail(struct rte_ring_hts_headtail *ht, uint32_t old_tail,
28 uint32_t num, uint32_t enqueue)
29{
30 uint32_t tail;
31
32 RTE_SET_USED(enqueue);
33
34 tail = old_tail + num;
35 rte_atomic_store_explicit(&ht->ht.pos.tail, tail, rte_memory_order_release);
36}
37
43static __rte_always_inline void
44__rte_ring_hts_head_wait(const struct rte_ring_hts_headtail *ht,
45 union __rte_ring_hts_pos *p)
46{
47 while (p->pos.head != p->pos.tail) {
48 rte_pause();
49 p->raw = rte_atomic_load_explicit(&ht->ht.raw, rte_memory_order_acquire);
50 }
51}
52
77static __rte_always_inline uint32_t
78__rte_ring_hts_move_head(struct rte_ring_hts_headtail *d,
79 const struct rte_ring_headtail *s, uint32_t capacity, unsigned int num,
80 enum rte_ring_queue_behavior behavior, uint32_t *old_head,
81 uint32_t *entries)
82{
83 uint32_t n;
84 union __rte_ring_hts_pos np, op;
85
86 op.raw = rte_atomic_load_explicit(&d->ht.raw, rte_memory_order_acquire);
87
88 do {
89 /* Reset n to the initial burst count */
90 n = num;
91
92 /*
93 * wait for tail to be equal to head,
94 * make sure that we read prod head/tail *before*
95 * reading cons tail.
96 */
97 __rte_ring_hts_head_wait(d, &op);
98
99 /*
100 * The subtraction is done between two unsigned 32bits value
101 * (the result is always modulo 32 bits even if we have
102 * *old_head > cons_tail). So 'entries' is always between 0
103 * and capacity (which is < size).
104 */
105 *entries = capacity + s->tail - op.pos.head;
106
107 /* check that we have enough room in ring */
108 if (unlikely(n > *entries))
109 n = (behavior == RTE_RING_QUEUE_FIXED) ?
110 0 : *entries;
111
112 if (n == 0)
113 break;
114
115 np.pos.tail = op.pos.tail;
116 np.pos.head = op.pos.head + n;
117
118 /*
119 * this CAS(ACQUIRE, ACQUIRE) serves as a hoist barrier to prevent:
120 * - OOO reads of cons tail value
121 * - OOO copy of elems from the ring
122 */
123 } while (rte_atomic_compare_exchange_strong_explicit(&d->ht.raw,
124 (uint64_t *)(uintptr_t)&op.raw, np.raw,
125 rte_memory_order_acquire,
126 rte_memory_order_acquire) == 0);
127
128 *old_head = op.pos.head;
129 return n;
130}
134static __rte_always_inline unsigned int
135__rte_ring_hts_move_prod_head(struct rte_ring *r, unsigned int num,
136 enum rte_ring_queue_behavior behavior, uint32_t *old_head,
137 uint32_t *free_entries)
138{
139 return __rte_ring_hts_move_head(&r->hts_prod, &r->cons,
140 r->capacity, num, behavior, old_head, free_entries);
141}
142
146static __rte_always_inline unsigned int
147__rte_ring_hts_move_cons_head(struct rte_ring *r, unsigned int num,
148 enum rte_ring_queue_behavior behavior, uint32_t *old_head,
149 uint32_t *entries)
150{
151 return __rte_ring_hts_move_head(&r->hts_cons, &r->prod,
152 0, num, behavior, old_head, entries);
153}
154
177static __rte_always_inline unsigned int
178__rte_ring_do_hts_enqueue_elem(struct rte_ring *r, const void *obj_table,
179 uint32_t esize, uint32_t n, enum rte_ring_queue_behavior behavior,
180 uint32_t *free_space)
181{
182 uint32_t free, head;
183
184 n = __rte_ring_hts_move_prod_head(r, n, behavior, &head, &free);
185
186 if (n != 0) {
187 __rte_ring_enqueue_elems(r, head, obj_table, esize, n);
188 __rte_ring_hts_update_tail(&r->hts_prod, head, n, 1);
189 }
190
191 if (free_space != NULL)
192 *free_space = free - n;
193 return n;
194}
195
218static __rte_always_inline unsigned int
219__rte_ring_do_hts_dequeue_elem(struct rte_ring *r, void *obj_table,
220 uint32_t esize, uint32_t n, enum rte_ring_queue_behavior behavior,
221 uint32_t *available)
222{
223 uint32_t entries, head;
224
225 n = __rte_ring_hts_move_cons_head(r, n, behavior, &head, &entries);
226
227 if (n != 0) {
228 __rte_ring_dequeue_elems(r, head, obj_table, esize, n);
229 __rte_ring_hts_update_tail(&r->hts_cons, head, n, 0);
230 }
231
232 if (available != NULL)
233 *available = entries - n;
234 return n;
235}
236
237#endif /* _RTE_RING_HTS_ELEM_PVT_H_ */
#define unlikely(x)
#define RTE_SET_USED(x)
Definition: rte_common.h:226
#define __rte_always_inline
Definition: rte_common.h:452
static void rte_pause(void)
rte_ring_queue_behavior
Definition: rte_ring_core.h:40
@ RTE_RING_QUEUE_FIXED
Definition: rte_ring_core.h:42
uint32_t capacity