app/testeventdev: add order test setup and destroy
[dpdk.git] / app / test-eventdev / test_order_common.c
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 #include "test_order_common.h"
34
35 int
36 order_test_setup(struct evt_test *test, struct evt_options *opt)
37 {
38         void *test_order;
39
40         test_order = rte_zmalloc_socket(test->name, sizeof(struct test_order),
41                                 RTE_CACHE_LINE_SIZE, opt->socket_id);
42         if (test_order  == NULL) {
43                 evt_err("failed to allocate test_order memory");
44                 goto nomem;
45         }
46         test->test_priv = test_order;
47
48         struct test_order *t = evt_test_priv(test);
49
50         t->producer_flow_seq = rte_zmalloc_socket("test_producer_flow_seq",
51                                  sizeof(*t->producer_flow_seq) * opt->nb_flows,
52                                 RTE_CACHE_LINE_SIZE, opt->socket_id);
53
54         if (t->producer_flow_seq  == NULL) {
55                 evt_err("failed to allocate t->producer_flow_seq memory");
56                 goto prod_nomem;
57         }
58
59         t->expected_flow_seq = rte_zmalloc_socket("test_expected_flow_seq",
60                                  sizeof(*t->expected_flow_seq) * opt->nb_flows,
61                                 RTE_CACHE_LINE_SIZE, opt->socket_id);
62
63         if (t->expected_flow_seq  == NULL) {
64                 evt_err("failed to allocate t->expected_flow_seq memory");
65                 goto exp_nomem;
66         }
67         rte_atomic64_set(&t->outstand_pkts, opt->nb_pkts);
68         t->err = false;
69         t->nb_pkts = opt->nb_pkts;
70         t->nb_flows = opt->nb_flows;
71         t->result = EVT_TEST_FAILED;
72         t->opt = opt;
73         return 0;
74
75 exp_nomem:
76         rte_free(t->producer_flow_seq);
77 prod_nomem:
78         rte_free(test->test_priv);
79 nomem:
80         return -ENOMEM;
81 }
82
83 void
84 order_test_destroy(struct evt_test *test, struct evt_options *opt)
85 {
86         RTE_SET_USED(opt);
87         struct test_order *t = evt_test_priv(test);
88
89         rte_free(t->expected_flow_seq);
90         rte_free(t->producer_flow_seq);
91         rte_free(test->test_priv);
92 }