1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2020 Intel Corporation
5 #include "test_ring_stress_impl.h"
8 _st_ring_dequeue_bulk(struct rte_ring *r, void **obj, uint32_t n,
11 return rte_ring_mc_rts_dequeue_bulk(r, obj, n, avail);
14 static inline uint32_t
15 _st_ring_enqueue_bulk(struct rte_ring *r, void * const *obj, uint32_t n,
18 return rte_ring_mp_rts_enqueue_bulk(r, obj, n, free);
22 _st_ring_init(struct rte_ring *r, const char *name, uint32_t num)
24 return rte_ring_init(r, name, num,
25 RING_F_MP_RTS_ENQ | RING_F_MC_RTS_DEQ);
28 const struct test test_ring_rts_stress = {
30 .nb_case = RTE_DIM(tests),