blob: 4ad652b062fd8bd3b2bdc5cea6bfac3509325500 [file] [log] [blame]
Damjan Marion1c229712021-04-21 12:55:15 +02001/* SPDX-License-Identifier: Apache-2.0
2 * Copyright(c) 2021 Cisco Systems, Inc.
3 */
4
Damjan Marionef0bac72021-04-22 18:08:28 +02005#include <vppinfra/clib.h>
Damjan Marion1c229712021-04-21 12:55:15 +02006#include <vlib/vlib.h>
Damjan Mariond154a172021-07-13 21:12:41 +02007#include <vppinfra/vector/mask_compare.h>
8#include <vppinfra/vector/compress.h>
Damjan Marion1c229712021-04-21 12:55:15 +02009
Damjan Marionef0bac72021-04-22 18:08:28 +020010static_always_inline u32
Damjan Marionefeea5b2022-02-10 15:01:03 +010011enqueue_one (vlib_main_t *vm, vlib_node_runtime_t *node,
12 vlib_frame_bitmap_t used_elt_bmp, u16 next_index, u32 *buffers,
13 u16 *nexts, u32 n_buffers, u32 n_left, u32 *tmp)
Damjan Marionef0bac72021-04-22 18:08:28 +020014{
Damjan Marionefeea5b2022-02-10 15:01:03 +010015 vlib_frame_bitmap_t match_bmp;
Damjan Marionef0bac72021-04-22 18:08:28 +020016 vlib_frame_t *f;
17 u32 n_extracted, n_free;
18 u32 *to;
19
20 f = vlib_get_next_frame_internal (vm, node, next_index, 0);
21
22 n_free = VLIB_FRAME_SIZE - f->n_vectors;
23
24 /* if frame contains enough space for worst case scenario, we can avoid
25 * use of tmp */
26 if (n_free >= n_left)
27 to = (u32 *) vlib_frame_vector_args (f) + f->n_vectors;
28 else
29 to = tmp;
30
Damjan Marione3e35552021-05-06 17:34:49 +020031 clib_mask_compare_u16 (next_index, nexts, match_bmp, n_buffers);
Damjan Marione3e35552021-05-06 17:34:49 +020032 n_extracted = clib_compress_u32 (to, buffers, match_bmp, n_buffers);
Damjan Marionefeea5b2022-02-10 15:01:03 +010033 vlib_frame_bitmap_or (used_elt_bmp, match_bmp);
Damjan Marionef0bac72021-04-22 18:08:28 +020034
35 if (to != tmp)
36 {
37 /* indices already written to frame, just close it */
38 vlib_put_next_frame (vm, node, next_index, n_free - n_extracted);
39 }
40 else if (n_free >= n_extracted)
41 {
42 /* enough space in the existing frame */
43 to = (u32 *) vlib_frame_vector_args (f) + f->n_vectors;
44 vlib_buffer_copy_indices (to, tmp, n_extracted);
45 vlib_put_next_frame (vm, node, next_index, n_free - n_extracted);
46 }
47 else
48 {
49 /* full frame */
50 to = (u32 *) vlib_frame_vector_args (f) + f->n_vectors;
51 vlib_buffer_copy_indices (to, tmp, n_free);
52 vlib_put_next_frame (vm, node, next_index, 0);
53
54 /* second frame */
55 u32 n_2nd_frame = n_extracted - n_free;
56 f = vlib_get_next_frame_internal (vm, node, next_index, 1);
57 to = vlib_frame_vector_args (f);
58 vlib_buffer_copy_indices (to, tmp + n_free, n_2nd_frame);
59 vlib_put_next_frame (vm, node, next_index,
60 VLIB_FRAME_SIZE - n_2nd_frame);
61 }
62
63 return n_left - n_extracted;
64}
65
Damjan Marion23c34882021-04-25 10:46:26 +020066void __clib_section (".vlib_buffer_enqueue_to_next_fn")
67CLIB_MULTIARCH_FN (vlib_buffer_enqueue_to_next_fn)
68(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, u16 *nexts,
69 uword count)
Damjan Marion1c229712021-04-21 12:55:15 +020070{
Damjan Marionef0bac72021-04-22 18:08:28 +020071 u32 tmp[VLIB_FRAME_SIZE];
72 u32 n_left;
Damjan Marion1c229712021-04-21 12:55:15 +020073 u16 next_index;
74
Damjan Marionef0bac72021-04-22 18:08:28 +020075 while (count >= VLIB_FRAME_SIZE)
Damjan Marion1c229712021-04-21 12:55:15 +020076 {
Damjan Marionefeea5b2022-02-10 15:01:03 +010077 vlib_frame_bitmap_t used_elt_bmp = {};
Damjan Marionef0bac72021-04-22 18:08:28 +020078 n_left = VLIB_FRAME_SIZE;
Damjan Marione3e35552021-05-06 17:34:49 +020079 u32 off = 0;
Damjan Marion1c229712021-04-21 12:55:15 +020080
Damjan Marionef0bac72021-04-22 18:08:28 +020081 next_index = nexts[0];
Damjan Marione3e35552021-05-06 17:34:49 +020082 n_left = enqueue_one (vm, node, used_elt_bmp, next_index, buffers, nexts,
Damjan Marionef0bac72021-04-22 18:08:28 +020083 VLIB_FRAME_SIZE, n_left, tmp);
Damjan Marion1c229712021-04-21 12:55:15 +020084
Damjan Marionef0bac72021-04-22 18:08:28 +020085 while (n_left)
Damjan Marion1c229712021-04-21 12:55:15 +020086 {
Damjan Marione3e35552021-05-06 17:34:49 +020087 while (PREDICT_FALSE (used_elt_bmp[off] == ~0))
Damjan Marionc0d9ca72021-05-11 09:39:24 +020088 {
89 off++;
90 ASSERT (off < ARRAY_LEN (used_elt_bmp));
91 }
Damjan Marione3e35552021-05-06 17:34:49 +020092
93 next_index =
94 nexts[off * 64 + count_trailing_zeros (~used_elt_bmp[off])];
95 n_left = enqueue_one (vm, node, used_elt_bmp, next_index, buffers,
96 nexts, VLIB_FRAME_SIZE, n_left, tmp);
Damjan Marion1c229712021-04-21 12:55:15 +020097 }
98
Damjan Marionef0bac72021-04-22 18:08:28 +020099 buffers += VLIB_FRAME_SIZE;
100 nexts += VLIB_FRAME_SIZE;
101 count -= VLIB_FRAME_SIZE;
Damjan Marion1c229712021-04-21 12:55:15 +0200102 }
Damjan Marionef0bac72021-04-22 18:08:28 +0200103
104 if (count)
105 {
Damjan Marionefeea5b2022-02-10 15:01:03 +0100106 vlib_frame_bitmap_t used_elt_bmp = {};
Damjan Marionef0bac72021-04-22 18:08:28 +0200107 next_index = nexts[0];
108 n_left = count;
Damjan Marione3e35552021-05-06 17:34:49 +0200109 u32 off = 0;
Damjan Marionef0bac72021-04-22 18:08:28 +0200110
Damjan Marione3e35552021-05-06 17:34:49 +0200111 n_left = enqueue_one (vm, node, used_elt_bmp, next_index, buffers, nexts,
112 count, n_left, tmp);
Damjan Marionef0bac72021-04-22 18:08:28 +0200113
114 while (n_left)
115 {
Damjan Marione3e35552021-05-06 17:34:49 +0200116 while (PREDICT_FALSE (used_elt_bmp[off] == ~0))
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200117 {
118 off++;
119 ASSERT (off < ARRAY_LEN (used_elt_bmp));
120 }
Damjan Marione3e35552021-05-06 17:34:49 +0200121
122 next_index =
123 nexts[off * 64 + count_trailing_zeros (~used_elt_bmp[off])];
124 n_left = enqueue_one (vm, node, used_elt_bmp, next_index, buffers,
125 nexts, count, n_left, tmp);
Damjan Marionef0bac72021-04-22 18:08:28 +0200126 }
127 }
Damjan Marion1c229712021-04-21 12:55:15 +0200128}
Damjan Marion23c34882021-04-25 10:46:26 +0200129
Damjan Marion1c229712021-04-21 12:55:15 +0200130CLIB_MARCH_FN_REGISTRATION (vlib_buffer_enqueue_to_next_fn);
131
132void __clib_section (".vlib_buffer_enqueue_to_single_next_fn")
Damjan Marion23c34882021-04-25 10:46:26 +0200133CLIB_MULTIARCH_FN (vlib_buffer_enqueue_to_single_next_fn)
134(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, u16 next_index,
135 u32 count)
Damjan Marion1c229712021-04-21 12:55:15 +0200136{
137 u32 *to_next, n_left_to_next, n_enq;
138
139 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
140
141 if (PREDICT_TRUE (n_left_to_next >= count))
142 {
143 vlib_buffer_copy_indices (to_next, buffers, count);
144 n_left_to_next -= count;
145 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
146 return;
147 }
148
149 n_enq = n_left_to_next;
150next:
151 vlib_buffer_copy_indices (to_next, buffers, n_enq);
152 n_left_to_next -= n_enq;
153
154 if (PREDICT_FALSE (count > n_enq))
155 {
156 count -= n_enq;
157 buffers += n_enq;
158
159 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
160 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
161 n_enq = clib_min (n_left_to_next, count);
162 goto next;
163 }
164 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
165}
166CLIB_MARCH_FN_REGISTRATION (vlib_buffer_enqueue_to_single_next_fn);
167
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200168static inline vlib_frame_queue_elt_t *
169vlib_get_frame_queue_elt (vlib_frame_queue_main_t *fqm, u32 index,
170 int dont_wait)
Damjan Marion1c229712021-04-21 12:55:15 +0200171{
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200172 vlib_frame_queue_t *fq;
173 u64 nelts, tail, new_tail;
Damjan Marion1c229712021-04-21 12:55:15 +0200174
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200175 fq = fqm->vlib_frame_queues[index];
176 ASSERT (fq);
177 nelts = fq->nelts;
Damjan Marion1c229712021-04-21 12:55:15 +0200178
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200179retry:
180 tail = __atomic_load_n (&fq->tail, __ATOMIC_ACQUIRE);
181 new_tail = tail + 1;
182
183 if (new_tail >= fq->head + nelts)
Damjan Marion1c229712021-04-21 12:55:15 +0200184 {
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200185 if (dont_wait)
186 return 0;
Damjan Marion1c229712021-04-21 12:55:15 +0200187
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200188 /* Wait until a ring slot is available */
189 while (new_tail >= fq->head + nelts)
190 vlib_worker_thread_barrier_check ();
Damjan Marion1c229712021-04-21 12:55:15 +0200191 }
192
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200193 if (!__atomic_compare_exchange_n (&fq->tail, &tail, new_tail, 0 /* weak */,
194 __ATOMIC_RELAXED, __ATOMIC_RELAXED))
195 goto retry;
Damjan Marion1c229712021-04-21 12:55:15 +0200196
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200197 return fq->elts + (new_tail & (nelts - 1));
198}
199
200static_always_inline u32
201vlib_buffer_enqueue_to_thread_inline (vlib_main_t *vm,
202 vlib_node_runtime_t *node,
203 vlib_frame_queue_main_t *fqm,
204 u32 *buffer_indices, u16 *thread_indices,
Mohammed Hawarie7149262022-05-18 10:08:47 +0200205 u32 n_packets, int drop_on_congestion,
206 int with_aux, u32 *aux_data)
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200207{
208 u32 drop_list[VLIB_FRAME_SIZE], n_drop = 0;
Damjan Marionefeea5b2022-02-10 15:01:03 +0100209 vlib_frame_bitmap_t mask, used_elts = {};
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200210 vlib_frame_queue_elt_t *hf = 0;
211 u16 thread_index;
212 u32 n_comp, off = 0, n_left = n_packets;
213
214 thread_index = thread_indices[0];
215
216more:
217 clib_mask_compare_u16 (thread_index, thread_indices, mask, n_packets);
218 hf = vlib_get_frame_queue_elt (fqm, thread_index, drop_on_congestion);
219
220 n_comp = clib_compress_u32 (hf ? hf->buffer_index : drop_list + n_drop,
221 buffer_indices, mask, n_packets);
Mohammed Hawarie7149262022-05-18 10:08:47 +0200222 if (with_aux)
223 clib_compress_u32 (hf ? hf->aux_data : drop_list + n_drop, aux_data, mask,
224 n_packets);
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200225
226 if (hf)
Damjan Marion1c229712021-04-21 12:55:15 +0200227 {
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200228 if (node->flags & VLIB_NODE_FLAG_TRACE)
229 hf->maybe_trace = 1;
230 hf->n_vectors = n_comp;
231 __atomic_store_n (&hf->valid, 1, __ATOMIC_RELEASE);
232 vlib_get_main_by_index (thread_index)->check_frame_queues = 1;
233 }
234 else
235 n_drop += n_comp;
236
237 n_left -= n_comp;
238
239 if (n_left)
240 {
Damjan Marionefeea5b2022-02-10 15:01:03 +0100241 vlib_frame_bitmap_or (used_elts, mask);
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200242
243 while (PREDICT_FALSE (used_elts[off] == ~0))
Damjan Marion1c229712021-04-21 12:55:15 +0200244 {
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200245 off++;
246 ASSERT (off < ARRAY_LEN (used_elts));
Damjan Marion1c229712021-04-21 12:55:15 +0200247 }
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200248
249 thread_index =
250 thread_indices[off * 64 + count_trailing_zeros (~used_elts[off])];
251 goto more;
Damjan Marion1c229712021-04-21 12:55:15 +0200252 }
253
254 if (drop_on_congestion && n_drop)
255 vlib_buffer_free (vm, drop_list, n_drop);
256
257 return n_packets - n_drop;
258}
259
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200260u32 __clib_section (".vlib_buffer_enqueue_to_thread_fn")
261CLIB_MULTIARCH_FN (vlib_buffer_enqueue_to_thread_fn)
262(vlib_main_t *vm, vlib_node_runtime_t *node, u32 frame_queue_index,
263 u32 *buffer_indices, u16 *thread_indices, u32 n_packets,
264 int drop_on_congestion)
265{
266 vlib_thread_main_t *tm = vlib_get_thread_main ();
267 vlib_frame_queue_main_t *fqm;
268 u32 n_enq = 0;
269
270 fqm = vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
271
272 while (n_packets >= VLIB_FRAME_SIZE)
273 {
274 n_enq += vlib_buffer_enqueue_to_thread_inline (
275 vm, node, fqm, buffer_indices, thread_indices, VLIB_FRAME_SIZE,
Mohammed Hawarie7149262022-05-18 10:08:47 +0200276 drop_on_congestion, 0 /* with_aux */, NULL);
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200277 buffer_indices += VLIB_FRAME_SIZE;
278 thread_indices += VLIB_FRAME_SIZE;
279 n_packets -= VLIB_FRAME_SIZE;
280 }
281
282 if (n_packets == 0)
283 return n_enq;
284
Mohammed Hawarie7149262022-05-18 10:08:47 +0200285 n_enq += vlib_buffer_enqueue_to_thread_inline (
286 vm, node, fqm, buffer_indices, thread_indices, n_packets,
287 drop_on_congestion, 0 /* with_aux */, NULL);
288
289 return n_enq;
290}
291
292u32 __clib_section (".vlib_buffer_enqueue_to_thread_with_aux_fn")
293CLIB_MULTIARCH_FN (vlib_buffer_enqueue_to_thread_with_aux_fn)
294(vlib_main_t *vm, vlib_node_runtime_t *node, u32 frame_queue_index,
295 u32 *buffer_indices, u32 *aux, u16 *thread_indices, u32 n_packets,
296 int drop_on_congestion)
297{
298 vlib_thread_main_t *tm = vlib_get_thread_main ();
299 vlib_frame_queue_main_t *fqm;
300 u32 n_enq = 0;
301
302 fqm = vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
303
304 while (n_packets >= VLIB_FRAME_SIZE)
305 {
306 n_enq += vlib_buffer_enqueue_to_thread_inline (
307 vm, node, fqm, buffer_indices, thread_indices, VLIB_FRAME_SIZE,
308 drop_on_congestion, 1 /* with_aux */, aux);
309 buffer_indices += VLIB_FRAME_SIZE;
310 thread_indices += VLIB_FRAME_SIZE;
311 n_packets -= VLIB_FRAME_SIZE;
312 }
313
314 if (n_packets == 0)
315 return n_enq;
316
317 n_enq += vlib_buffer_enqueue_to_thread_inline (
318 vm, node, fqm, buffer_indices, thread_indices, n_packets,
319 drop_on_congestion, 1 /* with_aux */, aux);
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200320
321 return n_enq;
322}
323
Damjan Marion1c229712021-04-21 12:55:15 +0200324CLIB_MARCH_FN_REGISTRATION (vlib_buffer_enqueue_to_thread_fn);
Mohammed Hawarie7149262022-05-18 10:08:47 +0200325CLIB_MARCH_FN_REGISTRATION (vlib_buffer_enqueue_to_thread_with_aux_fn);
Damjan Marion1c229712021-04-21 12:55:15 +0200326
Mohammed Hawarie7149262022-05-18 10:08:47 +0200327static_always_inline u32
328vlib_frame_queue_dequeue_inline (vlib_main_t *vm, vlib_frame_queue_main_t *fqm,
329 u8 with_aux)
Damjan Marioneee099e2021-05-01 14:56:13 +0200330{
331 u32 thread_id = vm->thread_index;
332 vlib_frame_queue_t *fq = fqm->vlib_frame_queues[thread_id];
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200333 u32 mask = fq->nelts - 1;
Damjan Marioneee099e2021-05-01 14:56:13 +0200334 vlib_frame_queue_elt_t *elt;
Mohammed Hawarie7149262022-05-18 10:08:47 +0200335 u32 n_free, n_copy, *from, *from_aux, *to = 0, *to_aux = 0, processed = 0,
336 vectors = 0;
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200337 vlib_frame_t *f = 0;
Damjan Marioneee099e2021-05-01 14:56:13 +0200338
339 ASSERT (fq);
340 ASSERT (vm == vlib_global_main.vlib_mains[thread_id]);
341
342 if (PREDICT_FALSE (fqm->node_index == ~0))
343 return 0;
344 /*
345 * Gather trace data for frame queues
346 */
347 if (PREDICT_FALSE (fq->trace))
348 {
349 frame_queue_trace_t *fqt;
350 frame_queue_nelt_counter_t *fqh;
351 u32 elix;
352
353 fqt = &fqm->frame_queue_traces[thread_id];
354
355 fqt->nelts = fq->nelts;
356 fqt->head = fq->head;
Damjan Marioneee099e2021-05-01 14:56:13 +0200357 fqt->tail = fq->tail;
358 fqt->threshold = fq->vector_threshold;
359 fqt->n_in_use = fqt->tail - fqt->head;
360 if (fqt->n_in_use >= fqt->nelts)
361 {
362 // if beyond max then use max
363 fqt->n_in_use = fqt->nelts - 1;
364 }
365
366 /* Record the number of elements in use in the histogram */
367 fqh = &fqm->frame_queue_histogram[thread_id];
368 fqh->count[fqt->n_in_use]++;
369
370 /* Record a snapshot of the elements in use */
371 for (elix = 0; elix < fqt->nelts; elix++)
372 {
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200373 elt = fq->elts + ((fq->head + 1 + elix) & (mask));
Damjan Marioneee099e2021-05-01 14:56:13 +0200374 if (1 || elt->valid)
375 {
376 fqt->n_vectors[elix] = elt->n_vectors;
377 }
378 }
379 fqt->written = 1;
380 }
381
382 while (1)
383 {
Damjan Marioneee099e2021-05-01 14:56:13 +0200384 if (fq->head == fq->tail)
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200385 break;
386
387 elt = fq->elts + ((fq->head + 1) & mask);
388
389 if (!__atomic_load_n (&elt->valid, __ATOMIC_ACQUIRE))
390 break;
391
392 from = elt->buffer_index + elt->offset;
Mohammed Hawarie7149262022-05-18 10:08:47 +0200393 if (with_aux)
394 from_aux = elt->aux_data + elt->offset;
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200395 ASSERT (elt->offset + elt->n_vectors <= VLIB_FRAME_SIZE);
396
397 if (f == 0)
Damjan Marioneee099e2021-05-01 14:56:13 +0200398 {
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200399 f = vlib_get_frame_to_node (vm, fqm->node_index);
400 to = vlib_frame_vector_args (f);
Mohammed Hawarie7149262022-05-18 10:08:47 +0200401 if (with_aux)
402 to_aux = vlib_frame_aux_args (f);
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200403 n_free = VLIB_FRAME_SIZE;
Damjan Marioneee099e2021-05-01 14:56:13 +0200404 }
405
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200406 if (elt->maybe_trace)
Damjan Marioneee099e2021-05-01 14:56:13 +0200407 f->frame_flags |= VLIB_NODE_FLAG_TRACE;
408
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200409 n_copy = clib_min (n_free, elt->n_vectors);
Damjan Marioneee099e2021-05-01 14:56:13 +0200410
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200411 vlib_buffer_copy_indices (to, from, n_copy);
412 to += n_copy;
Mohammed Hawarie7149262022-05-18 10:08:47 +0200413 if (with_aux)
414 {
415 vlib_buffer_copy_indices (to_aux, from_aux, n_copy);
416 to_aux += n_copy;
417 }
418
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200419 n_free -= n_copy;
420 vectors += n_copy;
Damjan Marioneee099e2021-05-01 14:56:13 +0200421
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200422 if (n_free == 0)
Damjan Marioneee099e2021-05-01 14:56:13 +0200423 {
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200424 f->n_vectors = VLIB_FRAME_SIZE;
425 vlib_put_frame_to_node (vm, fqm->node_index, f);
426 f = 0;
Damjan Marioneee099e2021-05-01 14:56:13 +0200427 }
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200428
429 if (n_copy < elt->n_vectors)
430 {
431 /* not empty - leave it on the ring */
432 elt->n_vectors -= n_copy;
433 elt->offset += n_copy;
434 }
435 else
436 {
437 /* empty - reset and bump head */
438 u32 sz = STRUCT_OFFSET_OF (vlib_frame_queue_elt_t, end_of_reset);
439 clib_memset (elt, 0, sz);
440 __atomic_store_n (&fq->head, fq->head + 1, __ATOMIC_RELEASE);
441 processed++;
442 }
443
444 /* Limit the number of packets pushed into the graph */
445 if (vectors >= fq->vector_threshold)
446 break;
Damjan Marioneee099e2021-05-01 14:56:13 +0200447 }
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200448
449 if (f)
450 {
451 f->n_vectors = VLIB_FRAME_SIZE - n_free;
452 vlib_put_frame_to_node (vm, fqm->node_index, f);
453 }
454
Damjan Marioneee099e2021-05-01 14:56:13 +0200455 return processed;
456}
Damjan Marionc0d9ca72021-05-11 09:39:24 +0200457
Mohammed Hawarie7149262022-05-18 10:08:47 +0200458u32 __clib_section (".vlib_frame_queue_dequeue_fn")
459CLIB_MULTIARCH_FN (vlib_frame_queue_dequeue_fn)
460(vlib_main_t *vm, vlib_frame_queue_main_t *fqm)
461{
462 return vlib_frame_queue_dequeue_inline (vm, fqm, 0 /* with_aux */);
463}
464
Damjan Marioneee099e2021-05-01 14:56:13 +0200465CLIB_MARCH_FN_REGISTRATION (vlib_frame_queue_dequeue_fn);
466
Mohammed Hawarie7149262022-05-18 10:08:47 +0200467u32 __clib_section (".vlib_frame_queue_dequeue_with_aux_fn")
468CLIB_MULTIARCH_FN (vlib_frame_queue_dequeue_with_aux_fn)
469(vlib_main_t *vm, vlib_frame_queue_main_t *fqm)
470{
471 return vlib_frame_queue_dequeue_inline (vm, fqm, 1 /* with_aux */);
472}
473
474CLIB_MARCH_FN_REGISTRATION (vlib_frame_queue_dequeue_with_aux_fn);
475
Damjan Marion1c229712021-04-21 12:55:15 +0200476#ifndef CLIB_MARCH_VARIANT
477vlib_buffer_func_main_t vlib_buffer_func_main;
478
479static clib_error_t *
480vlib_buffer_funcs_init (vlib_main_t *vm)
481{
482 vlib_buffer_func_main_t *bfm = &vlib_buffer_func_main;
483 bfm->buffer_enqueue_to_next_fn =
484 CLIB_MARCH_FN_POINTER (vlib_buffer_enqueue_to_next_fn);
485 bfm->buffer_enqueue_to_single_next_fn =
486 CLIB_MARCH_FN_POINTER (vlib_buffer_enqueue_to_single_next_fn);
487 bfm->buffer_enqueue_to_thread_fn =
488 CLIB_MARCH_FN_POINTER (vlib_buffer_enqueue_to_thread_fn);
Mohammed Hawarie7149262022-05-18 10:08:47 +0200489 bfm->buffer_enqueue_to_thread_with_aux_fn =
490 CLIB_MARCH_FN_POINTER (vlib_buffer_enqueue_to_thread_with_aux_fn);
Damjan Marion1c229712021-04-21 12:55:15 +0200491 return 0;
492}
493
494VLIB_INIT_FUNCTION (vlib_buffer_funcs_init);
495#endif