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