apps: fix default mbuf size
[dpdk.git] / examples / l2fwd / main.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 <string.h>
37 #include <stdint.h>
38 #include <inttypes.h>
39 #include <sys/types.h>
40 #include <sys/queue.h>
41 #include <netinet/in.h>
42 #include <setjmp.h>
43 #include <stdarg.h>
44 #include <ctype.h>
45 #include <errno.h>
46 #include <getopt.h>
47
48 #include <rte_common.h>
49 #include <rte_log.h>
50 #include <rte_memory.h>
51 #include <rte_memcpy.h>
52 #include <rte_memzone.h>
53 #include <rte_eal.h>
54 #include <rte_per_lcore.h>
55 #include <rte_launch.h>
56 #include <rte_atomic.h>
57 #include <rte_cycles.h>
58 #include <rte_prefetch.h>
59 #include <rte_lcore.h>
60 #include <rte_per_lcore.h>
61 #include <rte_branch_prediction.h>
62 #include <rte_interrupts.h>
63 #include <rte_pci.h>
64 #include <rte_random.h>
65 #include <rte_debug.h>
66 #include <rte_ether.h>
67 #include <rte_ethdev.h>
68 #include <rte_ring.h>
69 #include <rte_mempool.h>
70 #include <rte_mbuf.h>
71
72 #define RTE_LOGTYPE_L2FWD RTE_LOGTYPE_USER1
73
74 #define NB_MBUF   8192
75
76 #define MAX_PKT_BURST 32
77 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
78
79 /*
80  * Configurable number of RX/TX ring descriptors
81  */
82 #define RTE_TEST_RX_DESC_DEFAULT 128
83 #define RTE_TEST_TX_DESC_DEFAULT 512
84 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
85 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
86
87 /* ethernet addresses of ports */
88 static struct ether_addr l2fwd_ports_eth_addr[RTE_MAX_ETHPORTS];
89
90 /* mask of enabled ports */
91 static uint32_t l2fwd_enabled_port_mask = 0;
92
93 /* list of enabled ports */
94 static uint32_t l2fwd_dst_ports[RTE_MAX_ETHPORTS];
95
96 static unsigned int l2fwd_rx_queue_per_lcore = 1;
97
98 struct mbuf_table {
99         unsigned len;
100         struct rte_mbuf *m_table[MAX_PKT_BURST];
101 };
102
103 #define MAX_RX_QUEUE_PER_LCORE 16
104 #define MAX_TX_QUEUE_PER_PORT 16
105 struct lcore_queue_conf {
106         unsigned n_rx_port;
107         unsigned rx_port_list[MAX_RX_QUEUE_PER_LCORE];
108         struct mbuf_table tx_mbufs[RTE_MAX_ETHPORTS];
109
110 } __rte_cache_aligned;
111 struct lcore_queue_conf lcore_queue_conf[RTE_MAX_LCORE];
112
113 static const struct rte_eth_conf port_conf = {
114         .rxmode = {
115                 .split_hdr_size = 0,
116                 .header_split   = 0, /**< Header Split disabled */
117                 .hw_ip_checksum = 0, /**< IP checksum offload disabled */
118                 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
119                 .jumbo_frame    = 0, /**< Jumbo Frame Support disabled */
120                 .hw_strip_crc   = 0, /**< CRC stripped by hardware */
121         },
122         .txmode = {
123                 .mq_mode = ETH_MQ_TX_NONE,
124         },
125 };
126
127 struct rte_mempool * l2fwd_pktmbuf_pool = NULL;
128
129 /* Per-port statistics struct */
130 struct l2fwd_port_statistics {
131         uint64_t tx;
132         uint64_t rx;
133         uint64_t dropped;
134 } __rte_cache_aligned;
135 struct l2fwd_port_statistics port_statistics[RTE_MAX_ETHPORTS];
136
137 /* A tsc-based timer responsible for triggering statistics printout */
138 #define TIMER_MILLISECOND 2000000ULL /* around 1ms at 2 Ghz */
139 #define MAX_TIMER_PERIOD 86400 /* 1 day max */
140 static int64_t timer_period = 10 * TIMER_MILLISECOND * 1000; /* default period is 10 seconds */
141
142 /* Print out statistics on packets dropped */
143 static void
144 print_stats(void)
145 {
146         uint64_t total_packets_dropped, total_packets_tx, total_packets_rx;
147         unsigned portid;
148
149         total_packets_dropped = 0;
150         total_packets_tx = 0;
151         total_packets_rx = 0;
152
153         const char clr[] = { 27, '[', '2', 'J', '\0' };
154         const char topLeft[] = { 27, '[', '1', ';', '1', 'H','\0' };
155
156                 /* Clear screen and move to top left */
157         printf("%s%s", clr, topLeft);
158
159         printf("\nPort statistics ====================================");
160
161         for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
162                 /* skip disabled ports */
163                 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
164                         continue;
165                 printf("\nStatistics for port %u ------------------------------"
166                            "\nPackets sent: %24"PRIu64
167                            "\nPackets received: %20"PRIu64
168                            "\nPackets dropped: %21"PRIu64,
169                            portid,
170                            port_statistics[portid].tx,
171                            port_statistics[portid].rx,
172                            port_statistics[portid].dropped);
173
174                 total_packets_dropped += port_statistics[portid].dropped;
175                 total_packets_tx += port_statistics[portid].tx;
176                 total_packets_rx += port_statistics[portid].rx;
177         }
178         printf("\nAggregate statistics ==============================="
179                    "\nTotal packets sent: %18"PRIu64
180                    "\nTotal packets received: %14"PRIu64
181                    "\nTotal packets dropped: %15"PRIu64,
182                    total_packets_tx,
183                    total_packets_rx,
184                    total_packets_dropped);
185         printf("\n====================================================\n");
186 }
187
188 /* Send the burst of packets on an output interface */
189 static int
190 l2fwd_send_burst(struct lcore_queue_conf *qconf, unsigned n, uint8_t port)
191 {
192         struct rte_mbuf **m_table;
193         unsigned ret;
194         unsigned queueid =0;
195
196         m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table;
197
198         ret = rte_eth_tx_burst(port, (uint16_t) queueid, m_table, (uint16_t) n);
199         port_statistics[port].tx += ret;
200         if (unlikely(ret < n)) {
201                 port_statistics[port].dropped += (n - ret);
202                 do {
203                         rte_pktmbuf_free(m_table[ret]);
204                 } while (++ret < n);
205         }
206
207         return 0;
208 }
209
210 /* Enqueue packets for TX and prepare them to be sent */
211 static int
212 l2fwd_send_packet(struct rte_mbuf *m, uint8_t port)
213 {
214         unsigned lcore_id, len;
215         struct lcore_queue_conf *qconf;
216
217         lcore_id = rte_lcore_id();
218
219         qconf = &lcore_queue_conf[lcore_id];
220         len = qconf->tx_mbufs[port].len;
221         qconf->tx_mbufs[port].m_table[len] = m;
222         len++;
223
224         /* enough pkts to be sent */
225         if (unlikely(len == MAX_PKT_BURST)) {
226                 l2fwd_send_burst(qconf, MAX_PKT_BURST, port);
227                 len = 0;
228         }
229
230         qconf->tx_mbufs[port].len = len;
231         return 0;
232 }
233
234 static void
235 l2fwd_simple_forward(struct rte_mbuf *m, unsigned portid)
236 {
237         struct ether_hdr *eth;
238         void *tmp;
239         unsigned dst_port;
240
241         dst_port = l2fwd_dst_ports[portid];
242         eth = rte_pktmbuf_mtod(m, struct ether_hdr *);
243
244         /* 02:00:00:00:00:xx */
245         tmp = &eth->d_addr.addr_bytes[0];
246         *((uint64_t *)tmp) = 0x000000000002 + ((uint64_t)dst_port << 40);
247
248         /* src addr */
249         ether_addr_copy(&l2fwd_ports_eth_addr[dst_port], &eth->s_addr);
250
251         l2fwd_send_packet(m, (uint8_t) dst_port);
252 }
253
254 /* main processing loop */
255 static void
256 l2fwd_main_loop(void)
257 {
258         struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
259         struct rte_mbuf *m;
260         unsigned lcore_id;
261         uint64_t prev_tsc, diff_tsc, cur_tsc, timer_tsc;
262         unsigned i, j, portid, nb_rx;
263         struct lcore_queue_conf *qconf;
264         const uint64_t drain_tsc = (rte_get_tsc_hz() + US_PER_S - 1) / US_PER_S * BURST_TX_DRAIN_US;
265
266         prev_tsc = 0;
267         timer_tsc = 0;
268
269         lcore_id = rte_lcore_id();
270         qconf = &lcore_queue_conf[lcore_id];
271
272         if (qconf->n_rx_port == 0) {
273                 RTE_LOG(INFO, L2FWD, "lcore %u has nothing to do\n", lcore_id);
274                 return;
275         }
276
277         RTE_LOG(INFO, L2FWD, "entering main loop on lcore %u\n", lcore_id);
278
279         for (i = 0; i < qconf->n_rx_port; i++) {
280
281                 portid = qconf->rx_port_list[i];
282                 RTE_LOG(INFO, L2FWD, " -- lcoreid=%u portid=%u\n", lcore_id,
283                         portid);
284         }
285
286         while (1) {
287
288                 cur_tsc = rte_rdtsc();
289
290                 /*
291                  * TX burst queue drain
292                  */
293                 diff_tsc = cur_tsc - prev_tsc;
294                 if (unlikely(diff_tsc > drain_tsc)) {
295
296                         for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
297                                 if (qconf->tx_mbufs[portid].len == 0)
298                                         continue;
299                                 l2fwd_send_burst(&lcore_queue_conf[lcore_id],
300                                                  qconf->tx_mbufs[portid].len,
301                                                  (uint8_t) portid);
302                                 qconf->tx_mbufs[portid].len = 0;
303                         }
304
305                         /* if timer is enabled */
306                         if (timer_period > 0) {
307
308                                 /* advance the timer */
309                                 timer_tsc += diff_tsc;
310
311                                 /* if timer has reached its timeout */
312                                 if (unlikely(timer_tsc >= (uint64_t) timer_period)) {
313
314                                         /* do this only on master core */
315                                         if (lcore_id == rte_get_master_lcore()) {
316                                                 print_stats();
317                                                 /* reset the timer */
318                                                 timer_tsc = 0;
319                                         }
320                                 }
321                         }
322
323                         prev_tsc = cur_tsc;
324                 }
325
326                 /*
327                  * Read packet from RX queues
328                  */
329                 for (i = 0; i < qconf->n_rx_port; i++) {
330
331                         portid = qconf->rx_port_list[i];
332                         nb_rx = rte_eth_rx_burst((uint8_t) portid, 0,
333                                                  pkts_burst, MAX_PKT_BURST);
334
335                         port_statistics[portid].rx += nb_rx;
336
337                         for (j = 0; j < nb_rx; j++) {
338                                 m = pkts_burst[j];
339                                 rte_prefetch0(rte_pktmbuf_mtod(m, void *));
340                                 l2fwd_simple_forward(m, portid);
341                         }
342                 }
343         }
344 }
345
346 static int
347 l2fwd_launch_one_lcore(__attribute__((unused)) void *dummy)
348 {
349         l2fwd_main_loop();
350         return 0;
351 }
352
353 /* display usage */
354 static void
355 l2fwd_usage(const char *prgname)
356 {
357         printf("%s [EAL options] -- -p PORTMASK [-q NQ]\n"
358                "  -p PORTMASK: hexadecimal bitmask of ports to configure\n"
359                "  -q NQ: number of queue (=ports) per lcore (default is 1)\n"
360                    "  -T PERIOD: statistics will be refreshed each PERIOD seconds (0 to disable, 10 default, 86400 maximum)\n",
361                prgname);
362 }
363
364 static int
365 l2fwd_parse_portmask(const char *portmask)
366 {
367         char *end = NULL;
368         unsigned long pm;
369
370         /* parse hexadecimal string */
371         pm = strtoul(portmask, &end, 16);
372         if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
373                 return -1;
374
375         if (pm == 0)
376                 return -1;
377
378         return pm;
379 }
380
381 static unsigned int
382 l2fwd_parse_nqueue(const char *q_arg)
383 {
384         char *end = NULL;
385         unsigned long n;
386
387         /* parse hexadecimal string */
388         n = strtoul(q_arg, &end, 10);
389         if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
390                 return 0;
391         if (n == 0)
392                 return 0;
393         if (n >= MAX_RX_QUEUE_PER_LCORE)
394                 return 0;
395
396         return n;
397 }
398
399 static int
400 l2fwd_parse_timer_period(const char *q_arg)
401 {
402         char *end = NULL;
403         int n;
404
405         /* parse number string */
406         n = strtol(q_arg, &end, 10);
407         if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
408                 return -1;
409         if (n >= MAX_TIMER_PERIOD)
410                 return -1;
411
412         return n;
413 }
414
415 /* Parse the argument given in the command line of the application */
416 static int
417 l2fwd_parse_args(int argc, char **argv)
418 {
419         int opt, ret;
420         char **argvopt;
421         int option_index;
422         char *prgname = argv[0];
423         static struct option lgopts[] = {
424                 {NULL, 0, 0, 0}
425         };
426
427         argvopt = argv;
428
429         while ((opt = getopt_long(argc, argvopt, "p:q:T:",
430                                   lgopts, &option_index)) != EOF) {
431
432                 switch (opt) {
433                 /* portmask */
434                 case 'p':
435                         l2fwd_enabled_port_mask = l2fwd_parse_portmask(optarg);
436                         if (l2fwd_enabled_port_mask == 0) {
437                                 printf("invalid portmask\n");
438                                 l2fwd_usage(prgname);
439                                 return -1;
440                         }
441                         break;
442
443                 /* nqueue */
444                 case 'q':
445                         l2fwd_rx_queue_per_lcore = l2fwd_parse_nqueue(optarg);
446                         if (l2fwd_rx_queue_per_lcore == 0) {
447                                 printf("invalid queue number\n");
448                                 l2fwd_usage(prgname);
449                                 return -1;
450                         }
451                         break;
452
453                 /* timer period */
454                 case 'T':
455                         timer_period = l2fwd_parse_timer_period(optarg) * 1000 * TIMER_MILLISECOND;
456                         if (timer_period < 0) {
457                                 printf("invalid timer period\n");
458                                 l2fwd_usage(prgname);
459                                 return -1;
460                         }
461                         break;
462
463                 /* long options */
464                 case 0:
465                         l2fwd_usage(prgname);
466                         return -1;
467
468                 default:
469                         l2fwd_usage(prgname);
470                         return -1;
471                 }
472         }
473
474         if (optind >= 0)
475                 argv[optind-1] = prgname;
476
477         ret = optind-1;
478         optind = 0; /* reset getopt lib */
479         return ret;
480 }
481
482 /* Check the link status of all ports in up to 9s, and print them finally */
483 static void
484 check_all_ports_link_status(uint8_t port_num, uint32_t port_mask)
485 {
486 #define CHECK_INTERVAL 100 /* 100ms */
487 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
488         uint8_t portid, count, all_ports_up, print_flag = 0;
489         struct rte_eth_link link;
490
491         printf("\nChecking link status");
492         fflush(stdout);
493         for (count = 0; count <= MAX_CHECK_TIME; count++) {
494                 all_ports_up = 1;
495                 for (portid = 0; portid < port_num; portid++) {
496                         if ((port_mask & (1 << portid)) == 0)
497                                 continue;
498                         memset(&link, 0, sizeof(link));
499                         rte_eth_link_get_nowait(portid, &link);
500                         /* print link status if flag set */
501                         if (print_flag == 1) {
502                                 if (link.link_status)
503                                         printf("Port %d Link Up - speed %u "
504                                                 "Mbps - %s\n", (uint8_t)portid,
505                                                 (unsigned)link.link_speed,
506                                 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
507                                         ("full-duplex") : ("half-duplex\n"));
508                                 else
509                                         printf("Port %d Link Down\n",
510                                                 (uint8_t)portid);
511                                 continue;
512                         }
513                         /* clear all_ports_up flag if any link down */
514                         if (link.link_status == 0) {
515                                 all_ports_up = 0;
516                                 break;
517                         }
518                 }
519                 /* after finally printing all link status, get out */
520                 if (print_flag == 1)
521                         break;
522
523                 if (all_ports_up == 0) {
524                         printf(".");
525                         fflush(stdout);
526                         rte_delay_ms(CHECK_INTERVAL);
527                 }
528
529                 /* set the print_flag if all ports up or timeout */
530                 if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
531                         print_flag = 1;
532                         printf("done\n");
533                 }
534         }
535 }
536
537 int
538 main(int argc, char **argv)
539 {
540         struct lcore_queue_conf *qconf;
541         struct rte_eth_dev_info dev_info;
542         int ret;
543         uint8_t nb_ports;
544         uint8_t nb_ports_available;
545         uint8_t portid, last_port;
546         unsigned lcore_id, rx_lcore_id;
547         unsigned nb_ports_in_mask = 0;
548
549         /* init EAL */
550         ret = rte_eal_init(argc, argv);
551         if (ret < 0)
552                 rte_exit(EXIT_FAILURE, "Invalid EAL arguments\n");
553         argc -= ret;
554         argv += ret;
555
556         /* parse application arguments (after the EAL ones) */
557         ret = l2fwd_parse_args(argc, argv);
558         if (ret < 0)
559                 rte_exit(EXIT_FAILURE, "Invalid L2FWD arguments\n");
560
561         /* create the mbuf pool */
562         l2fwd_pktmbuf_pool = rte_pktmbuf_pool_create("mbuf_pool", NB_MBUF, 32,
563                 0, RTE_MBUF_DEFAULT_BUF_SIZE, rte_socket_id());
564         if (l2fwd_pktmbuf_pool == NULL)
565                 rte_exit(EXIT_FAILURE, "Cannot init mbuf pool\n");
566
567         nb_ports = rte_eth_dev_count();
568         if (nb_ports == 0)
569                 rte_exit(EXIT_FAILURE, "No Ethernet ports - bye\n");
570
571         if (nb_ports > RTE_MAX_ETHPORTS)
572                 nb_ports = RTE_MAX_ETHPORTS;
573
574         /* reset l2fwd_dst_ports */
575         for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++)
576                 l2fwd_dst_ports[portid] = 0;
577         last_port = 0;
578
579         /*
580          * Each logical core is assigned a dedicated TX queue on each port.
581          */
582         for (portid = 0; portid < nb_ports; portid++) {
583                 /* skip ports that are not enabled */
584                 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
585                         continue;
586
587                 if (nb_ports_in_mask % 2) {
588                         l2fwd_dst_ports[portid] = last_port;
589                         l2fwd_dst_ports[last_port] = portid;
590                 }
591                 else
592                         last_port = portid;
593
594                 nb_ports_in_mask++;
595
596                 rte_eth_dev_info_get(portid, &dev_info);
597         }
598         if (nb_ports_in_mask % 2) {
599                 printf("Notice: odd number of ports in portmask.\n");
600                 l2fwd_dst_ports[last_port] = last_port;
601         }
602
603         rx_lcore_id = 0;
604         qconf = NULL;
605
606         /* Initialize the port/queue configuration of each logical core */
607         for (portid = 0; portid < nb_ports; portid++) {
608                 /* skip ports that are not enabled */
609                 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
610                         continue;
611
612                 /* get the lcore_id for this port */
613                 while (rte_lcore_is_enabled(rx_lcore_id) == 0 ||
614                        lcore_queue_conf[rx_lcore_id].n_rx_port ==
615                        l2fwd_rx_queue_per_lcore) {
616                         rx_lcore_id++;
617                         if (rx_lcore_id >= RTE_MAX_LCORE)
618                                 rte_exit(EXIT_FAILURE, "Not enough cores\n");
619                 }
620
621                 if (qconf != &lcore_queue_conf[rx_lcore_id])
622                         /* Assigned a new logical core in the loop above. */
623                         qconf = &lcore_queue_conf[rx_lcore_id];
624
625                 qconf->rx_port_list[qconf->n_rx_port] = portid;
626                 qconf->n_rx_port++;
627                 printf("Lcore %u: RX port %u\n", rx_lcore_id, (unsigned) portid);
628         }
629
630         nb_ports_available = nb_ports;
631
632         /* Initialise each port */
633         for (portid = 0; portid < nb_ports; portid++) {
634                 /* skip ports that are not enabled */
635                 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0) {
636                         printf("Skipping disabled port %u\n", (unsigned) portid);
637                         nb_ports_available--;
638                         continue;
639                 }
640                 /* init port */
641                 printf("Initializing port %u... ", (unsigned) portid);
642                 fflush(stdout);
643                 ret = rte_eth_dev_configure(portid, 1, 1, &port_conf);
644                 if (ret < 0)
645                         rte_exit(EXIT_FAILURE, "Cannot configure device: err=%d, port=%u\n",
646                                   ret, (unsigned) portid);
647
648                 rte_eth_macaddr_get(portid,&l2fwd_ports_eth_addr[portid]);
649
650                 /* init one RX queue */
651                 fflush(stdout);
652                 ret = rte_eth_rx_queue_setup(portid, 0, nb_rxd,
653                                              rte_eth_dev_socket_id(portid),
654                                              NULL,
655                                              l2fwd_pktmbuf_pool);
656                 if (ret < 0)
657                         rte_exit(EXIT_FAILURE, "rte_eth_rx_queue_setup:err=%d, port=%u\n",
658                                   ret, (unsigned) portid);
659
660                 /* init one TX queue on each port */
661                 fflush(stdout);
662                 ret = rte_eth_tx_queue_setup(portid, 0, nb_txd,
663                                 rte_eth_dev_socket_id(portid),
664                                 NULL);
665                 if (ret < 0)
666                         rte_exit(EXIT_FAILURE, "rte_eth_tx_queue_setup:err=%d, port=%u\n",
667                                 ret, (unsigned) portid);
668
669                 /* Start device */
670                 ret = rte_eth_dev_start(portid);
671                 if (ret < 0)
672                         rte_exit(EXIT_FAILURE, "rte_eth_dev_start:err=%d, port=%u\n",
673                                   ret, (unsigned) portid);
674
675                 printf("done: \n");
676
677                 rte_eth_promiscuous_enable(portid);
678
679                 printf("Port %u, MAC address: %02X:%02X:%02X:%02X:%02X:%02X\n\n",
680                                 (unsigned) portid,
681                                 l2fwd_ports_eth_addr[portid].addr_bytes[0],
682                                 l2fwd_ports_eth_addr[portid].addr_bytes[1],
683                                 l2fwd_ports_eth_addr[portid].addr_bytes[2],
684                                 l2fwd_ports_eth_addr[portid].addr_bytes[3],
685                                 l2fwd_ports_eth_addr[portid].addr_bytes[4],
686                                 l2fwd_ports_eth_addr[portid].addr_bytes[5]);
687
688                 /* initialize port stats */
689                 memset(&port_statistics, 0, sizeof(port_statistics));
690         }
691
692         if (!nb_ports_available) {
693                 rte_exit(EXIT_FAILURE,
694                         "All available ports are disabled. Please set portmask.\n");
695         }
696
697         check_all_ports_link_status(nb_ports, l2fwd_enabled_port_mask);
698
699         /* launch per-lcore init on every lcore */
700         rte_eal_mp_remote_launch(l2fwd_launch_one_lcore, NULL, CALL_MASTER);
701         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
702                 if (rte_eal_wait_lcore(lcore_id) < 0)
703                         return -1;
704         }
705
706         return 0;
707 }
708