d95eb62525a4f291c2dff25ad94509d64f4324f0
[dpdk.git] / app / test-eventdev / test_perf_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_perf_common.h"
34
35
36 int
37 perf_test_setup(struct evt_test *test, struct evt_options *opt)
38 {
39         void *test_perf;
40
41         test_perf = rte_zmalloc_socket(test->name, sizeof(struct test_perf),
42                                 RTE_CACHE_LINE_SIZE, opt->socket_id);
43         if (test_perf  == NULL) {
44                 evt_err("failed to allocate test_perf memory");
45                 goto nomem;
46         }
47         test->test_priv = test_perf;
48
49         struct test_perf *t = evt_test_priv(test);
50
51         t->outstand_pkts = opt->nb_pkts * evt_nr_active_lcores(opt->plcores);
52         t->nb_workers = evt_nr_active_lcores(opt->wlcores);
53         t->done = false;
54         t->nb_pkts = opt->nb_pkts;
55         t->nb_flows = opt->nb_flows;
56         t->result = EVT_TEST_FAILED;
57         t->opt = opt;
58         memcpy(t->sched_type_list, opt->sched_type_list,
59                         sizeof(opt->sched_type_list));
60         return 0;
61 nomem:
62         return -ENOMEM;
63 }
64
65 void
66 perf_test_destroy(struct evt_test *test, struct evt_options *opt)
67 {
68         RTE_SET_USED(opt);
69
70         rte_free(test->test_priv);
71 }