New upstream version 17.11-rc3
[deb_dpdk.git] / test / test-pipeline / runtime.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <stdint.h>
37 #include <inttypes.h>
38 #include <sys/types.h>
39 #include <string.h>
40 #include <sys/queue.h>
41 #include <stdarg.h>
42 #include <errno.h>
43 #include <getopt.h>
44
45 #include <rte_common.h>
46 #include <rte_byteorder.h>
47 #include <rte_log.h>
48 #include <rte_memory.h>
49 #include <rte_memcpy.h>
50 #include <rte_eal.h>
51 #include <rte_per_lcore.h>
52 #include <rte_launch.h>
53 #include <rte_atomic.h>
54 #include <rte_cycles.h>
55 #include <rte_prefetch.h>
56 #include <rte_branch_prediction.h>
57 #include <rte_interrupts.h>
58 #include <rte_pci.h>
59 #include <rte_random.h>
60 #include <rte_debug.h>
61 #include <rte_ether.h>
62 #include <rte_ethdev.h>
63 #include <rte_ring.h>
64 #include <rte_mempool.h>
65 #include <rte_mbuf.h>
66 #include <rte_ip.h>
67 #include <rte_tcp.h>
68 #include <rte_lpm.h>
69 #include <rte_lpm6.h>
70 #include <rte_malloc.h>
71
72 #include "main.h"
73
74 void
75 app_main_loop_rx(void) {
76         uint32_t i;
77         int ret;
78
79         RTE_LOG(INFO, USER1, "Core %u is doing RX\n", rte_lcore_id());
80
81         for (i = 0; ; i = ((i + 1) & (app.n_ports - 1))) {
82                 uint16_t n_mbufs;
83
84                 n_mbufs = rte_eth_rx_burst(
85                         app.ports[i],
86                         0,
87                         app.mbuf_rx.array,
88                         app.burst_size_rx_read);
89
90                 if (n_mbufs == 0)
91                         continue;
92
93                 do {
94                         ret = rte_ring_sp_enqueue_bulk(
95                                 app.rings_rx[i],
96                                 (void **) app.mbuf_rx.array,
97                                 n_mbufs, NULL);
98                 } while (ret == 0);
99         }
100 }
101
102 void
103 app_main_loop_worker(void) {
104         struct app_mbuf_array *worker_mbuf;
105         uint32_t i;
106
107         RTE_LOG(INFO, USER1, "Core %u is doing work (no pipeline)\n",
108                 rte_lcore_id());
109
110         worker_mbuf = rte_malloc_socket(NULL, sizeof(struct app_mbuf_array),
111                         RTE_CACHE_LINE_SIZE, rte_socket_id());
112         if (worker_mbuf == NULL)
113                 rte_panic("Worker thread: cannot allocate buffer space\n");
114
115         for (i = 0; ; i = ((i + 1) & (app.n_ports - 1))) {
116                 int ret;
117
118                 ret = rte_ring_sc_dequeue_bulk(
119                         app.rings_rx[i],
120                         (void **) worker_mbuf->array,
121                         app.burst_size_worker_read,
122                         NULL);
123
124                 if (ret == 0)
125                         continue;
126
127                 do {
128                         ret = rte_ring_sp_enqueue_bulk(
129                                 app.rings_tx[i ^ 1],
130                                 (void **) worker_mbuf->array,
131                                 app.burst_size_worker_write,
132                                 NULL);
133                 } while (ret == 0);
134         }
135 }
136
137 void
138 app_main_loop_tx(void) {
139         uint32_t i;
140
141         RTE_LOG(INFO, USER1, "Core %u is doing TX\n", rte_lcore_id());
142
143         for (i = 0; ; i = ((i + 1) & (app.n_ports - 1))) {
144                 uint16_t n_mbufs, n_pkts;
145                 int ret;
146
147                 n_mbufs = app.mbuf_tx[i].n_mbufs;
148
149                 ret = rte_ring_sc_dequeue_bulk(
150                         app.rings_tx[i],
151                         (void **) &app.mbuf_tx[i].array[n_mbufs],
152                         app.burst_size_tx_read,
153                         NULL);
154
155                 if (ret == 0)
156                         continue;
157
158                 n_mbufs += app.burst_size_tx_read;
159
160                 if (n_mbufs < app.burst_size_tx_write) {
161                         app.mbuf_tx[i].n_mbufs = n_mbufs;
162                         continue;
163                 }
164
165                 n_pkts = rte_eth_tx_burst(
166                         app.ports[i],
167                         0,
168                         app.mbuf_tx[i].array,
169                         n_mbufs);
170
171                 if (n_pkts < n_mbufs) {
172                         uint16_t k;
173
174                         for (k = n_pkts; k < n_mbufs; k++) {
175                                 struct rte_mbuf *pkt_to_free;
176
177                                 pkt_to_free = app.mbuf_tx[i].array[k];
178                                 rte_pktmbuf_free(pkt_to_free);
179                         }
180                 }
181
182                 app.mbuf_tx[i].n_mbufs = 0;
183         }
184 }