tailq: remove unneeded inclusions
[dpdk.git] / app / test-pmd / macfwd-retry.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 <stdarg.h>
35 #include <string.h>
36 #include <stdio.h>
37 #include <errno.h>
38 #include <stdint.h>
39 #include <unistd.h>
40 #include <inttypes.h>
41
42 #include <sys/queue.h>
43 #include <sys/stat.h>
44
45 #include <rte_common.h>
46 #include <rte_byteorder.h>
47 #include <rte_log.h>
48 #include <rte_debug.h>
49 #include <rte_cycles.h>
50 #include <rte_memory.h>
51 #include <rte_memcpy.h>
52 #include <rte_memzone.h>
53 #include <rte_launch.h>
54 #include <rte_eal.h>
55 #include <rte_per_lcore.h>
56 #include <rte_lcore.h>
57 #include <rte_atomic.h>
58 #include <rte_branch_prediction.h>
59 #include <rte_ring.h>
60 #include <rte_memory.h>
61 #include <rte_mempool.h>
62 #include <rte_mbuf.h>
63 #include <rte_interrupts.h>
64 #include <rte_pci.h>
65 #include <rte_ether.h>
66 #include <rte_ethdev.h>
67 #include <rte_ip.h>
68 #include <rte_string_fns.h>
69
70 #include "testpmd.h"
71
72 #define BURST_TX_WAIT_US 10
73 #define BURST_TX_RETRIES 5
74
75 /*
76  * Global variables that control number of retires and
77  * timeout (in us) between retires.
78  */
79 uint32_t burst_tx_delay_time = BURST_TX_WAIT_US;
80 uint32_t burst_tx_retry_num = BURST_TX_RETRIES;
81
82 /*
83  * Forwarding of packets in MAC mode with a wait and retry on TX to reduce packet loss.
84  * Change the source and the destination Ethernet addressed of packets
85  * before forwarding them.
86  */
87 static void
88 pkt_burst_mac_retry_forward(struct fwd_stream *fs)
89 {
90         struct rte_mbuf  *pkts_burst[MAX_PKT_BURST];
91         struct rte_mbuf  *mb;
92         struct ether_hdr *eth_hdr;
93         uint32_t retry;
94         uint16_t nb_rx;
95         uint16_t nb_tx;
96         uint16_t i;
97 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
98         uint64_t start_tsc;
99         uint64_t end_tsc;
100         uint64_t core_cycles;
101 #endif
102
103 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
104         start_tsc = rte_rdtsc();
105 #endif
106
107         /*
108          * Receive a burst of packets and forward them.
109          */
110         nb_rx = rte_eth_rx_burst(fs->rx_port, fs->rx_queue, pkts_burst,
111                                  nb_pkt_per_burst);
112         if (unlikely(nb_rx == 0))
113                 return;
114
115 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
116         fs->rx_burst_stats.pkt_burst_spread[nb_rx]++;
117 #endif
118         fs->rx_packets += nb_rx;
119         for (i = 0; i < nb_rx; i++) {
120                 mb = pkts_burst[i];
121                 eth_hdr = rte_pktmbuf_mtod(mb, struct ether_hdr *);
122                 ether_addr_copy(&peer_eth_addrs[fs->peer_addr],
123                                 &eth_hdr->d_addr);
124                 ether_addr_copy(&ports[fs->tx_port].eth_addr,
125                                 &eth_hdr->s_addr);
126         }
127         nb_tx = rte_eth_tx_burst(fs->tx_port, fs->tx_queue, pkts_burst, nb_rx);
128
129         /*
130          * If not all packets have been TX'd then wait and retry.
131          */
132         if (unlikely(nb_tx < nb_rx)) {
133                 for (retry = 0; retry < burst_tx_retry_num; retry++) {
134                         rte_delay_us(burst_tx_delay_time);
135                         nb_tx += rte_eth_tx_burst(fs->tx_port, fs->tx_queue,
136                                 &pkts_burst[nb_tx], nb_rx - nb_tx);
137                         if (nb_tx == nb_rx)
138                                 break;
139                 }
140         }
141
142         fs->tx_packets += nb_tx;
143 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
144         fs->tx_burst_stats.pkt_burst_spread[nb_tx]++;
145 #endif
146         if (unlikely(nb_tx < nb_rx)) {
147                 fs->fwd_dropped += (nb_rx - nb_tx);
148                 do {
149                         rte_pktmbuf_free(pkts_burst[nb_tx]);
150                 } while (++nb_tx < nb_rx);
151         }
152 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
153         end_tsc = rte_rdtsc();
154         core_cycles = (end_tsc - start_tsc);
155         fs->core_cycles = (uint64_t) (fs->core_cycles + core_cycles);
156 #endif
157 }
158
159 struct fwd_engine mac_retry_fwd_engine = {
160         .fwd_mode_name  = "mac_retry",
161         .port_fwd_begin = NULL,
162         .port_fwd_end   = NULL,
163         .packet_fwd     = pkt_burst_mac_retry_forward,
164 };