xref: /dpdk/app/test-pmd/testpmd.c (revision e5ffdd1457c0fb4e8365f524ee2529ac726edcf3)
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 <stdio.h>
36 #include <stdlib.h>
37 #include <signal.h>
38 #include <string.h>
39 #include <time.h>
40 #include <fcntl.h>
41 #include <sys/types.h>
42 #include <errno.h>
43 
44 #include <sys/queue.h>
45 #include <sys/stat.h>
46 
47 #include <stdint.h>
48 #include <unistd.h>
49 #include <inttypes.h>
50 
51 #include <rte_common.h>
52 #include <rte_byteorder.h>
53 #include <rte_log.h>
54 #include <rte_debug.h>
55 #include <rte_cycles.h>
56 #include <rte_memory.h>
57 #include <rte_memcpy.h>
58 #include <rte_memzone.h>
59 #include <rte_launch.h>
60 #include <rte_tailq.h>
61 #include <rte_eal.h>
62 #include <rte_per_lcore.h>
63 #include <rte_lcore.h>
64 #include <rte_atomic.h>
65 #include <rte_branch_prediction.h>
66 #include <rte_ring.h>
67 #include <rte_mempool.h>
68 #include <rte_malloc.h>
69 #include <rte_mbuf.h>
70 #include <rte_interrupts.h>
71 #include <rte_pci.h>
72 #include <rte_ether.h>
73 #include <rte_ethdev.h>
74 #include <rte_string_fns.h>
75 #ifdef RTE_LIBRTE_PMD_XENVIRT
76 #include <rte_eth_xenvirt.h>
77 #endif
78 
79 #include "testpmd.h"
80 #include "mempool_osdep.h"
81 
82 uint16_t verbose_level = 0; /**< Silent by default. */
83 
84 /* use master core for command line ? */
85 uint8_t interactive = 0;
86 uint8_t auto_start = 0;
87 
88 /*
89  * NUMA support configuration.
90  * When set, the NUMA support attempts to dispatch the allocation of the
91  * RX and TX memory rings, and of the DMA memory buffers (mbufs) for the
92  * probed ports among the CPU sockets 0 and 1.
93  * Otherwise, all memory is allocated from CPU socket 0.
94  */
95 uint8_t numa_support = 0; /**< No numa support by default */
96 
97 /*
98  * In UMA mode,all memory is allocated from socket 0 if --socket-num is
99  * not configured.
100  */
101 uint8_t socket_num = UMA_NO_CONFIG;
102 
103 /*
104  * Use ANONYMOUS mapped memory (might be not physically continuous) for mbufs.
105  */
106 uint8_t mp_anon = 0;
107 
108 /*
109  * Record the Ethernet address of peer target ports to which packets are
110  * forwarded.
111  * Must be instanciated with the ethernet addresses of peer traffic generator
112  * ports.
113  */
114 struct ether_addr peer_eth_addrs[RTE_MAX_ETHPORTS];
115 portid_t nb_peer_eth_addrs = 0;
116 
117 /*
118  * Probed Target Environment.
119  */
120 struct rte_port *ports;	       /**< For all probed ethernet ports. */
121 portid_t nb_ports;             /**< Number of probed ethernet ports. */
122 struct fwd_lcore **fwd_lcores; /**< For all probed logical cores. */
123 lcoreid_t nb_lcores;           /**< Number of probed logical cores. */
124 
125 /*
126  * Test Forwarding Configuration.
127  *    nb_fwd_lcores <= nb_cfg_lcores <= nb_lcores
128  *    nb_fwd_ports  <= nb_cfg_ports  <= nb_ports
129  */
130 lcoreid_t nb_cfg_lcores; /**< Number of configured logical cores. */
131 lcoreid_t nb_fwd_lcores; /**< Number of forwarding logical cores. */
132 portid_t  nb_cfg_ports;  /**< Number of configured ports. */
133 portid_t  nb_fwd_ports;  /**< Number of forwarding ports. */
134 
135 unsigned int fwd_lcores_cpuids[RTE_MAX_LCORE]; /**< CPU ids configuration. */
136 portid_t fwd_ports_ids[RTE_MAX_ETHPORTS];      /**< Port ids configuration. */
137 
138 struct fwd_stream **fwd_streams; /**< For each RX queue of each port. */
139 streamid_t nb_fwd_streams;       /**< Is equal to (nb_ports * nb_rxq). */
140 
141 /*
142  * Forwarding engines.
143  */
144 struct fwd_engine * fwd_engines[] = {
145 	&io_fwd_engine,
146 	&mac_fwd_engine,
147 	&mac_retry_fwd_engine,
148 	&mac_swap_engine,
149 	&flow_gen_engine,
150 	&rx_only_engine,
151 	&tx_only_engine,
152 	&csum_fwd_engine,
153 	&icmp_echo_engine,
154 #ifdef RTE_LIBRTE_IEEE1588
155 	&ieee1588_fwd_engine,
156 #endif
157 	NULL,
158 };
159 
160 struct fwd_config cur_fwd_config;
161 struct fwd_engine *cur_fwd_eng = &io_fwd_engine; /**< IO mode by default. */
162 
163 uint16_t mbuf_data_size = DEFAULT_MBUF_DATA_SIZE; /**< Mbuf data space size. */
164 uint32_t param_total_num_mbufs = 0;  /**< number of mbufs in all pools - if
165                                       * specified on command-line. */
166 
167 /*
168  * Configuration of packet segments used by the "txonly" processing engine.
169  */
170 uint16_t tx_pkt_length = TXONLY_DEF_PACKET_LEN; /**< TXONLY packet length. */
171 uint16_t tx_pkt_seg_lengths[RTE_MAX_SEGS_PER_PKT] = {
172 	TXONLY_DEF_PACKET_LEN,
173 };
174 uint8_t  tx_pkt_nb_segs = 1; /**< Number of segments in TXONLY packets */
175 
176 uint16_t nb_pkt_per_burst = DEF_PKT_BURST; /**< Number of packets per burst. */
177 uint16_t mb_mempool_cache = DEF_PKT_BURST; /**< Size of mbuf mempool cache. */
178 
179 /* current configuration is in DCB or not,0 means it is not in DCB mode */
180 uint8_t dcb_config = 0;
181 
182 /* Whether the dcb is in testing status */
183 uint8_t dcb_test = 0;
184 
185 /* DCB on and VT on mapping is default */
186 enum dcb_queue_mapping_mode dcb_q_mapping = DCB_VT_Q_MAPPING;
187 
188 /*
189  * Configurable number of RX/TX queues.
190  */
191 queueid_t nb_rxq = 1; /**< Number of RX queues per port. */
192 queueid_t nb_txq = 1; /**< Number of TX queues per port. */
193 
194 /*
195  * Configurable number of RX/TX ring descriptors.
196  */
197 #define RTE_TEST_RX_DESC_DEFAULT 128
198 #define RTE_TEST_TX_DESC_DEFAULT 512
199 uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT; /**< Number of RX descriptors. */
200 uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT; /**< Number of TX descriptors. */
201 
202 /*
203  * Configurable values of RX and TX ring threshold registers.
204  */
205 #define RX_PTHRESH 8 /**< Default value of RX prefetch threshold register. */
206 #define RX_HTHRESH 8 /**< Default value of RX host threshold register. */
207 #define RX_WTHRESH 4 /**< Default value of RX write-back threshold register. */
208 
209 #define TX_PTHRESH 36 /**< Default value of TX prefetch threshold register. */
210 #define TX_HTHRESH 0 /**< Default value of TX host threshold register. */
211 #define TX_WTHRESH 0 /**< Default value of TX write-back threshold register. */
212 
213 struct rte_eth_thresh rx_thresh = {
214 	.pthresh = RX_PTHRESH,
215 	.hthresh = RX_HTHRESH,
216 	.wthresh = RX_WTHRESH,
217 };
218 
219 struct rte_eth_thresh tx_thresh = {
220 	.pthresh = TX_PTHRESH,
221 	.hthresh = TX_HTHRESH,
222 	.wthresh = TX_WTHRESH,
223 };
224 
225 /*
226  * Configurable value of RX free threshold.
227  */
228 uint16_t rx_free_thresh = 0; /* Immediately free RX descriptors by default. */
229 
230 /*
231  * Configurable value of RX drop enable.
232  */
233 uint8_t rx_drop_en = 0; /* Drop packets when no descriptors for queue. */
234 
235 /*
236  * Configurable value of TX free threshold.
237  */
238 uint16_t tx_free_thresh = 0; /* Use default values. */
239 
240 /*
241  * Configurable value of TX RS bit threshold.
242  */
243 uint16_t tx_rs_thresh = 0; /* Use default values. */
244 
245 /*
246  * Configurable value of TX queue flags.
247  */
248 uint32_t txq_flags = 0; /* No flags set. */
249 
250 /*
251  * Receive Side Scaling (RSS) configuration.
252  */
253 uint16_t rss_hf = ETH_RSS_IPV4 | ETH_RSS_IPV6; /* RSS IP by default. */
254 
255 /*
256  * Port topology configuration
257  */
258 uint16_t port_topology = PORT_TOPOLOGY_PAIRED; /* Ports are paired by default */
259 
260 /*
261  * Avoids to flush all the RX streams before starts forwarding.
262  */
263 uint8_t no_flush_rx = 0; /* flush by default */
264 
265 /*
266  * Avoids to check link status when starting/stopping a port.
267  */
268 uint8_t no_link_check = 0; /* check by default */
269 
270 /*
271  * NIC bypass mode configuration options.
272  */
273 #ifdef RTE_NIC_BYPASS
274 
275 /* The NIC bypass watchdog timeout. */
276 uint32_t bypass_timeout = RTE_BYPASS_TMT_OFF;
277 
278 #endif
279 
280 /*
281  * Ethernet device configuration.
282  */
283 struct rte_eth_rxmode rx_mode = {
284 	.max_rx_pkt_len = ETHER_MAX_LEN, /**< Default maximum frame length. */
285 	.split_hdr_size = 0,
286 	.header_split   = 0, /**< Header Split disabled. */
287 	.hw_ip_checksum = 0, /**< IP checksum offload disabled. */
288 	.hw_vlan_filter = 1, /**< VLAN filtering enabled. */
289 	.hw_vlan_strip  = 1, /**< VLAN strip enabled. */
290 	.hw_vlan_extend = 0, /**< Extended VLAN disabled. */
291 	.jumbo_frame    = 0, /**< Jumbo Frame Support disabled. */
292 	.hw_strip_crc   = 0, /**< CRC stripping by hardware disabled. */
293 };
294 
295 struct rte_fdir_conf fdir_conf = {
296 	.mode = RTE_FDIR_MODE_NONE,
297 	.pballoc = RTE_FDIR_PBALLOC_64K,
298 	.status = RTE_FDIR_REPORT_STATUS,
299 	.flexbytes_offset = 0x6,
300 	.drop_queue = 127,
301 };
302 
303 static volatile int test_done = 1; /* stop packet forwarding when set to 1. */
304 
305 struct queue_stats_mappings tx_queue_stats_mappings_array[MAX_TX_QUEUE_STATS_MAPPINGS];
306 struct queue_stats_mappings rx_queue_stats_mappings_array[MAX_RX_QUEUE_STATS_MAPPINGS];
307 
308 struct queue_stats_mappings *tx_queue_stats_mappings = tx_queue_stats_mappings_array;
309 struct queue_stats_mappings *rx_queue_stats_mappings = rx_queue_stats_mappings_array;
310 
311 uint16_t nb_tx_queue_stats_mappings = 0;
312 uint16_t nb_rx_queue_stats_mappings = 0;
313 
314 /* Forward function declarations */
315 static void map_port_queue_stats_mapping_registers(uint8_t pi, struct rte_port *port);
316 static void check_all_ports_link_status(uint8_t port_num, uint32_t port_mask);
317 
318 /*
319  * Check if all the ports are started.
320  * If yes, return positive value. If not, return zero.
321  */
322 static int all_ports_started(void);
323 
324 /*
325  * Setup default configuration.
326  */
327 static void
328 set_default_fwd_lcores_config(void)
329 {
330 	unsigned int i;
331 	unsigned int nb_lc;
332 
333 	nb_lc = 0;
334 	for (i = 0; i < RTE_MAX_LCORE; i++) {
335 		if (! rte_lcore_is_enabled(i))
336 			continue;
337 		if (i == rte_get_master_lcore())
338 			continue;
339 		fwd_lcores_cpuids[nb_lc++] = i;
340 	}
341 	nb_lcores = (lcoreid_t) nb_lc;
342 	nb_cfg_lcores = nb_lcores;
343 	nb_fwd_lcores = 1;
344 }
345 
346 static void
347 set_def_peer_eth_addrs(void)
348 {
349 	portid_t i;
350 
351 	for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
352 		peer_eth_addrs[i].addr_bytes[0] = ETHER_LOCAL_ADMIN_ADDR;
353 		peer_eth_addrs[i].addr_bytes[5] = i;
354 	}
355 }
356 
357 static void
358 set_default_fwd_ports_config(void)
359 {
360 	portid_t pt_id;
361 
362 	for (pt_id = 0; pt_id < nb_ports; pt_id++)
363 		fwd_ports_ids[pt_id] = pt_id;
364 
365 	nb_cfg_ports = nb_ports;
366 	nb_fwd_ports = nb_ports;
367 }
368 
369 void
370 set_def_fwd_config(void)
371 {
372 	set_default_fwd_lcores_config();
373 	set_def_peer_eth_addrs();
374 	set_default_fwd_ports_config();
375 }
376 
377 /*
378  * Configuration initialisation done once at init time.
379  */
380 struct mbuf_ctor_arg {
381 	uint16_t seg_buf_offset; /**< offset of data in data segment of mbuf. */
382 	uint16_t seg_buf_size;   /**< size of data segment in mbuf. */
383 };
384 
385 struct mbuf_pool_ctor_arg {
386 	uint16_t seg_buf_size; /**< size of data segment in mbuf. */
387 };
388 
389 static void
390 testpmd_mbuf_ctor(struct rte_mempool *mp,
391 		  void *opaque_arg,
392 		  void *raw_mbuf,
393 		  __attribute__((unused)) unsigned i)
394 {
395 	struct mbuf_ctor_arg *mb_ctor_arg;
396 	struct rte_mbuf    *mb;
397 
398 	mb_ctor_arg = (struct mbuf_ctor_arg *) opaque_arg;
399 	mb = (struct rte_mbuf *) raw_mbuf;
400 
401 	mb->type         = RTE_MBUF_PKT;
402 	mb->pool         = mp;
403 	mb->buf_addr     = (void *) ((char *)mb + mb_ctor_arg->seg_buf_offset);
404 	mb->buf_physaddr = (uint64_t) (rte_mempool_virt2phy(mp, mb) +
405 			mb_ctor_arg->seg_buf_offset);
406 	mb->buf_len      = mb_ctor_arg->seg_buf_size;
407 	mb->type         = RTE_MBUF_PKT;
408 	mb->ol_flags     = 0;
409 	mb->pkt.data     = (char *) mb->buf_addr + RTE_PKTMBUF_HEADROOM;
410 	mb->pkt.nb_segs  = 1;
411 	mb->pkt.vlan_macip.data = 0;
412 	mb->pkt.hash.rss = 0;
413 }
414 
415 static void
416 testpmd_mbuf_pool_ctor(struct rte_mempool *mp,
417 		       void *opaque_arg)
418 {
419 	struct mbuf_pool_ctor_arg      *mbp_ctor_arg;
420 	struct rte_pktmbuf_pool_private *mbp_priv;
421 
422 	if (mp->private_data_size < sizeof(struct rte_pktmbuf_pool_private)) {
423 		printf("%s(%s) private_data_size %d < %d\n",
424 		       __func__, mp->name, (int) mp->private_data_size,
425 		       (int) sizeof(struct rte_pktmbuf_pool_private));
426 		return;
427 	}
428 	mbp_ctor_arg = (struct mbuf_pool_ctor_arg *) opaque_arg;
429 	mbp_priv = rte_mempool_get_priv(mp);
430 	mbp_priv->mbuf_data_room_size = mbp_ctor_arg->seg_buf_size;
431 }
432 
433 static void
434 mbuf_pool_create(uint16_t mbuf_seg_size, unsigned nb_mbuf,
435 		 unsigned int socket_id)
436 {
437 	char pool_name[RTE_MEMPOOL_NAMESIZE];
438 	struct rte_mempool *rte_mp;
439 	struct mbuf_pool_ctor_arg mbp_ctor_arg;
440 	struct mbuf_ctor_arg mb_ctor_arg;
441 	uint32_t mb_size;
442 
443 	mbp_ctor_arg.seg_buf_size = (uint16_t) (RTE_PKTMBUF_HEADROOM +
444 						mbuf_seg_size);
445 	mb_ctor_arg.seg_buf_offset =
446 		(uint16_t) CACHE_LINE_ROUNDUP(sizeof(struct rte_mbuf));
447 	mb_ctor_arg.seg_buf_size = mbp_ctor_arg.seg_buf_size;
448 	mb_size = mb_ctor_arg.seg_buf_offset + mb_ctor_arg.seg_buf_size;
449 	mbuf_poolname_build(socket_id, pool_name, sizeof(pool_name));
450 
451 #ifdef RTE_LIBRTE_PMD_XENVIRT
452 	rte_mp = rte_mempool_gntalloc_create(pool_name, nb_mbuf, mb_size,
453                                    (unsigned) mb_mempool_cache,
454                                    sizeof(struct rte_pktmbuf_pool_private),
455                                    testpmd_mbuf_pool_ctor, &mbp_ctor_arg,
456                                    testpmd_mbuf_ctor, &mb_ctor_arg,
457                                    socket_id, 0);
458 
459 
460 
461 #else
462 	if (mp_anon != 0)
463 		rte_mp = mempool_anon_create(pool_name, nb_mbuf, mb_size,
464 				    (unsigned) mb_mempool_cache,
465 				    sizeof(struct rte_pktmbuf_pool_private),
466 				    testpmd_mbuf_pool_ctor, &mbp_ctor_arg,
467 				    testpmd_mbuf_ctor, &mb_ctor_arg,
468 				    socket_id, 0);
469 	else
470 		rte_mp = rte_mempool_create(pool_name, nb_mbuf, mb_size,
471 				    (unsigned) mb_mempool_cache,
472 				    sizeof(struct rte_pktmbuf_pool_private),
473 				    testpmd_mbuf_pool_ctor, &mbp_ctor_arg,
474 				    testpmd_mbuf_ctor, &mb_ctor_arg,
475 				    socket_id, 0);
476 
477 #endif
478 
479 	if (rte_mp == NULL) {
480 		rte_exit(EXIT_FAILURE, "Creation of mbuf pool for socket %u "
481 						"failed\n", socket_id);
482 	} else if (verbose_level > 0) {
483 		rte_mempool_dump(stdout, rte_mp);
484 	}
485 }
486 
487 /*
488  * Check given socket id is valid or not with NUMA mode,
489  * if valid, return 0, else return -1
490  */
491 static int
492 check_socket_id(const unsigned int socket_id)
493 {
494 	static int warning_once = 0;
495 
496 	if (socket_id >= MAX_SOCKET) {
497 		if (!warning_once && numa_support)
498 			printf("Warning: NUMA should be configured manually by"
499 			       " using --port-numa-config and"
500 			       " --ring-numa-config parameters along with"
501 			       " --numa.\n");
502 		warning_once = 1;
503 		return -1;
504 	}
505 	return 0;
506 }
507 
508 static void
509 init_config(void)
510 {
511 	portid_t pid;
512 	struct rte_port *port;
513 	struct rte_mempool *mbp;
514 	unsigned int nb_mbuf_per_pool;
515 	lcoreid_t  lc_id;
516 	uint8_t port_per_socket[MAX_SOCKET];
517 
518 	memset(port_per_socket,0,MAX_SOCKET);
519 	/* Configuration of logical cores. */
520 	fwd_lcores = rte_zmalloc("testpmd: fwd_lcores",
521 				sizeof(struct fwd_lcore *) * nb_lcores,
522 				CACHE_LINE_SIZE);
523 	if (fwd_lcores == NULL) {
524 		rte_exit(EXIT_FAILURE, "rte_zmalloc(%d (struct fwd_lcore *)) "
525 							"failed\n", nb_lcores);
526 	}
527 	for (lc_id = 0; lc_id < nb_lcores; lc_id++) {
528 		fwd_lcores[lc_id] = rte_zmalloc("testpmd: struct fwd_lcore",
529 					       sizeof(struct fwd_lcore),
530 					       CACHE_LINE_SIZE);
531 		if (fwd_lcores[lc_id] == NULL) {
532 			rte_exit(EXIT_FAILURE, "rte_zmalloc(struct fwd_lcore) "
533 								"failed\n");
534 		}
535 		fwd_lcores[lc_id]->cpuid_idx = lc_id;
536 	}
537 
538 	/*
539 	 * Create pools of mbuf.
540 	 * If NUMA support is disabled, create a single pool of mbuf in
541 	 * socket 0 memory by default.
542 	 * Otherwise, create a pool of mbuf in the memory of sockets 0 and 1.
543 	 *
544 	 * Use the maximum value of nb_rxd and nb_txd here, then nb_rxd and
545 	 * nb_txd can be configured at run time.
546 	 */
547 	if (param_total_num_mbufs)
548 		nb_mbuf_per_pool = param_total_num_mbufs;
549 	else {
550 		nb_mbuf_per_pool = RTE_TEST_RX_DESC_MAX + (nb_lcores * mb_mempool_cache)
551 				+ RTE_TEST_TX_DESC_MAX + MAX_PKT_BURST;
552 
553 		if (!numa_support)
554 			nb_mbuf_per_pool = (nb_mbuf_per_pool * nb_ports);
555 	}
556 
557 	if (!numa_support) {
558 		if (socket_num == UMA_NO_CONFIG)
559 			mbuf_pool_create(mbuf_data_size, nb_mbuf_per_pool, 0);
560 		else
561 			mbuf_pool_create(mbuf_data_size, nb_mbuf_per_pool,
562 						 socket_num);
563 	}
564 
565 	/* Configuration of Ethernet ports. */
566 	ports = rte_zmalloc("testpmd: ports",
567 			    sizeof(struct rte_port) * nb_ports,
568 			    CACHE_LINE_SIZE);
569 	if (ports == NULL) {
570 		rte_exit(EXIT_FAILURE, "rte_zmalloc(%d struct rte_port) "
571 							"failed\n", nb_ports);
572 	}
573 
574 	for (pid = 0; pid < nb_ports; pid++) {
575 		port = &ports[pid];
576 		rte_eth_dev_info_get(pid, &port->dev_info);
577 
578 		if (numa_support) {
579 			if (port_numa[pid] != NUMA_NO_CONFIG)
580 				port_per_socket[port_numa[pid]]++;
581 			else {
582 				uint32_t socket_id = rte_eth_dev_socket_id(pid);
583 
584 				/* if socket_id is invalid, set to 0 */
585 				if (check_socket_id(socket_id) < 0)
586 					socket_id = 0;
587 				port_per_socket[socket_id]++;
588 			}
589 		}
590 
591 		/* set flag to initialize port/queue */
592 		port->need_reconfig = 1;
593 		port->need_reconfig_queues = 1;
594 	}
595 
596 	if (numa_support) {
597 		uint8_t i;
598 		unsigned int nb_mbuf;
599 
600 		if (param_total_num_mbufs)
601 			nb_mbuf_per_pool = nb_mbuf_per_pool/nb_ports;
602 
603 		for (i = 0; i < MAX_SOCKET; i++) {
604 			nb_mbuf = (nb_mbuf_per_pool *
605 						port_per_socket[i]);
606 			if (nb_mbuf)
607 				mbuf_pool_create(mbuf_data_size,
608 						nb_mbuf,i);
609 		}
610 	}
611 	init_port_config();
612 
613 	/*
614 	 * Records which Mbuf pool to use by each logical core, if needed.
615 	 */
616 	for (lc_id = 0; lc_id < nb_lcores; lc_id++) {
617 		mbp = mbuf_pool_find(rte_lcore_to_socket_id(lc_id));
618 		if (mbp == NULL)
619 			mbp = mbuf_pool_find(0);
620 		fwd_lcores[lc_id]->mbp = mbp;
621 	}
622 
623 	/* Configuration of packet forwarding streams. */
624 	if (init_fwd_streams() < 0)
625 		rte_exit(EXIT_FAILURE, "FAIL from init_fwd_streams()\n");
626 }
627 
628 int
629 init_fwd_streams(void)
630 {
631 	portid_t pid;
632 	struct rte_port *port;
633 	streamid_t sm_id, nb_fwd_streams_new;
634 
635 	/* set socket id according to numa or not */
636 	for (pid = 0; pid < nb_ports; pid++) {
637 		port = &ports[pid];
638 		if (nb_rxq > port->dev_info.max_rx_queues) {
639 			printf("Fail: nb_rxq(%d) is greater than "
640 				"max_rx_queues(%d)\n", nb_rxq,
641 				port->dev_info.max_rx_queues);
642 			return -1;
643 		}
644 		if (nb_txq > port->dev_info.max_tx_queues) {
645 			printf("Fail: nb_txq(%d) is greater than "
646 				"max_tx_queues(%d)\n", nb_txq,
647 				port->dev_info.max_tx_queues);
648 			return -1;
649 		}
650 		if (numa_support) {
651 			if (port_numa[pid] != NUMA_NO_CONFIG)
652 				port->socket_id = port_numa[pid];
653 			else {
654 				port->socket_id = rte_eth_dev_socket_id(pid);
655 
656 				/* if socket_id is invalid, set to 0 */
657 				if (check_socket_id(port->socket_id) < 0)
658 					port->socket_id = 0;
659 			}
660 		}
661 		else {
662 			if (socket_num == UMA_NO_CONFIG)
663 				port->socket_id = 0;
664 			else
665 				port->socket_id = socket_num;
666 		}
667 	}
668 
669 	nb_fwd_streams_new = (streamid_t)(nb_ports * nb_rxq);
670 	if (nb_fwd_streams_new == nb_fwd_streams)
671 		return 0;
672 	/* clear the old */
673 	if (fwd_streams != NULL) {
674 		for (sm_id = 0; sm_id < nb_fwd_streams; sm_id++) {
675 			if (fwd_streams[sm_id] == NULL)
676 				continue;
677 			rte_free(fwd_streams[sm_id]);
678 			fwd_streams[sm_id] = NULL;
679 		}
680 		rte_free(fwd_streams);
681 		fwd_streams = NULL;
682 	}
683 
684 	/* init new */
685 	nb_fwd_streams = nb_fwd_streams_new;
686 	fwd_streams = rte_zmalloc("testpmd: fwd_streams",
687 		sizeof(struct fwd_stream *) * nb_fwd_streams, CACHE_LINE_SIZE);
688 	if (fwd_streams == NULL)
689 		rte_exit(EXIT_FAILURE, "rte_zmalloc(%d (struct fwd_stream *)) "
690 						"failed\n", nb_fwd_streams);
691 
692 	for (sm_id = 0; sm_id < nb_fwd_streams; sm_id++) {
693 		fwd_streams[sm_id] = rte_zmalloc("testpmd: struct fwd_stream",
694 				sizeof(struct fwd_stream), CACHE_LINE_SIZE);
695 		if (fwd_streams[sm_id] == NULL)
696 			rte_exit(EXIT_FAILURE, "rte_zmalloc(struct fwd_stream)"
697 								" failed\n");
698 	}
699 
700 	return 0;
701 }
702 
703 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
704 static void
705 pkt_burst_stats_display(const char *rx_tx, struct pkt_burst_stats *pbs)
706 {
707 	unsigned int total_burst;
708 	unsigned int nb_burst;
709 	unsigned int burst_stats[3];
710 	uint16_t pktnb_stats[3];
711 	uint16_t nb_pkt;
712 	int burst_percent[3];
713 
714 	/*
715 	 * First compute the total number of packet bursts and the
716 	 * two highest numbers of bursts of the same number of packets.
717 	 */
718 	total_burst = 0;
719 	burst_stats[0] = burst_stats[1] = burst_stats[2] = 0;
720 	pktnb_stats[0] = pktnb_stats[1] = pktnb_stats[2] = 0;
721 	for (nb_pkt = 0; nb_pkt < MAX_PKT_BURST; nb_pkt++) {
722 		nb_burst = pbs->pkt_burst_spread[nb_pkt];
723 		if (nb_burst == 0)
724 			continue;
725 		total_burst += nb_burst;
726 		if (nb_burst > burst_stats[0]) {
727 			burst_stats[1] = burst_stats[0];
728 			pktnb_stats[1] = pktnb_stats[0];
729 			burst_stats[0] = nb_burst;
730 			pktnb_stats[0] = nb_pkt;
731 		}
732 	}
733 	if (total_burst == 0)
734 		return;
735 	burst_percent[0] = (burst_stats[0] * 100) / total_burst;
736 	printf("  %s-bursts : %u [%d%% of %d pkts", rx_tx, total_burst,
737 	       burst_percent[0], (int) pktnb_stats[0]);
738 	if (burst_stats[0] == total_burst) {
739 		printf("]\n");
740 		return;
741 	}
742 	if (burst_stats[0] + burst_stats[1] == total_burst) {
743 		printf(" + %d%% of %d pkts]\n",
744 		       100 - burst_percent[0], pktnb_stats[1]);
745 		return;
746 	}
747 	burst_percent[1] = (burst_stats[1] * 100) / total_burst;
748 	burst_percent[2] = 100 - (burst_percent[0] + burst_percent[1]);
749 	if ((burst_percent[1] == 0) || (burst_percent[2] == 0)) {
750 		printf(" + %d%% of others]\n", 100 - burst_percent[0]);
751 		return;
752 	}
753 	printf(" + %d%% of %d pkts + %d%% of others]\n",
754 	       burst_percent[1], (int) pktnb_stats[1], burst_percent[2]);
755 }
756 #endif /* RTE_TEST_PMD_RECORD_BURST_STATS */
757 
758 static void
759 fwd_port_stats_display(portid_t port_id, struct rte_eth_stats *stats)
760 {
761 	struct rte_port *port;
762 	uint8_t i;
763 
764 	static const char *fwd_stats_border = "----------------------";
765 
766 	port = &ports[port_id];
767 	printf("\n  %s Forward statistics for port %-2d %s\n",
768 	       fwd_stats_border, port_id, fwd_stats_border);
769 
770 	if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
771 		printf("  RX-packets: %-14"PRIu64" RX-dropped: %-14"PRIu64"RX-total: "
772 		       "%-"PRIu64"\n",
773 		       stats->ipackets, stats->ierrors,
774 		       (uint64_t) (stats->ipackets + stats->ierrors));
775 
776 		if (cur_fwd_eng == &csum_fwd_engine)
777 			printf("  Bad-ipcsum: %-14"PRIu64" Bad-l4csum: %-14"PRIu64" \n",
778 			       port->rx_bad_ip_csum, port->rx_bad_l4_csum);
779 
780 		printf("  TX-packets: %-14"PRIu64" TX-dropped: %-14"PRIu64"TX-total: "
781 		       "%-"PRIu64"\n",
782 		       stats->opackets, port->tx_dropped,
783 		       (uint64_t) (stats->opackets + port->tx_dropped));
784 
785 		if (stats->rx_nombuf > 0)
786 			printf("  RX-nombufs: %-14"PRIu64"\n", stats->rx_nombuf);
787 
788 	}
789 	else {
790 		printf("  RX-packets:             %14"PRIu64"    RX-dropped:%14"PRIu64"    RX-total:"
791 		       "%14"PRIu64"\n",
792 		       stats->ipackets, stats->ierrors,
793 		       (uint64_t) (stats->ipackets + stats->ierrors));
794 
795 		if (cur_fwd_eng == &csum_fwd_engine)
796 			printf("  Bad-ipcsum:%14"PRIu64"    Bad-l4csum:%14"PRIu64"\n",
797 			       port->rx_bad_ip_csum, port->rx_bad_l4_csum);
798 
799 		printf("  TX-packets:             %14"PRIu64"    TX-dropped:%14"PRIu64"    TX-total:"
800 		       "%14"PRIu64"\n",
801 		       stats->opackets, port->tx_dropped,
802 		       (uint64_t) (stats->opackets + port->tx_dropped));
803 
804 		if (stats->rx_nombuf > 0)
805 			printf("  RX-nombufs:%14"PRIu64"\n", stats->rx_nombuf);
806 	}
807 
808 	/* Display statistics of XON/XOFF pause frames, if any. */
809 	if ((stats->tx_pause_xon  | stats->rx_pause_xon |
810 	     stats->tx_pause_xoff | stats->rx_pause_xoff) > 0) {
811 		printf("  RX-XOFF:    %-14"PRIu64" RX-XON:     %-14"PRIu64"\n",
812 		       stats->rx_pause_xoff, stats->rx_pause_xon);
813 		printf("  TX-XOFF:    %-14"PRIu64" TX-XON:     %-14"PRIu64"\n",
814 		       stats->tx_pause_xoff, stats->tx_pause_xon);
815 	}
816 
817 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
818 	if (port->rx_stream)
819 		pkt_burst_stats_display("RX",
820 			&port->rx_stream->rx_burst_stats);
821 	if (port->tx_stream)
822 		pkt_burst_stats_display("TX",
823 			&port->tx_stream->tx_burst_stats);
824 #endif
825 	/* stats fdir */
826 	if (fdir_conf.mode != RTE_FDIR_MODE_NONE)
827 		printf("  Fdirmiss:%14"PRIu64"	  Fdirmatch:%14"PRIu64"\n",
828 		       stats->fdirmiss,
829 		       stats->fdirmatch);
830 
831 	if (port->rx_queue_stats_mapping_enabled) {
832 		printf("\n");
833 		for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
834 			printf("  Stats reg %2d RX-packets:%14"PRIu64
835 			       "     RX-errors:%14"PRIu64
836 			       "    RX-bytes:%14"PRIu64"\n",
837 			       i, stats->q_ipackets[i], stats->q_errors[i], stats->q_ibytes[i]);
838 		}
839 		printf("\n");
840 	}
841 	if (port->tx_queue_stats_mapping_enabled) {
842 		for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
843 			printf("  Stats reg %2d TX-packets:%14"PRIu64
844 			       "                                 TX-bytes:%14"PRIu64"\n",
845 			       i, stats->q_opackets[i], stats->q_obytes[i]);
846 		}
847 	}
848 
849 	printf("  %s--------------------------------%s\n",
850 	       fwd_stats_border, fwd_stats_border);
851 }
852 
853 static void
854 fwd_stream_stats_display(streamid_t stream_id)
855 {
856 	struct fwd_stream *fs;
857 	static const char *fwd_top_stats_border = "-------";
858 
859 	fs = fwd_streams[stream_id];
860 	if ((fs->rx_packets == 0) && (fs->tx_packets == 0) &&
861 	    (fs->fwd_dropped == 0))
862 		return;
863 	printf("\n  %s Forward Stats for RX Port=%2d/Queue=%2d -> "
864 	       "TX Port=%2d/Queue=%2d %s\n",
865 	       fwd_top_stats_border, fs->rx_port, fs->rx_queue,
866 	       fs->tx_port, fs->tx_queue, fwd_top_stats_border);
867 	printf("  RX-packets: %-14u TX-packets: %-14u TX-dropped: %-14u",
868 	       fs->rx_packets, fs->tx_packets, fs->fwd_dropped);
869 
870 	/* if checksum mode */
871 	if (cur_fwd_eng == &csum_fwd_engine) {
872 	       printf("  RX- bad IP checksum: %-14u  Rx- bad L4 checksum: "
873 			"%-14u\n", fs->rx_bad_ip_csum, fs->rx_bad_l4_csum);
874 	}
875 
876 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
877 	pkt_burst_stats_display("RX", &fs->rx_burst_stats);
878 	pkt_burst_stats_display("TX", &fs->tx_burst_stats);
879 #endif
880 }
881 
882 static void
883 flush_fwd_rx_queues(void)
884 {
885 	struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
886 	portid_t  rxp;
887 	portid_t port_id;
888 	queueid_t rxq;
889 	uint16_t  nb_rx;
890 	uint16_t  i;
891 	uint8_t   j;
892 
893 	for (j = 0; j < 2; j++) {
894 		for (rxp = 0; rxp < cur_fwd_config.nb_fwd_ports; rxp++) {
895 			for (rxq = 0; rxq < nb_rxq; rxq++) {
896 				port_id = fwd_ports_ids[rxp];
897 				do {
898 					nb_rx = rte_eth_rx_burst(port_id, rxq,
899 						pkts_burst, MAX_PKT_BURST);
900 					for (i = 0; i < nb_rx; i++)
901 						rte_pktmbuf_free(pkts_burst[i]);
902 				} while (nb_rx > 0);
903 			}
904 		}
905 		rte_delay_ms(10); /* wait 10 milli-seconds before retrying */
906 	}
907 }
908 
909 static void
910 run_pkt_fwd_on_lcore(struct fwd_lcore *fc, packet_fwd_t pkt_fwd)
911 {
912 	struct fwd_stream **fsm;
913 	streamid_t nb_fs;
914 	streamid_t sm_id;
915 
916 	fsm = &fwd_streams[fc->stream_idx];
917 	nb_fs = fc->stream_nb;
918 	do {
919 		for (sm_id = 0; sm_id < nb_fs; sm_id++)
920 			(*pkt_fwd)(fsm[sm_id]);
921 	} while (! fc->stopped);
922 }
923 
924 static int
925 start_pkt_forward_on_core(void *fwd_arg)
926 {
927 	run_pkt_fwd_on_lcore((struct fwd_lcore *) fwd_arg,
928 			     cur_fwd_config.fwd_eng->packet_fwd);
929 	return 0;
930 }
931 
932 /*
933  * Run the TXONLY packet forwarding engine to send a single burst of packets.
934  * Used to start communication flows in network loopback test configurations.
935  */
936 static int
937 run_one_txonly_burst_on_core(void *fwd_arg)
938 {
939 	struct fwd_lcore *fwd_lc;
940 	struct fwd_lcore tmp_lcore;
941 
942 	fwd_lc = (struct fwd_lcore *) fwd_arg;
943 	tmp_lcore = *fwd_lc;
944 	tmp_lcore.stopped = 1;
945 	run_pkt_fwd_on_lcore(&tmp_lcore, tx_only_engine.packet_fwd);
946 	return 0;
947 }
948 
949 /*
950  * Launch packet forwarding:
951  *     - Setup per-port forwarding context.
952  *     - launch logical cores with their forwarding configuration.
953  */
954 static void
955 launch_packet_forwarding(lcore_function_t *pkt_fwd_on_lcore)
956 {
957 	port_fwd_begin_t port_fwd_begin;
958 	unsigned int i;
959 	unsigned int lc_id;
960 	int diag;
961 
962 	port_fwd_begin = cur_fwd_config.fwd_eng->port_fwd_begin;
963 	if (port_fwd_begin != NULL) {
964 		for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++)
965 			(*port_fwd_begin)(fwd_ports_ids[i]);
966 	}
967 	for (i = 0; i < cur_fwd_config.nb_fwd_lcores; i++) {
968 		lc_id = fwd_lcores_cpuids[i];
969 		if ((interactive == 0) || (lc_id != rte_lcore_id())) {
970 			fwd_lcores[i]->stopped = 0;
971 			diag = rte_eal_remote_launch(pkt_fwd_on_lcore,
972 						     fwd_lcores[i], lc_id);
973 			if (diag != 0)
974 				printf("launch lcore %u failed - diag=%d\n",
975 				       lc_id, diag);
976 		}
977 	}
978 }
979 
980 /*
981  * Launch packet forwarding configuration.
982  */
983 void
984 start_packet_forwarding(int with_tx_first)
985 {
986 	port_fwd_begin_t port_fwd_begin;
987 	port_fwd_end_t  port_fwd_end;
988 	struct rte_port *port;
989 	unsigned int i;
990 	portid_t   pt_id;
991 	streamid_t sm_id;
992 
993 	if (all_ports_started() == 0) {
994 		printf("Not all ports were started\n");
995 		return;
996 	}
997 	if (test_done == 0) {
998 		printf("Packet forwarding already started\n");
999 		return;
1000 	}
1001 	if(dcb_test) {
1002 		for (i = 0; i < nb_fwd_ports; i++) {
1003 			pt_id = fwd_ports_ids[i];
1004 			port = &ports[pt_id];
1005 			if (!port->dcb_flag) {
1006 				printf("In DCB mode, all forwarding ports must "
1007                                        "be configured in this mode.\n");
1008 				return;
1009 			}
1010 		}
1011 		if (nb_fwd_lcores == 1) {
1012 			printf("In DCB mode,the nb forwarding cores "
1013                                "should be larger than 1.\n");
1014 			return;
1015 		}
1016 	}
1017 	test_done = 0;
1018 
1019 	if(!no_flush_rx)
1020 		flush_fwd_rx_queues();
1021 
1022 	fwd_config_setup();
1023 	rxtx_config_display();
1024 
1025 	for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++) {
1026 		pt_id = fwd_ports_ids[i];
1027 		port = &ports[pt_id];
1028 		rte_eth_stats_get(pt_id, &port->stats);
1029 		port->tx_dropped = 0;
1030 
1031 		map_port_queue_stats_mapping_registers(pt_id, port);
1032 	}
1033 	for (sm_id = 0; sm_id < cur_fwd_config.nb_fwd_streams; sm_id++) {
1034 		fwd_streams[sm_id]->rx_packets = 0;
1035 		fwd_streams[sm_id]->tx_packets = 0;
1036 		fwd_streams[sm_id]->fwd_dropped = 0;
1037 		fwd_streams[sm_id]->rx_bad_ip_csum = 0;
1038 		fwd_streams[sm_id]->rx_bad_l4_csum = 0;
1039 
1040 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
1041 		memset(&fwd_streams[sm_id]->rx_burst_stats, 0,
1042 		       sizeof(fwd_streams[sm_id]->rx_burst_stats));
1043 		memset(&fwd_streams[sm_id]->tx_burst_stats, 0,
1044 		       sizeof(fwd_streams[sm_id]->tx_burst_stats));
1045 #endif
1046 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
1047 		fwd_streams[sm_id]->core_cycles = 0;
1048 #endif
1049 	}
1050 	if (with_tx_first) {
1051 		port_fwd_begin = tx_only_engine.port_fwd_begin;
1052 		if (port_fwd_begin != NULL) {
1053 			for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++)
1054 				(*port_fwd_begin)(fwd_ports_ids[i]);
1055 		}
1056 		launch_packet_forwarding(run_one_txonly_burst_on_core);
1057 		rte_eal_mp_wait_lcore();
1058 		port_fwd_end = tx_only_engine.port_fwd_end;
1059 		if (port_fwd_end != NULL) {
1060 			for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++)
1061 				(*port_fwd_end)(fwd_ports_ids[i]);
1062 		}
1063 	}
1064 	launch_packet_forwarding(start_pkt_forward_on_core);
1065 }
1066 
1067 void
1068 stop_packet_forwarding(void)
1069 {
1070 	struct rte_eth_stats stats;
1071 	struct rte_port *port;
1072 	port_fwd_end_t  port_fwd_end;
1073 	int i;
1074 	portid_t   pt_id;
1075 	streamid_t sm_id;
1076 	lcoreid_t  lc_id;
1077 	uint64_t total_recv;
1078 	uint64_t total_xmit;
1079 	uint64_t total_rx_dropped;
1080 	uint64_t total_tx_dropped;
1081 	uint64_t total_rx_nombuf;
1082 	uint64_t tx_dropped;
1083 	uint64_t rx_bad_ip_csum;
1084 	uint64_t rx_bad_l4_csum;
1085 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
1086 	uint64_t fwd_cycles;
1087 #endif
1088 	static const char *acc_stats_border = "+++++++++++++++";
1089 
1090 	if (all_ports_started() == 0) {
1091 		printf("Not all ports were started\n");
1092 		return;
1093 	}
1094 	if (test_done) {
1095 		printf("Packet forwarding not started\n");
1096 		return;
1097 	}
1098 	printf("Telling cores to stop...");
1099 	for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++)
1100 		fwd_lcores[lc_id]->stopped = 1;
1101 	printf("\nWaiting for lcores to finish...\n");
1102 	rte_eal_mp_wait_lcore();
1103 	port_fwd_end = cur_fwd_config.fwd_eng->port_fwd_end;
1104 	if (port_fwd_end != NULL) {
1105 		for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++) {
1106 			pt_id = fwd_ports_ids[i];
1107 			(*port_fwd_end)(pt_id);
1108 		}
1109 	}
1110 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
1111 	fwd_cycles = 0;
1112 #endif
1113 	for (sm_id = 0; sm_id < cur_fwd_config.nb_fwd_streams; sm_id++) {
1114 		if (cur_fwd_config.nb_fwd_streams >
1115 		    cur_fwd_config.nb_fwd_ports) {
1116 			fwd_stream_stats_display(sm_id);
1117 			ports[fwd_streams[sm_id]->tx_port].tx_stream = NULL;
1118 			ports[fwd_streams[sm_id]->rx_port].rx_stream = NULL;
1119 		} else {
1120 			ports[fwd_streams[sm_id]->tx_port].tx_stream =
1121 				fwd_streams[sm_id];
1122 			ports[fwd_streams[sm_id]->rx_port].rx_stream =
1123 				fwd_streams[sm_id];
1124 		}
1125 		tx_dropped = ports[fwd_streams[sm_id]->tx_port].tx_dropped;
1126 		tx_dropped = (uint64_t) (tx_dropped +
1127 					 fwd_streams[sm_id]->fwd_dropped);
1128 		ports[fwd_streams[sm_id]->tx_port].tx_dropped = tx_dropped;
1129 
1130 		rx_bad_ip_csum =
1131 			ports[fwd_streams[sm_id]->rx_port].rx_bad_ip_csum;
1132 		rx_bad_ip_csum = (uint64_t) (rx_bad_ip_csum +
1133 					 fwd_streams[sm_id]->rx_bad_ip_csum);
1134 		ports[fwd_streams[sm_id]->rx_port].rx_bad_ip_csum =
1135 							rx_bad_ip_csum;
1136 
1137 		rx_bad_l4_csum =
1138 			ports[fwd_streams[sm_id]->rx_port].rx_bad_l4_csum;
1139 		rx_bad_l4_csum = (uint64_t) (rx_bad_l4_csum +
1140 					 fwd_streams[sm_id]->rx_bad_l4_csum);
1141 		ports[fwd_streams[sm_id]->rx_port].rx_bad_l4_csum =
1142 							rx_bad_l4_csum;
1143 
1144 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
1145 		fwd_cycles = (uint64_t) (fwd_cycles +
1146 					 fwd_streams[sm_id]->core_cycles);
1147 #endif
1148 	}
1149 	total_recv = 0;
1150 	total_xmit = 0;
1151 	total_rx_dropped = 0;
1152 	total_tx_dropped = 0;
1153 	total_rx_nombuf  = 0;
1154 	for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++) {
1155 		pt_id = fwd_ports_ids[i];
1156 
1157 		port = &ports[pt_id];
1158 		rte_eth_stats_get(pt_id, &stats);
1159 		stats.ipackets -= port->stats.ipackets;
1160 		port->stats.ipackets = 0;
1161 		stats.opackets -= port->stats.opackets;
1162 		port->stats.opackets = 0;
1163 		stats.ibytes   -= port->stats.ibytes;
1164 		port->stats.ibytes = 0;
1165 		stats.obytes   -= port->stats.obytes;
1166 		port->stats.obytes = 0;
1167 		stats.ierrors  -= port->stats.ierrors;
1168 		port->stats.ierrors = 0;
1169 		stats.oerrors  -= port->stats.oerrors;
1170 		port->stats.oerrors = 0;
1171 		stats.rx_nombuf -= port->stats.rx_nombuf;
1172 		port->stats.rx_nombuf = 0;
1173 		stats.fdirmatch -= port->stats.fdirmatch;
1174 		port->stats.rx_nombuf = 0;
1175 		stats.fdirmiss -= port->stats.fdirmiss;
1176 		port->stats.rx_nombuf = 0;
1177 
1178 		total_recv += stats.ipackets;
1179 		total_xmit += stats.opackets;
1180 		total_rx_dropped += stats.ierrors;
1181 		total_tx_dropped += port->tx_dropped;
1182 		total_rx_nombuf  += stats.rx_nombuf;
1183 
1184 		fwd_port_stats_display(pt_id, &stats);
1185 	}
1186 	printf("\n  %s Accumulated forward statistics for all ports"
1187 	       "%s\n",
1188 	       acc_stats_border, acc_stats_border);
1189 	printf("  RX-packets: %-14"PRIu64" RX-dropped: %-14"PRIu64"RX-total: "
1190 	       "%-"PRIu64"\n"
1191 	       "  TX-packets: %-14"PRIu64" TX-dropped: %-14"PRIu64"TX-total: "
1192 	       "%-"PRIu64"\n",
1193 	       total_recv, total_rx_dropped, total_recv + total_rx_dropped,
1194 	       total_xmit, total_tx_dropped, total_xmit + total_tx_dropped);
1195 	if (total_rx_nombuf > 0)
1196 		printf("  RX-nombufs: %-14"PRIu64"\n", total_rx_nombuf);
1197 	printf("  %s++++++++++++++++++++++++++++++++++++++++++++++"
1198 	       "%s\n",
1199 	       acc_stats_border, acc_stats_border);
1200 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
1201 	if (total_recv > 0)
1202 		printf("\n  CPU cycles/packet=%u (total cycles="
1203 		       "%"PRIu64" / total RX packets=%"PRIu64")\n",
1204 		       (unsigned int)(fwd_cycles / total_recv),
1205 		       fwd_cycles, total_recv);
1206 #endif
1207 	printf("\nDone.\n");
1208 	test_done = 1;
1209 }
1210 
1211 static int
1212 all_ports_started(void)
1213 {
1214 	portid_t pi;
1215 	struct rte_port *port;
1216 
1217 	for (pi = 0; pi < nb_ports; pi++) {
1218 		port = &ports[pi];
1219 		/* Check if there is a port which is not started */
1220 		if (port->port_status != RTE_PORT_STARTED)
1221 			return 0;
1222 	}
1223 
1224 	/* No port is not started */
1225 	return 1;
1226 }
1227 
1228 int
1229 start_port(portid_t pid)
1230 {
1231 	int diag, need_check_link_status = 0;
1232 	portid_t pi;
1233 	queueid_t qi;
1234 	struct rte_port *port;
1235 	uint8_t *mac_addr;
1236 
1237 	if (test_done == 0) {
1238 		printf("Please stop forwarding first\n");
1239 		return -1;
1240 	}
1241 
1242 	if (init_fwd_streams() < 0) {
1243 		printf("Fail from init_fwd_streams()\n");
1244 		return -1;
1245 	}
1246 
1247 	if(dcb_config)
1248 		dcb_test = 1;
1249 	for (pi = 0; pi < nb_ports; pi++) {
1250 		if (pid < nb_ports && pid != pi)
1251 			continue;
1252 
1253 		port = &ports[pi];
1254 		if (rte_atomic16_cmpset(&(port->port_status), RTE_PORT_STOPPED,
1255 						 RTE_PORT_HANDLING) == 0) {
1256 			printf("Port %d is now not stopped\n", pi);
1257 			continue;
1258 		}
1259 
1260 		if (port->need_reconfig > 0) {
1261 			port->need_reconfig = 0;
1262 
1263 			printf("Configuring Port %d (socket %u)\n", pi,
1264 					port->socket_id);
1265 			/* configure port */
1266 			diag = rte_eth_dev_configure(pi, nb_rxq, nb_txq,
1267 						&(port->dev_conf));
1268 			if (diag != 0) {
1269 				if (rte_atomic16_cmpset(&(port->port_status),
1270 				RTE_PORT_HANDLING, RTE_PORT_STOPPED) == 0)
1271 					printf("Port %d can not be set back "
1272 							"to stopped\n", pi);
1273 				printf("Fail to configure port %d\n", pi);
1274 				/* try to reconfigure port next time */
1275 				port->need_reconfig = 1;
1276 				return -1;
1277 			}
1278 		}
1279 		if (port->need_reconfig_queues > 0) {
1280 			port->need_reconfig_queues = 0;
1281 			/* setup tx queues */
1282 			for (qi = 0; qi < nb_txq; qi++) {
1283 				if ((numa_support) &&
1284 					(txring_numa[pi] != NUMA_NO_CONFIG))
1285 					diag = rte_eth_tx_queue_setup(pi, qi,
1286 						nb_txd,txring_numa[pi],
1287 						&(port->tx_conf));
1288 				else
1289 					diag = rte_eth_tx_queue_setup(pi, qi,
1290 						nb_txd,port->socket_id,
1291 						&(port->tx_conf));
1292 
1293 				if (diag == 0)
1294 					continue;
1295 
1296 				/* Fail to setup tx queue, return */
1297 				if (rte_atomic16_cmpset(&(port->port_status),
1298 							RTE_PORT_HANDLING,
1299 							RTE_PORT_STOPPED) == 0)
1300 					printf("Port %d can not be set back "
1301 							"to stopped\n", pi);
1302 				printf("Fail to configure port %d tx queues\n", pi);
1303 				/* try to reconfigure queues next time */
1304 				port->need_reconfig_queues = 1;
1305 				return -1;
1306 			}
1307 			/* setup rx queues */
1308 			for (qi = 0; qi < nb_rxq; qi++) {
1309 				if ((numa_support) &&
1310 					(rxring_numa[pi] != NUMA_NO_CONFIG)) {
1311 					struct rte_mempool * mp =
1312 						mbuf_pool_find(rxring_numa[pi]);
1313 					if (mp == NULL) {
1314 						printf("Failed to setup RX queue:"
1315 							"No mempool allocation"
1316 							"on the socket %d\n",
1317 							rxring_numa[pi]);
1318 						return -1;
1319 					}
1320 
1321 					diag = rte_eth_rx_queue_setup(pi, qi,
1322 					     nb_rxd,rxring_numa[pi],
1323 					     &(port->rx_conf),mp);
1324 				}
1325 				else
1326 					diag = rte_eth_rx_queue_setup(pi, qi,
1327 					     nb_rxd,port->socket_id,
1328 					     &(port->rx_conf),
1329 				             mbuf_pool_find(port->socket_id));
1330 
1331 				if (diag == 0)
1332 					continue;
1333 
1334 
1335 				/* Fail to setup rx queue, return */
1336 				if (rte_atomic16_cmpset(&(port->port_status),
1337 							RTE_PORT_HANDLING,
1338 							RTE_PORT_STOPPED) == 0)
1339 					printf("Port %d can not be set back "
1340 							"to stopped\n", pi);
1341 				printf("Fail to configure port %d rx queues\n", pi);
1342 				/* try to reconfigure queues next time */
1343 				port->need_reconfig_queues = 1;
1344 				return -1;
1345 			}
1346 		}
1347 		/* start port */
1348 		if (rte_eth_dev_start(pi) < 0) {
1349 			printf("Fail to start port %d\n", pi);
1350 
1351 			/* Fail to setup rx queue, return */
1352 			if (rte_atomic16_cmpset(&(port->port_status),
1353 				RTE_PORT_HANDLING, RTE_PORT_STOPPED) == 0)
1354 				printf("Port %d can not be set back to "
1355 							"stopped\n", pi);
1356 			continue;
1357 		}
1358 
1359 		if (rte_atomic16_cmpset(&(port->port_status),
1360 			RTE_PORT_HANDLING, RTE_PORT_STARTED) == 0)
1361 			printf("Port %d can not be set into started\n", pi);
1362 
1363 		mac_addr = port->eth_addr.addr_bytes;
1364 		printf("Port %d: %02X:%02X:%02X:%02X:%02X:%02X\n", pi,
1365 		       mac_addr[0], mac_addr[1], mac_addr[2],
1366 		       mac_addr[3], mac_addr[4], mac_addr[5]);
1367 
1368 		/* at least one port started, need checking link status */
1369 		need_check_link_status = 1;
1370 	}
1371 
1372 	if (need_check_link_status && !no_link_check)
1373 		check_all_ports_link_status(nb_ports, RTE_PORT_ALL);
1374 	else
1375 		printf("Please stop the ports first\n");
1376 
1377 	printf("Done\n");
1378 	return 0;
1379 }
1380 
1381 void
1382 stop_port(portid_t pid)
1383 {
1384 	portid_t pi;
1385 	struct rte_port *port;
1386 	int need_check_link_status = 0;
1387 
1388 	if (test_done == 0) {
1389 		printf("Please stop forwarding first\n");
1390 		return;
1391 	}
1392 	if (dcb_test) {
1393 		dcb_test = 0;
1394 		dcb_config = 0;
1395 	}
1396 	printf("Stopping ports...\n");
1397 
1398 	for (pi = 0; pi < nb_ports; pi++) {
1399 		if (pid < nb_ports && pid != pi)
1400 			continue;
1401 
1402 		port = &ports[pi];
1403 		if (rte_atomic16_cmpset(&(port->port_status), RTE_PORT_STARTED,
1404 						RTE_PORT_HANDLING) == 0)
1405 			continue;
1406 
1407 		rte_eth_dev_stop(pi);
1408 
1409 		if (rte_atomic16_cmpset(&(port->port_status),
1410 			RTE_PORT_HANDLING, RTE_PORT_STOPPED) == 0)
1411 			printf("Port %d can not be set into stopped\n", pi);
1412 		need_check_link_status = 1;
1413 	}
1414 	if (need_check_link_status && !no_link_check)
1415 		check_all_ports_link_status(nb_ports, RTE_PORT_ALL);
1416 
1417 	printf("Done\n");
1418 }
1419 
1420 void
1421 close_port(portid_t pid)
1422 {
1423 	portid_t pi;
1424 	struct rte_port *port;
1425 
1426 	if (test_done == 0) {
1427 		printf("Please stop forwarding first\n");
1428 		return;
1429 	}
1430 
1431 	printf("Closing ports...\n");
1432 
1433 	for (pi = 0; pi < nb_ports; pi++) {
1434 		if (pid < nb_ports && pid != pi)
1435 			continue;
1436 
1437 		port = &ports[pi];
1438 		if (rte_atomic16_cmpset(&(port->port_status),
1439 			RTE_PORT_STOPPED, RTE_PORT_HANDLING) == 0) {
1440 			printf("Port %d is now not stopped\n", pi);
1441 			continue;
1442 		}
1443 
1444 		rte_eth_dev_close(pi);
1445 
1446 		if (rte_atomic16_cmpset(&(port->port_status),
1447 			RTE_PORT_HANDLING, RTE_PORT_CLOSED) == 0)
1448 			printf("Port %d can not be set into stopped\n", pi);
1449 	}
1450 
1451 	printf("Done\n");
1452 }
1453 
1454 int
1455 all_ports_stopped(void)
1456 {
1457 	portid_t pi;
1458 	struct rte_port *port;
1459 
1460 	for (pi = 0; pi < nb_ports; pi++) {
1461 		port = &ports[pi];
1462 		if (port->port_status != RTE_PORT_STOPPED)
1463 			return 0;
1464 	}
1465 
1466 	return 1;
1467 }
1468 
1469 void
1470 pmd_test_exit(void)
1471 {
1472 	portid_t pt_id;
1473 
1474 	for (pt_id = 0; pt_id < nb_ports; pt_id++) {
1475 		printf("Stopping port %d...", pt_id);
1476 		fflush(stdout);
1477 		rte_eth_dev_close(pt_id);
1478 		printf("done\n");
1479 	}
1480 	printf("bye...\n");
1481 }
1482 
1483 typedef void (*cmd_func_t)(void);
1484 struct pmd_test_command {
1485 	const char *cmd_name;
1486 	cmd_func_t cmd_func;
1487 };
1488 
1489 #define PMD_TEST_CMD_NB (sizeof(pmd_test_menu) / sizeof(pmd_test_menu[0]))
1490 
1491 /* Check the link status of all ports in up to 9s, and print them finally */
1492 static void
1493 check_all_ports_link_status(uint8_t port_num, uint32_t port_mask)
1494 {
1495 #define CHECK_INTERVAL 100 /* 100ms */
1496 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
1497 	uint8_t portid, count, all_ports_up, print_flag = 0;
1498 	struct rte_eth_link link;
1499 
1500 	printf("Checking link statuses...\n");
1501 	fflush(stdout);
1502 	for (count = 0; count <= MAX_CHECK_TIME; count++) {
1503 		all_ports_up = 1;
1504 		for (portid = 0; portid < port_num; portid++) {
1505 			if ((port_mask & (1 << portid)) == 0)
1506 				continue;
1507 			memset(&link, 0, sizeof(link));
1508 			rte_eth_link_get_nowait(portid, &link);
1509 			/* print link status if flag set */
1510 			if (print_flag == 1) {
1511 				if (link.link_status)
1512 					printf("Port %d Link Up - speed %u "
1513 						"Mbps - %s\n", (uint8_t)portid,
1514 						(unsigned)link.link_speed,
1515 				(link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
1516 					("full-duplex") : ("half-duplex\n"));
1517 				else
1518 					printf("Port %d Link Down\n",
1519 						(uint8_t)portid);
1520 				continue;
1521 			}
1522 			/* clear all_ports_up flag if any link down */
1523 			if (link.link_status == 0) {
1524 				all_ports_up = 0;
1525 				break;
1526 			}
1527 		}
1528 		/* after finally printing all link status, get out */
1529 		if (print_flag == 1)
1530 			break;
1531 
1532 		if (all_ports_up == 0) {
1533 			fflush(stdout);
1534 			rte_delay_ms(CHECK_INTERVAL);
1535 		}
1536 
1537 		/* set the print_flag if all ports up or timeout */
1538 		if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
1539 			print_flag = 1;
1540 		}
1541 	}
1542 }
1543 
1544 static int
1545 set_tx_queue_stats_mapping_registers(uint8_t port_id, struct rte_port *port)
1546 {
1547 	uint16_t i;
1548 	int diag;
1549 	uint8_t mapping_found = 0;
1550 
1551 	for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
1552 		if ((tx_queue_stats_mappings[i].port_id == port_id) &&
1553 				(tx_queue_stats_mappings[i].queue_id < nb_txq )) {
1554 			diag = rte_eth_dev_set_tx_queue_stats_mapping(port_id,
1555 					tx_queue_stats_mappings[i].queue_id,
1556 					tx_queue_stats_mappings[i].stats_counter_id);
1557 			if (diag != 0)
1558 				return diag;
1559 			mapping_found = 1;
1560 		}
1561 	}
1562 	if (mapping_found)
1563 		port->tx_queue_stats_mapping_enabled = 1;
1564 	return 0;
1565 }
1566 
1567 static int
1568 set_rx_queue_stats_mapping_registers(uint8_t port_id, struct rte_port *port)
1569 {
1570 	uint16_t i;
1571 	int diag;
1572 	uint8_t mapping_found = 0;
1573 
1574 	for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
1575 		if ((rx_queue_stats_mappings[i].port_id == port_id) &&
1576 				(rx_queue_stats_mappings[i].queue_id < nb_rxq )) {
1577 			diag = rte_eth_dev_set_rx_queue_stats_mapping(port_id,
1578 					rx_queue_stats_mappings[i].queue_id,
1579 					rx_queue_stats_mappings[i].stats_counter_id);
1580 			if (diag != 0)
1581 				return diag;
1582 			mapping_found = 1;
1583 		}
1584 	}
1585 	if (mapping_found)
1586 		port->rx_queue_stats_mapping_enabled = 1;
1587 	return 0;
1588 }
1589 
1590 static void
1591 map_port_queue_stats_mapping_registers(uint8_t pi, struct rte_port *port)
1592 {
1593 	int diag = 0;
1594 
1595 	diag = set_tx_queue_stats_mapping_registers(pi, port);
1596 	if (diag != 0) {
1597 		if (diag == -ENOTSUP) {
1598 			port->tx_queue_stats_mapping_enabled = 0;
1599 			printf("TX queue stats mapping not supported port id=%d\n", pi);
1600 		}
1601 		else
1602 			rte_exit(EXIT_FAILURE,
1603 					"set_tx_queue_stats_mapping_registers "
1604 					"failed for port id=%d diag=%d\n",
1605 					pi, diag);
1606 	}
1607 
1608 	diag = set_rx_queue_stats_mapping_registers(pi, port);
1609 	if (diag != 0) {
1610 		if (diag == -ENOTSUP) {
1611 			port->rx_queue_stats_mapping_enabled = 0;
1612 			printf("RX queue stats mapping not supported port id=%d\n", pi);
1613 		}
1614 		else
1615 			rte_exit(EXIT_FAILURE,
1616 					"set_rx_queue_stats_mapping_registers "
1617 					"failed for port id=%d diag=%d\n",
1618 					pi, diag);
1619 	}
1620 }
1621 
1622 void
1623 init_port_config(void)
1624 {
1625 	portid_t pid;
1626 	struct rte_port *port;
1627 
1628 	for (pid = 0; pid < nb_ports; pid++) {
1629 		port = &ports[pid];
1630 		port->dev_conf.rxmode = rx_mode;
1631 		port->dev_conf.fdir_conf = fdir_conf;
1632 		if (nb_rxq > 1) {
1633 			port->dev_conf.rx_adv_conf.rss_conf.rss_key = NULL;
1634 			port->dev_conf.rx_adv_conf.rss_conf.rss_hf = rss_hf;
1635 		} else {
1636 			port->dev_conf.rx_adv_conf.rss_conf.rss_key = NULL;
1637 			port->dev_conf.rx_adv_conf.rss_conf.rss_hf = 0;
1638 		}
1639 
1640 		/* In SR-IOV mode, RSS mode is not available */
1641 		if (port->dcb_flag == 0 && port->dev_info.max_vfs == 0) {
1642 			if( port->dev_conf.rx_adv_conf.rss_conf.rss_hf != 0)
1643 				port->dev_conf.rxmode.mq_mode = ETH_MQ_RX_RSS;
1644 			else
1645 				port->dev_conf.rxmode.mq_mode = ETH_MQ_RX_NONE;
1646 		}
1647 
1648 		port->rx_conf.rx_thresh = rx_thresh;
1649 		port->rx_conf.rx_free_thresh = rx_free_thresh;
1650 		port->rx_conf.rx_drop_en = rx_drop_en;
1651 		port->tx_conf.tx_thresh = tx_thresh;
1652 		port->tx_conf.tx_rs_thresh = tx_rs_thresh;
1653 		port->tx_conf.tx_free_thresh = tx_free_thresh;
1654 		port->tx_conf.txq_flags = txq_flags;
1655 
1656 		rte_eth_macaddr_get(pid, &port->eth_addr);
1657 
1658 		map_port_queue_stats_mapping_registers(pid, port);
1659 #ifdef RTE_NIC_BYPASS
1660 		rte_eth_dev_bypass_init(pid);
1661 #endif
1662 	}
1663 }
1664 
1665 const uint16_t vlan_tags[] = {
1666 		0,  1,  2,  3,  4,  5,  6,  7,
1667 		8,  9, 10, 11,  12, 13, 14, 15,
1668 		16, 17, 18, 19, 20, 21, 22, 23,
1669 		24, 25, 26, 27, 28, 29, 30, 31
1670 };
1671 
1672 static  int
1673 get_eth_dcb_conf(struct rte_eth_conf *eth_conf, struct dcb_config *dcb_conf)
1674 {
1675         uint8_t i;
1676 
1677  	/*
1678  	 * Builds up the correct configuration for dcb+vt based on the vlan tags array
1679  	 * given above, and the number of traffic classes available for use.
1680  	 */
1681 	if (dcb_conf->dcb_mode == DCB_VT_ENABLED) {
1682 		struct rte_eth_vmdq_dcb_conf vmdq_rx_conf;
1683 		struct rte_eth_vmdq_dcb_tx_conf vmdq_tx_conf;
1684 
1685 		/* VMDQ+DCB RX and TX configrations */
1686 		vmdq_rx_conf.enable_default_pool = 0;
1687 		vmdq_rx_conf.default_pool = 0;
1688 		vmdq_rx_conf.nb_queue_pools =
1689 			(dcb_conf->num_tcs ==  ETH_4_TCS ? ETH_32_POOLS : ETH_16_POOLS);
1690 		vmdq_tx_conf.nb_queue_pools =
1691 			(dcb_conf->num_tcs ==  ETH_4_TCS ? ETH_32_POOLS : ETH_16_POOLS);
1692 
1693 		vmdq_rx_conf.nb_pool_maps = sizeof( vlan_tags )/sizeof( vlan_tags[ 0 ]);
1694 		for (i = 0; i < vmdq_rx_conf.nb_pool_maps; i++) {
1695 			vmdq_rx_conf.pool_map[i].vlan_id = vlan_tags[ i ];
1696 			vmdq_rx_conf.pool_map[i].pools = 1 << (i % vmdq_rx_conf.nb_queue_pools);
1697 		}
1698 		for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++) {
1699 			vmdq_rx_conf.dcb_queue[i] = i;
1700 			vmdq_tx_conf.dcb_queue[i] = i;
1701 		}
1702 
1703 		/*set DCB mode of RX and TX of multiple queues*/
1704 		eth_conf->rxmode.mq_mode = ETH_MQ_RX_VMDQ_DCB;
1705 		eth_conf->txmode.mq_mode = ETH_MQ_TX_VMDQ_DCB;
1706 		if (dcb_conf->pfc_en)
1707 			eth_conf->dcb_capability_en = ETH_DCB_PG_SUPPORT|ETH_DCB_PFC_SUPPORT;
1708 		else
1709 			eth_conf->dcb_capability_en = ETH_DCB_PG_SUPPORT;
1710 
1711 		(void)(rte_memcpy(&eth_conf->rx_adv_conf.vmdq_dcb_conf, &vmdq_rx_conf,
1712                                 sizeof(struct rte_eth_vmdq_dcb_conf)));
1713 		(void)(rte_memcpy(&eth_conf->tx_adv_conf.vmdq_dcb_tx_conf, &vmdq_tx_conf,
1714                                 sizeof(struct rte_eth_vmdq_dcb_tx_conf)));
1715 	}
1716 	else {
1717 		struct rte_eth_dcb_rx_conf rx_conf;
1718 		struct rte_eth_dcb_tx_conf tx_conf;
1719 
1720 		/* queue mapping configuration of DCB RX and TX */
1721 		if (dcb_conf->num_tcs == ETH_4_TCS)
1722 			dcb_q_mapping = DCB_4_TCS_Q_MAPPING;
1723 		else
1724 			dcb_q_mapping = DCB_8_TCS_Q_MAPPING;
1725 
1726 		rx_conf.nb_tcs = dcb_conf->num_tcs;
1727 		tx_conf.nb_tcs = dcb_conf->num_tcs;
1728 
1729 		for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++){
1730 			rx_conf.dcb_queue[i] = i;
1731 			tx_conf.dcb_queue[i] = i;
1732 		}
1733 		eth_conf->rxmode.mq_mode = ETH_MQ_RX_DCB;
1734 		eth_conf->txmode.mq_mode = ETH_MQ_TX_DCB;
1735 		if (dcb_conf->pfc_en)
1736 			eth_conf->dcb_capability_en = ETH_DCB_PG_SUPPORT|ETH_DCB_PFC_SUPPORT;
1737 		else
1738 			eth_conf->dcb_capability_en = ETH_DCB_PG_SUPPORT;
1739 
1740 		(void)(rte_memcpy(&eth_conf->rx_adv_conf.dcb_rx_conf, &rx_conf,
1741                                 sizeof(struct rte_eth_dcb_rx_conf)));
1742 		(void)(rte_memcpy(&eth_conf->tx_adv_conf.dcb_tx_conf, &tx_conf,
1743                                 sizeof(struct rte_eth_dcb_tx_conf)));
1744 	}
1745 
1746 	return 0;
1747 }
1748 
1749 int
1750 init_port_dcb_config(portid_t pid,struct dcb_config *dcb_conf)
1751 {
1752 	struct rte_eth_conf port_conf;
1753 	struct rte_port *rte_port;
1754 	int retval;
1755 	uint16_t nb_vlan;
1756 	uint16_t i;
1757 
1758 	/* rxq and txq configuration in dcb mode */
1759 	nb_rxq = 128;
1760 	nb_txq = 128;
1761 	rx_free_thresh = 64;
1762 
1763 	memset(&port_conf,0,sizeof(struct rte_eth_conf));
1764 	/* Enter DCB configuration status */
1765 	dcb_config = 1;
1766 
1767 	nb_vlan = sizeof( vlan_tags )/sizeof( vlan_tags[ 0 ]);
1768 	/*set configuration of DCB in vt mode and DCB in non-vt mode*/
1769 	retval = get_eth_dcb_conf(&port_conf, dcb_conf);
1770 	if (retval < 0)
1771 		return retval;
1772 
1773 	rte_port = &ports[pid];
1774 	memcpy(&rte_port->dev_conf, &port_conf,sizeof(struct rte_eth_conf));
1775 
1776 	rte_port->rx_conf.rx_thresh = rx_thresh;
1777 	rte_port->rx_conf.rx_free_thresh = rx_free_thresh;
1778 	rte_port->tx_conf.tx_thresh = tx_thresh;
1779 	rte_port->tx_conf.tx_rs_thresh = tx_rs_thresh;
1780 	rte_port->tx_conf.tx_free_thresh = tx_free_thresh;
1781 	/* VLAN filter */
1782 	rte_port->dev_conf.rxmode.hw_vlan_filter = 1;
1783 	for (i = 0; i < nb_vlan; i++){
1784 		rx_vft_set(pid, vlan_tags[i], 1);
1785 	}
1786 
1787 	rte_eth_macaddr_get(pid, &rte_port->eth_addr);
1788 	map_port_queue_stats_mapping_registers(pid, rte_port);
1789 
1790 	rte_port->dcb_flag = 1;
1791 
1792 	return 0;
1793 }
1794 
1795 #ifdef RTE_EXEC_ENV_BAREMETAL
1796 #define main _main
1797 #endif
1798 
1799 int
1800 main(int argc, char** argv)
1801 {
1802 	int  diag;
1803 	uint8_t port_id;
1804 
1805 	diag = rte_eal_init(argc, argv);
1806 	if (diag < 0)
1807 		rte_panic("Cannot init EAL\n");
1808 
1809 	if (rte_eal_pci_probe())
1810 		rte_panic("Cannot probe PCI\n");
1811 
1812 	nb_ports = (portid_t) rte_eth_dev_count();
1813 	if (nb_ports == 0)
1814 		rte_exit(EXIT_FAILURE, "No probed ethernet devices - "
1815 							"check that "
1816 			  "CONFIG_RTE_LIBRTE_IGB_PMD=y and that "
1817 			  "CONFIG_RTE_LIBRTE_EM_PMD=y and that "
1818 			  "CONFIG_RTE_LIBRTE_IXGBE_PMD=y in your "
1819 			  "configuration file\n");
1820 
1821 	set_def_fwd_config();
1822 	if (nb_lcores == 0)
1823 		rte_panic("Empty set of forwarding logical cores - check the "
1824 			  "core mask supplied in the command parameters\n");
1825 
1826 	argc -= diag;
1827 	argv += diag;
1828 	if (argc > 1)
1829 		launch_args_parse(argc, argv);
1830 
1831 	if (nb_rxq > nb_txq)
1832 		printf("Warning: nb_rxq=%d enables RSS configuration, "
1833 		       "but nb_txq=%d will prevent to fully test it.\n",
1834 		       nb_rxq, nb_txq);
1835 
1836 	init_config();
1837 	if (start_port(RTE_PORT_ALL) != 0)
1838 		rte_exit(EXIT_FAILURE, "Start ports failed\n");
1839 
1840 	/* set all ports to promiscuous mode by default */
1841 	for (port_id = 0; port_id < nb_ports; port_id++)
1842 		rte_eth_promiscuous_enable(port_id);
1843 
1844 #ifdef RTE_LIBRTE_CMDLINE
1845 	if (interactive == 1) {
1846 		if (auto_start) {
1847 			printf("Start automatic packet forwarding\n");
1848 			start_packet_forwarding(0);
1849 		}
1850 		prompt();
1851 	} else
1852 #endif
1853 	{
1854 		char c;
1855 		int rc;
1856 
1857 		printf("No commandline core given, start packet forwarding\n");
1858 		start_packet_forwarding(0);
1859 		printf("Press enter to exit\n");
1860 		rc = read(0, &c, 1);
1861 		if (rc < 0)
1862 			return 1;
1863 	}
1864 
1865 	return 0;
1866 }
1867