app/compress-perf: add verification test case
[dpdk.git] / app / test-compress-perf / comp_perf_test_common.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2019 Intel Corporation
3  */
4
5 #ifndef _COMP_PERF_TEST_COMMON_H_
6 #define _COMP_PERF_TEST_COMMON_H_
7
8 #include <stdint.h>
9
10 #include <rte_mempool.h>
11
12 struct cperf_mem_resources {
13         uint8_t dev_id;
14         uint16_t qp_id;
15         uint8_t lcore_id;
16         uint32_t total_bufs;
17         uint8_t *compressed_data;
18         uint8_t *decompressed_data;
19
20         struct rte_mbuf **comp_bufs;
21         struct rte_mbuf **decomp_bufs;
22
23         struct rte_mempool *comp_buf_pool;
24         struct rte_mempool *decomp_buf_pool;
25         struct rte_mempool *op_pool;
26 };
27
28 int
29 param_range_check(uint16_t size, const struct rte_param_log2_range *range);
30
31 void
32 comp_perf_free_memory(struct cperf_mem_resources *mem);
33
34 int
35 comp_perf_allocate_memory(struct comp_test_data *test_data,
36                           struct cperf_mem_resources *mem);
37
38 int
39 prepare_bufs(struct comp_test_data *test_data, struct cperf_mem_resources *mem);
40
41 #endif /* _COMP_PERF_TEST_COMMON_H_ */