DPDK  22.07.0
rte_event_ring.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2016-2017 Intel Corporation
3  * Copyright(c) 2019 Arm Limited
4  */
5 
14 #ifndef _RTE_EVENT_RING_
15 #define _RTE_EVENT_RING_
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 #include <stdint.h>
22 
23 #include <rte_common.h>
24 #include <rte_ring.h>
25 #include <rte_ring_elem.h>
26 #include "rte_eventdev.h"
27 
28 #define RTE_TAILQ_EVENT_RING_NAME "RTE_EVENT_RING"
29 
38  struct rte_ring r;
39 };
40 
49 static __rte_always_inline unsigned int
51 {
52  return rte_ring_count(&r->r);
53 }
54 
64 static __rte_always_inline unsigned int
66 {
67  return rte_ring_free_count(&r->r);
68 }
69 
90 static __rte_always_inline unsigned int
92  const struct rte_event *events,
93  unsigned int n, uint16_t *free_space)
94 {
95  unsigned int num;
96  uint32_t space;
97 
98  num = rte_ring_enqueue_burst_elem(&r->r, events,
99  sizeof(struct rte_event), n,
100  &space);
101 
102  if (free_space != NULL)
103  *free_space = space;
104 
105  return num;
106 }
107 
126 static __rte_always_inline unsigned int
128  struct rte_event *events,
129  unsigned int n, uint16_t *available)
130 {
131  unsigned int num;
132  uint32_t remaining;
133 
134  num = rte_ring_dequeue_burst_elem(&r->r, events,
135  sizeof(struct rte_event), n,
136  &remaining);
137 
138  if (available != NULL)
139  *available = remaining;
140 
141  return num;
142 }
143 
144 /*
145  * Initializes an already-allocated ring structure
146  *
147  * @param r
148  * pointer to the ring memory to be initialized
149  * @param name
150  * name to be given to the ring
151  * @param count
152  * the number of elements to be stored in the ring. If the flag
153  * ``RING_F_EXACT_SZ`` is not set, this must be a power of 2, and the actual
154  * usable space in the ring will be ``count - 1`` entries. If the flag
155  * ``RING_F_EXACT_SZ`` is set, the this can be any value up to the ring size
156  * limit - 1, and the usable space will be exactly that requested.
157  * @param flags
158  * An OR of the following:
159  * - RING_F_SP_ENQ: If this flag is set, the default behavior when
160  * using ``rte_ring_enqueue()`` or ``rte_ring_enqueue_bulk()``
161  * is "single-producer". Otherwise, it is "multi-producers".
162  * - RING_F_SC_DEQ: If this flag is set, the default behavior when
163  * using ``rte_ring_dequeue()`` or ``rte_ring_dequeue_bulk()``
164  * is "single-consumer". Otherwise, it is "multi-consumers".
165  * - RING_F_EXACT_SZ: If this flag is set, the ``count`` parameter is to
166  * be taken as the exact usable size of the ring, and as such does not
167  * need to be a power of 2. The underlying ring memory should be a
168  * power-of-2 size greater than the count value.
169  * @return
170  * 0 on success, or a negative value on error.
171  */
172 int
173 rte_event_ring_init(struct rte_event_ring *r, const char *name,
174  unsigned int count, unsigned int flags);
175 
176 /*
177  * Create an event ring structure
178  *
179  * This function allocates memory and initializes an event ring inside that
180  * memory.
181  *
182  * @param name
183  * name to be given to the ring
184  * @param count
185  * the number of elements to be stored in the ring. If the flag
186  * ``RING_F_EXACT_SZ`` is not set, this must be a power of 2, and the actual
187  * usable space in the ring will be ``count - 1`` entries. If the flag
188  * ``RING_F_EXACT_SZ`` is set, the this can be any value up to the ring size
189  * limit - 1, and the usable space will be exactly that requested.
190  * @param socket_id
191  * The *socket_id* argument is the socket identifier in case of
192  * NUMA. The value can be *SOCKET_ID_ANY* if there is no NUMA
193  * constraint for the reserved zone.
194  * @param flags
195  * An OR of the following:
196  * - RING_F_SP_ENQ: If this flag is set, the default behavior when
197  * using ``rte_ring_enqueue()`` or ``rte_ring_enqueue_bulk()``
198  * is "single-producer". Otherwise, it is "multi-producers".
199  * - RING_F_SC_DEQ: If this flag is set, the default behavior when
200  * using ``rte_ring_dequeue()`` or ``rte_ring_dequeue_bulk()``
201  * is "single-consumer". Otherwise, it is "multi-consumers".
202  * - RING_F_EXACT_SZ: If this flag is set, the ``count`` parameter is to
203  * be taken as the exact usable size of the ring, and as such does not
204  * need to be a power of 2. The underlying ring memory should be a
205  * power-of-2 size greater than the count value.
206  * @return
207  * On success, the pointer to the new allocated ring. NULL on error with
208  * rte_errno set appropriately. Possible errno values include:
209  * - E_RTE_NO_CONFIG - function could not get pointer to rte_config structure
210  * - E_RTE_SECONDARY - function was called from a secondary process instance
211  * - EINVAL - count provided is not a power of 2
212  * - ENOSPC - the maximum number of memzones has already been allocated
213  * - EEXIST - a memzone with the same name already exists
214  * - ENOMEM - no appropriate memory area found in which to create memzone
215  */
216 struct rte_event_ring *
217 rte_event_ring_create(const char *name, unsigned int count, int socket_id,
218  unsigned int flags);
219 
230 struct rte_event_ring *
231 rte_event_ring_lookup(const char *name);
232 
240 void
242 
253 static inline unsigned int
255 {
256  return rte_ring_get_size(&r->r);
257 }
258 
267 static inline unsigned int
269 {
270  return rte_ring_get_capacity(&r->r);
271 }
272 
273 #ifdef __cplusplus
274 }
275 #endif
276 
277 #endif
#define __rte_always_inline
Definition: rte_common.h:258
struct rte_event_ring * rte_event_ring_lookup(const char *name)
void rte_event_ring_free(struct rte_event_ring *r)
static __rte_always_inline unsigned int rte_event_ring_enqueue_burst(struct rte_event_ring *r, const struct rte_event *events, unsigned int n, uint16_t *free_space)
static unsigned int rte_ring_get_capacity(const struct rte_ring *r)
Definition: rte_ring.h:585
static unsigned int rte_ring_get_size(const struct rte_ring *r)
Definition: rte_ring.h:571
static __rte_always_inline unsigned int rte_event_ring_free_count(const struct rte_event_ring *r)
static unsigned int rte_event_ring_get_capacity(const struct rte_event_ring *r)
static __rte_always_inline unsigned int rte_ring_enqueue_burst_elem(struct rte_ring *r, const void *obj_table, unsigned int esize, unsigned int n, unsigned int *free_space)
static __rte_always_inline unsigned int rte_event_ring_dequeue_burst(struct rte_event_ring *r, struct rte_event *events, unsigned int n, uint16_t *available)
static __rte_always_inline unsigned int rte_event_ring_count(const struct rte_event_ring *r)
static unsigned int rte_event_ring_get_size(const struct rte_event_ring *r)
static unsigned int rte_ring_free_count(const struct rte_ring *r)
Definition: rte_ring.h:523
static __rte_always_inline unsigned int rte_ring_dequeue_burst_elem(struct rte_ring *r, void *obj_table, unsigned int esize, unsigned int n, unsigned int *available)
static unsigned int rte_ring_count(const struct rte_ring *r)
Definition: rte_ring.h:506