a9dfb647a78f910c6e3695bd3f4c79f3e5f15ed6
[dpdk.git] / app / test-eventdev / test_order_common.h
1 /*
2  *   BSD LICENSE
3  *
4  *   Copyright (C) Cavium 2017.
5  *
6  *   Redistribution and use in source and binary forms, with or without
7  *   modification, are permitted provided that the following conditions
8  *   are met:
9  *
10  *     * Redistributions of source code must retain the above copyright
11  *       notice, this list of conditions and the following disclaimer.
12  *     * Redistributions in binary form must reproduce the above copyright
13  *       notice, this list of conditions and the following disclaimer in
14  *       the documentation and/or other materials provided with the
15  *       distribution.
16  *     * Neither the name of Cavium networks nor the names of its
17  *       contributors may be used to endorse or promote products derived
18  *       from this software without specific prior written permission.
19  *
20  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #ifndef _TEST_ORDER_COMMON_
34 #define _TEST_ORDER_COMMON_
35
36 #include <stdio.h>
37 #include <stdbool.h>
38
39 #include <rte_cycles.h>
40 #include <rte_eventdev.h>
41 #include <rte_lcore.h>
42 #include <rte_malloc.h>
43 #include <rte_mbuf.h>
44
45 #include "evt_common.h"
46 #include "evt_options.h"
47 #include "evt_test.h"
48
49 #define BURST_SIZE 16
50
51 struct test_order;
52
53 struct worker_data {
54         uint8_t dev_id;
55         uint8_t port_id;
56         struct test_order *t;
57 };
58
59 struct prod_data {
60         uint8_t dev_id;
61         uint8_t port_id;
62         uint8_t queue_id;
63         struct test_order *t;
64 };
65
66 struct test_order {
67         /* Don't change the offset of "err". Signal handler use this memory
68          * to terminate all lcores work.
69          */
70         int err;
71         /*
72          * The atomic_* is an expensive operation,Since it is a functional test,
73          * We are using the atomic_ operation to reduce the code complexity.
74          */
75         rte_atomic64_t outstand_pkts;
76         enum evt_test_result result;
77         uint32_t nb_flows;
78         uint64_t nb_pkts;
79         struct rte_mempool *pool;
80         struct prod_data prod;
81         struct worker_data worker[EVT_MAX_PORTS];
82         uint32_t *producer_flow_seq;
83         uint32_t *expected_flow_seq;
84         struct evt_options *opt;
85 } __rte_cache_aligned;
86
87 int order_test_setup(struct evt_test *test, struct evt_options *opt);
88 void order_test_destroy(struct evt_test *test, struct evt_options *opt);
89
90 #endif /* _TEST_ORDER_COMMON_ */