f72299fd15
Add stress tests for zero copy API. Signed-off-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com> Reviewed-by: Dharmik Thakkar <dharmik.thakkar@arm.com> Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
64 lines
1.3 KiB
C
64 lines
1.3 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2020 Arm Limited
|
|
*/
|
|
|
|
#include "test_ring.h"
|
|
#include "test_ring_stress_impl.h"
|
|
#include <rte_ring_elem.h>
|
|
|
|
static inline uint32_t
|
|
_st_ring_dequeue_bulk(struct rte_ring *r, void **obj, uint32_t n,
|
|
uint32_t *avail)
|
|
{
|
|
uint32_t m;
|
|
struct rte_ring_zc_data zcd;
|
|
|
|
static rte_spinlock_t lck = RTE_SPINLOCK_INITIALIZER;
|
|
|
|
rte_spinlock_lock(&lck);
|
|
|
|
m = rte_ring_dequeue_zc_bulk_start(r, n, &zcd, avail);
|
|
if (m != 0) {
|
|
/* Copy the data from the ring */
|
|
test_ring_copy_from(&zcd, obj, -1, m);
|
|
rte_ring_dequeue_zc_finish(r, m);
|
|
}
|
|
|
|
rte_spinlock_unlock(&lck);
|
|
return m;
|
|
}
|
|
|
|
static inline uint32_t
|
|
_st_ring_enqueue_bulk(struct rte_ring *r, void * const *obj, uint32_t n,
|
|
uint32_t *free)
|
|
{
|
|
uint32_t m;
|
|
struct rte_ring_zc_data zcd;
|
|
|
|
static rte_spinlock_t lck = RTE_SPINLOCK_INITIALIZER;
|
|
|
|
rte_spinlock_lock(&lck);
|
|
|
|
m = rte_ring_enqueue_zc_bulk_start(r, n, &zcd, free);
|
|
if (m != 0) {
|
|
/* Copy the data from the ring */
|
|
test_ring_copy_to(&zcd, obj, -1, m);
|
|
rte_ring_enqueue_zc_finish(r, m);
|
|
}
|
|
|
|
rte_spinlock_unlock(&lck);
|
|
return m;
|
|
}
|
|
|
|
static int
|
|
_st_ring_init(struct rte_ring *r, const char *name, uint32_t num)
|
|
{
|
|
return rte_ring_init(r, name, num, RING_F_SP_ENQ | RING_F_SC_DEQ);
|
|
}
|
|
|
|
const struct test test_ring_st_peek_stress_zc = {
|
|
.name = "ST_PEEK_ZC",
|
|
.nb_case = RTE_DIM(tests),
|
|
.cases = tests,
|
|
};
|