examples: numa updates
[dpdk.git] / examples / ipv4_frag / main.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2013 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
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <stdint.h>
38 #include <inttypes.h>
39 #include <sys/types.h>
40 #include <sys/param.h>
41 #include <string.h>
42 #include <sys/queue.h>
43 #include <stdarg.h>
44 #include <errno.h>
45 #include <getopt.h>
46
47 #include <rte_common.h>
48 #include <rte_byteorder.h>
49 #include <rte_log.h>
50 #include <rte_memory.h>
51 #include <rte_memcpy.h>
52 #include <rte_memzone.h>
53 #include <rte_tailq.h>
54 #include <rte_eal.h>
55 #include <rte_per_lcore.h>
56 #include <rte_launch.h>
57 #include <rte_atomic.h>
58 #include <rte_cycles.h>
59 #include <rte_prefetch.h>
60 #include <rte_lcore.h>
61 #include <rte_per_lcore.h>
62 #include <rte_branch_prediction.h>
63 #include <rte_interrupts.h>
64 #include <rte_pci.h>
65 #include <rte_random.h>
66 #include <rte_debug.h>
67 #include <rte_ether.h>
68 #include <rte_ethdev.h>
69 #include <rte_ring.h>
70 #include <rte_mempool.h>
71 #include <rte_mbuf.h>
72 #include <rte_lpm.h>
73 #include <rte_ip.h>
74
75 #include "rte_ipv4_frag.h"
76 #include "main.h"
77
78 #define RTE_LOGTYPE_L3FWD RTE_LOGTYPE_USER1
79
80 #define MAX_PORTS 32
81
82 #define MBUF_SIZE (2048 + sizeof(struct rte_mbuf) + RTE_PKTMBUF_HEADROOM)
83
84 /* allow max jumbo frame 9.5 KB */
85 #define JUMBO_FRAME_MAX_SIZE    0x2600
86
87 #define ROUNDUP_DIV(a, b)       (((a) + (b) - 1) / (b))
88
89 /*
90  * Max number of fragments per packet expected.
91  */
92 #define MAX_PACKET_FRAG ROUNDUP_DIV(JUMBO_FRAME_MAX_SIZE, IPV4_DEFAULT_PAYLOAD)
93
94 #define NB_MBUF   8192
95
96 /*
97  * RX and TX Prefetch, Host, and Write-back threshold values should be
98  * carefully set for optimal performance. Consult the network
99  * controller's datasheet and supporting DPDK documentation for guidance
100  * on how these parameters should be set.
101  */
102 #define RX_PTHRESH 8 /**< Default values of RX prefetch threshold reg. */
103 #define RX_HTHRESH 8 /**< Default values of RX host threshold reg. */
104 #define RX_WTHRESH 4 /**< Default values of RX write-back threshold reg. */
105
106 /*
107  * These default values are optimized for use with the Intel(R) 82599 10 GbE
108  * Controller and the DPDK ixgbe PMD. Consider using other values for other
109  * network controllers and/or network drivers.
110  */
111 #define TX_PTHRESH 36 /**< Default values of TX prefetch threshold reg. */
112 #define TX_HTHRESH 0  /**< Default values of TX host threshold reg. */
113 #define TX_WTHRESH 0  /**< Default values of TX write-back threshold reg. */
114
115 #define MAX_PKT_BURST   32
116 #define BURST_TX_DRAIN 200000ULL /* around 100us at 2 Ghz */
117
118 /* Configure how many packets ahead to prefetch, when reading packets */
119 #define PREFETCH_OFFSET 3
120
121 /*
122  * Configurable number of RX/TX ring descriptors
123  */
124 #define RTE_TEST_RX_DESC_DEFAULT 128
125 #define RTE_TEST_TX_DESC_DEFAULT 512
126 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
127 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
128
129 /* ethernet addresses of ports */
130 static struct ether_addr ports_eth_addr[MAX_PORTS];
131 static struct ether_addr remote_eth_addr =
132         {{0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff}};
133
134 /* mask of enabled ports */
135 static int enabled_port_mask = 0;
136
137 static int rx_queue_per_lcore = 1;
138
139 #define MBUF_TABLE_SIZE  (2 * MAX(MAX_PKT_BURST, MAX_PACKET_FRAG))
140
141 struct mbuf_table {
142         uint16_t len;
143         struct rte_mbuf *m_table[MBUF_TABLE_SIZE];
144 };
145
146 #define MAX_RX_QUEUE_PER_LCORE 16
147 #define MAX_TX_QUEUE_PER_PORT 16
148 struct lcore_queue_conf {
149         uint16_t n_rx_queue;
150         uint8_t rx_queue_list[MAX_RX_QUEUE_PER_LCORE];
151         uint16_t tx_queue_id[MAX_PORTS];
152         struct mbuf_table tx_mbufs[MAX_PORTS];
153
154 } __rte_cache_aligned;
155 struct lcore_queue_conf lcore_queue_conf[RTE_MAX_LCORE];
156
157 static const struct rte_eth_conf port_conf = {
158         .rxmode = {
159                 .max_rx_pkt_len = JUMBO_FRAME_MAX_SIZE,
160                 .split_hdr_size = 0,
161                 .header_split   = 0, /**< Header Split disabled */
162                 .hw_ip_checksum = 0, /**< IP checksum offload disabled */
163                 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
164                 .jumbo_frame    = 1, /**< Jumbo Frame Support enabled */
165                 .hw_strip_crc   = 0, /**< CRC stripped by hardware */
166         },
167         .txmode = {
168                 .mq_mode = ETH_MQ_TX_NONE,
169         },
170 };
171
172 static const struct rte_eth_rxconf rx_conf = {
173         .rx_thresh = {
174                 .pthresh = RX_PTHRESH,
175                 .hthresh = RX_HTHRESH,
176                 .wthresh = RX_WTHRESH,
177         },
178 };
179
180 static const struct rte_eth_txconf tx_conf = {
181         .tx_thresh = {
182                 .pthresh = TX_PTHRESH,
183                 .hthresh = TX_HTHRESH,
184                 .wthresh = TX_WTHRESH,
185         },
186         .tx_free_thresh = 0, /* Use PMD default values */
187         .tx_rs_thresh = 0, /* Use PMD default values */
188 };
189
190 struct rte_mempool *pool_direct = NULL, *pool_indirect = NULL;
191
192 struct l3fwd_route {
193         uint32_t ip;
194         uint8_t  depth;
195         uint8_t  if_out;
196 };
197
198 struct l3fwd_route l3fwd_route_array[] = {
199         {IPv4(100,10,0,0), 16, 2},
200         {IPv4(100,20,0,0), 16, 2},
201         {IPv4(100,30,0,0), 16, 0},
202         {IPv4(100,40,0,0), 16, 0},
203 };
204
205 #define L3FWD_NUM_ROUTES \
206         (sizeof(l3fwd_route_array) / sizeof(l3fwd_route_array[0]))
207
208 #define L3FWD_LPM_MAX_RULES     1024
209
210 struct rte_lpm *l3fwd_lpm = NULL;
211
212 /* Send burst of packets on an output interface */
213 static inline int
214 send_burst(struct lcore_queue_conf *qconf, uint16_t n, uint8_t port)
215 {
216         struct rte_mbuf **m_table;
217         int ret;
218         uint16_t queueid;
219
220         queueid = qconf->tx_queue_id[port];
221         m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table;
222
223         ret = rte_eth_tx_burst(port, queueid, m_table, n);
224         if (unlikely(ret < n)) {
225                 do {
226                         rte_pktmbuf_free(m_table[ret]);
227                 } while (++ret < n);
228         }
229
230         return 0;
231 }
232
233 static inline void
234 l3fwd_simple_forward(struct rte_mbuf *m, uint8_t port_in)
235 {
236         struct lcore_queue_conf *qconf;
237         struct ipv4_hdr *ip_hdr;
238         uint32_t i, len, lcore_id, ip_dst;
239         uint8_t next_hop, port_out;
240         int32_t len2;
241
242         lcore_id = rte_lcore_id();
243         qconf = &lcore_queue_conf[lcore_id];
244
245         /* Remove the Ethernet header and trailer from the input packet */
246         rte_pktmbuf_adj(m, (uint16_t)sizeof(struct ether_hdr));
247
248         /* Read the lookup key (i.e. ip_dst) from the input packet */
249         ip_hdr = rte_pktmbuf_mtod(m, struct ipv4_hdr *);
250         ip_dst = rte_be_to_cpu_32(ip_hdr->dst_addr);
251
252         /* Find destination port */
253         if (rte_lpm_lookup(l3fwd_lpm, ip_dst, &next_hop) == 0 &&
254                         (enabled_port_mask & 1 << next_hop) != 0)
255                 port_out = next_hop;
256         else
257                 port_out = port_in;
258
259         /* Build transmission burst */
260         len = qconf->tx_mbufs[port_out].len;
261
262         /* if we don't need to do any fragmentation */
263         if (likely (IPV4_MTU_DEFAULT  >= m->pkt.pkt_len)) {
264                 qconf->tx_mbufs[port_out].m_table[len] = m;
265                 len2 = 1;
266         } else {
267                 len2 = rte_ipv4_fragmentation(m,
268                         &qconf->tx_mbufs[port_out].m_table[len],
269                         (uint16_t)(MBUF_TABLE_SIZE - len),
270                         IPV4_MTU_DEFAULT,
271                         pool_direct, pool_indirect);
272
273                 /* Free input packet */
274                 rte_pktmbuf_free(m);
275
276                 /* If we fail to fragment the packet */
277                 if (unlikely (len2 < 0))
278                         return;
279         }
280
281         for (i = len; i < len + len2; i ++) {
282                 m = qconf->tx_mbufs[port_out].m_table[i];
283                 struct ether_hdr *eth_hdr = (struct ether_hdr *)
284                         rte_pktmbuf_prepend(m, (uint16_t)sizeof(struct ether_hdr));
285                 if (eth_hdr == NULL) {
286                         rte_panic("No headroom in mbuf.\n");
287                 }
288
289                 m->pkt.vlan_macip.f.l2_len = sizeof(struct ether_hdr);
290
291                 ether_addr_copy(&remote_eth_addr, &eth_hdr->d_addr);
292                 ether_addr_copy(&ports_eth_addr[port_out], &eth_hdr->s_addr);
293                 eth_hdr->ether_type = rte_be_to_cpu_16(ETHER_TYPE_IPv4);
294         }
295
296         len += len2;
297
298         if (likely(len < MAX_PKT_BURST)) {
299                 qconf->tx_mbufs[port_out].len = (uint16_t)len;
300                 return;
301         }
302
303         /* Transmit packets */
304         send_burst(qconf, (uint16_t)len, port_out);
305         qconf->tx_mbufs[port_out].len = 0;
306 }
307
308 /* main processing loop */
309 static __attribute__((noreturn)) int
310 main_loop(__attribute__((unused)) void *dummy)
311 {
312         struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
313         unsigned lcore_id;
314         uint64_t prev_tsc = 0;
315         uint64_t diff_tsc, cur_tsc;
316         int i, j, nb_rx;
317         uint8_t portid;
318         struct lcore_queue_conf *qconf;
319
320         lcore_id = rte_lcore_id();
321         qconf = &lcore_queue_conf[lcore_id];
322
323         if (qconf->n_rx_queue == 0) {
324                 RTE_LOG(INFO, L3FWD, "lcore %u has nothing to do\n", lcore_id);
325                 while(1);
326         }
327
328         RTE_LOG(INFO, L3FWD, "entering main loop on lcore %u\n", lcore_id);
329
330         for (i = 0; i < qconf->n_rx_queue; i++) {
331
332                 portid = qconf->rx_queue_list[i];
333                 RTE_LOG(INFO, L3FWD, " -- lcoreid=%u portid=%d\n", lcore_id,
334                         (int) portid);
335         }
336
337         while (1) {
338
339                 cur_tsc = rte_rdtsc();
340
341                 /*
342                  * TX burst queue drain
343                  */
344                 diff_tsc = cur_tsc - prev_tsc;
345                 if (unlikely(diff_tsc > BURST_TX_DRAIN)) {
346
347                         /*
348                          * This could be optimized (use queueid instead of
349                          * portid), but it is not called so often
350                          */
351                         for (portid = 0; portid < MAX_PORTS; portid++) {
352                                 if (qconf->tx_mbufs[portid].len == 0)
353                                         continue;
354                                 send_burst(&lcore_queue_conf[lcore_id],
355                                            qconf->tx_mbufs[portid].len,
356                                            portid);
357                                 qconf->tx_mbufs[portid].len = 0;
358                         }
359
360                         prev_tsc = cur_tsc;
361                 }
362
363                 /*
364                  * Read packet from RX queues
365                  */
366                 for (i = 0; i < qconf->n_rx_queue; i++) {
367
368                         portid = qconf->rx_queue_list[i];
369                         nb_rx = rte_eth_rx_burst(portid, 0, pkts_burst,
370                                                  MAX_PKT_BURST);
371
372                         /* Prefetch first packets */
373                         for (j = 0; j < PREFETCH_OFFSET && j < nb_rx; j++) {
374                                 rte_prefetch0(rte_pktmbuf_mtod(
375                                                 pkts_burst[j], void *));
376                         }
377
378                         /* Prefetch and forward already prefetched packets */
379                         for (j = 0; j < (nb_rx - PREFETCH_OFFSET); j++) {
380                                 rte_prefetch0(rte_pktmbuf_mtod(pkts_burst[
381                                                 j + PREFETCH_OFFSET], void *));
382                                 l3fwd_simple_forward(pkts_burst[j], portid);
383                         }
384
385                         /* Forward remaining prefetched packets */
386                         for (; j < nb_rx; j++) {
387                                 l3fwd_simple_forward(pkts_burst[j], portid);
388                         }
389                 }
390         }
391 }
392
393 /* display usage */
394 static void
395 print_usage(const char *prgname)
396 {
397         printf("%s [EAL options] -- -p PORTMASK [-q NQ]\n"
398                "  -p PORTMASK: hexadecimal bitmask of ports to configure\n"
399                "  -q NQ: number of queue (=ports) per lcore (default is 1)\n",
400                prgname);
401 }
402
403 static int
404 parse_portmask(const char *portmask)
405 {
406         char *end = NULL;
407         unsigned long pm;
408
409         /* parse hexadecimal string */
410         pm = strtoul(portmask, &end, 16);
411         if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
412                 return -1;
413
414         if (pm == 0)
415                 return -1;
416
417         return pm;
418 }
419
420 static int
421 parse_nqueue(const char *q_arg)
422 {
423         char *end = NULL;
424         unsigned long n;
425
426         /* parse hexadecimal string */
427         n = strtoul(q_arg, &end, 10);
428         if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
429                 return -1;
430         if (n == 0)
431                 return -1;
432         if (n >= MAX_RX_QUEUE_PER_LCORE)
433                 return -1;
434
435         return n;
436 }
437
438 /* Parse the argument given in the command line of the application */
439 static int
440 parse_args(int argc, char **argv)
441 {
442         int opt, ret;
443         char **argvopt;
444         int option_index;
445         char *prgname = argv[0];
446         static struct option lgopts[] = {
447                 {NULL, 0, 0, 0}
448         };
449
450         argvopt = argv;
451
452         while ((opt = getopt_long(argc, argvopt, "p:q:",
453                                   lgopts, &option_index)) != EOF) {
454
455                 switch (opt) {
456                 /* portmask */
457                 case 'p':
458                         enabled_port_mask = parse_portmask(optarg);
459                         if (enabled_port_mask < 0) {
460                                 printf("invalid portmask\n");
461                                 print_usage(prgname);
462                                 return -1;
463                         }
464                         break;
465
466                 /* nqueue */
467                 case 'q':
468                         rx_queue_per_lcore = parse_nqueue(optarg);
469                         if (rx_queue_per_lcore < 0) {
470                                 printf("invalid queue number\n");
471                                 print_usage(prgname);
472                                 return -1;
473                         }
474                         break;
475
476                 /* long options */
477                 case 0:
478                         print_usage(prgname);
479                         return -1;
480
481                 default:
482                         print_usage(prgname);
483                         return -1;
484                 }
485         }
486
487         if (enabled_port_mask == 0) {
488                 printf("portmask not specified\n");
489                 print_usage(prgname);
490                 return -1;
491         }
492
493         if (optind >= 0)
494                 argv[optind-1] = prgname;
495
496         ret = optind-1;
497         optind = 0; /* reset getopt lib */
498         return ret;
499 }
500
501 static void
502 print_ethaddr(const char *name, struct ether_addr *eth_addr)
503 {
504         printf("%s%02X:%02X:%02X:%02X:%02X:%02X", name,
505                eth_addr->addr_bytes[0],
506                eth_addr->addr_bytes[1],
507                eth_addr->addr_bytes[2],
508                eth_addr->addr_bytes[3],
509                eth_addr->addr_bytes[4],
510                eth_addr->addr_bytes[5]);
511 }
512
513 /* Check the link status of all ports in up to 9s, and print them finally */
514 static void
515 check_all_ports_link_status(uint8_t port_num, uint32_t port_mask)
516 {
517 #define CHECK_INTERVAL 100 /* 100ms */
518 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
519         uint8_t portid, count, all_ports_up, print_flag = 0;
520         struct rte_eth_link link;
521
522         printf("\nChecking link status");
523         fflush(stdout);
524         for (count = 0; count <= MAX_CHECK_TIME; count++) {
525                 all_ports_up = 1;
526                 for (portid = 0; portid < port_num; portid++) {
527                         if ((port_mask & (1 << portid)) == 0)
528                                 continue;
529                         memset(&link, 0, sizeof(link));
530                         rte_eth_link_get_nowait(portid, &link);
531                         /* print link status if flag set */
532                         if (print_flag == 1) {
533                                 if (link.link_status)
534                                         printf("Port %d Link Up - speed %u "
535                                                 "Mbps - %s\n", (uint8_t)portid,
536                                                 (unsigned)link.link_speed,
537                                 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
538                                         ("full-duplex") : ("half-duplex\n"));
539                                 else
540                                         printf("Port %d Link Down\n",
541                                                         (uint8_t)portid);
542                                 continue;
543                         }
544                         /* clear all_ports_up flag if any link down */
545                         if (link.link_status == 0) {
546                                 all_ports_up = 0;
547                                 break;
548                         }
549                 }
550                 /* after finally printing all link status, get out */
551                 if (print_flag == 1)
552                         break;
553
554                 if (all_ports_up == 0) {
555                         printf(".");
556                         fflush(stdout);
557                         rte_delay_ms(CHECK_INTERVAL);
558                 }
559
560                 /* set the print_flag if all ports up or timeout */
561                 if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
562                         print_flag = 1;
563                         printf("done\n");
564                 }
565         }
566 }
567
568 int
569 MAIN(int argc, char **argv)
570 {
571         struct lcore_queue_conf *qconf;
572         int ret;
573         unsigned nb_ports, i;
574         uint16_t queueid = 0;
575         unsigned lcore_id = 0, rx_lcore_id = 0;;
576         uint32_t n_tx_queue, nb_lcores;
577         uint8_t portid;
578
579         /* init EAL */
580         ret = rte_eal_init(argc, argv);
581         if (ret < 0)
582                 rte_exit(EXIT_FAILURE, "rte_eal_init failed");
583         argc -= ret;
584         argv += ret;
585
586         /* parse application arguments (after the EAL ones) */
587         ret = parse_args(argc, argv);
588         if (ret < 0)
589                 rte_exit(EXIT_FAILURE, "Invalid arguments");
590
591         /* create the mbuf pools */
592         pool_direct =
593                 rte_mempool_create("pool_direct", NB_MBUF,
594                                    MBUF_SIZE, 32,
595                                    sizeof(struct rte_pktmbuf_pool_private),
596                                    rte_pktmbuf_pool_init, NULL,
597                                    rte_pktmbuf_init, NULL,
598                                    rte_socket_id(), 0);
599         if (pool_direct == NULL)
600                 rte_panic("Cannot init direct mbuf pool\n");
601
602         pool_indirect =
603                 rte_mempool_create("pool_indirect", NB_MBUF,
604                                    sizeof(struct rte_mbuf), 32,
605                                    0,
606                                    NULL, NULL,
607                                    rte_pktmbuf_init, NULL,
608                                    rte_socket_id(), 0);
609         if (pool_indirect == NULL)
610                 rte_panic("Cannot init indirect mbuf pool\n");
611
612         /* init driver */
613         if (rte_pmd_init_all() < 0)
614                 rte_panic("Cannot init PMD\n");
615
616         if (rte_eal_pci_probe() < 0)
617                 rte_panic("Cannot probe PCI\n");
618
619         nb_ports = rte_eth_dev_count();
620         if (nb_ports > MAX_PORTS)
621                 nb_ports = MAX_PORTS;
622
623         nb_lcores = rte_lcore_count();
624
625         /* initialize all ports */
626         for (portid = 0; portid < nb_ports; portid++) {
627                 /* skip ports that are not enabled */
628                 if ((enabled_port_mask & (1 << portid)) == 0) {
629                         printf("Skipping disabled port %d\n", portid);
630                         continue;
631                 }
632
633                 qconf = &lcore_queue_conf[rx_lcore_id];
634
635                 /* get the lcore_id for this port */
636                 while (rte_lcore_is_enabled(rx_lcore_id) == 0 ||
637                        qconf->n_rx_queue == (unsigned)rx_queue_per_lcore) {
638
639                         rx_lcore_id ++;
640                         if (rx_lcore_id >= RTE_MAX_LCORE)
641                                 rte_exit(EXIT_FAILURE, "Not enough cores\n");
642
643                         qconf = &lcore_queue_conf[rx_lcore_id];
644                 }
645                 qconf->rx_queue_list[qconf->n_rx_queue] = portid;
646                 qconf->n_rx_queue++;
647
648                 /* init port */
649                 printf("Initializing port %d on lcore %u... ", portid,
650                        rx_lcore_id);
651                 fflush(stdout);
652
653                 n_tx_queue = nb_lcores;
654                 if (n_tx_queue > MAX_TX_QUEUE_PER_PORT)
655                         n_tx_queue = MAX_TX_QUEUE_PER_PORT;
656                 ret = rte_eth_dev_configure(portid, 1, (uint16_t)n_tx_queue,
657                                             &port_conf);
658                 if (ret < 0)
659                         rte_exit(EXIT_FAILURE, "Cannot configure device: "
660                                 "err=%d, port=%d\n",
661                                 ret, portid);
662
663                 rte_eth_macaddr_get(portid, &ports_eth_addr[portid]);
664                 print_ethaddr(" Address:", &ports_eth_addr[portid]);
665                 printf(", ");
666
667                 /* init one RX queue */
668                 queueid = 0;
669                 printf("rxq=%d ", queueid);
670                 fflush(stdout);
671                 ret = rte_eth_rx_queue_setup(portid, queueid, nb_rxd,
672                                              rte_eth_dev_socket_id(portid), &rx_conf,
673                                              pool_direct);
674                 if (ret < 0)
675                         rte_exit(EXIT_FAILURE, "rte_eth_tx_queue_setup: "
676                                 "err=%d, port=%d\n",
677                                 ret, portid);
678
679                 /* init one TX queue per couple (lcore,port) */
680                 queueid = 0;
681                 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
682                         if (rte_lcore_is_enabled(lcore_id) == 0)
683                                 continue;
684                         printf("txq=%u,%d ", lcore_id, queueid);
685                         fflush(stdout);
686                         ret = rte_eth_tx_queue_setup(portid, queueid, nb_txd,
687                                                      rte_eth_dev_socket_id(portid), &tx_conf);
688                         if (ret < 0)
689                                 rte_exit(EXIT_FAILURE, "rte_eth_tx_queue_setup: "
690                                         "err=%d, port=%d\n", ret, portid);
691
692                         qconf = &lcore_queue_conf[lcore_id];
693                         qconf->tx_queue_id[portid] = queueid;
694                         queueid++;
695                 }
696
697                 /* Start device */
698                 ret = rte_eth_dev_start(portid);
699                 if (ret < 0)
700                         rte_exit(EXIT_FAILURE, "rte_eth_dev_start: "
701                                 "err=%d, port=%d\n",
702                                 ret, portid);
703
704                 printf("done: ");
705
706                 /* Set port in promiscuous mode */
707                 rte_eth_promiscuous_enable(portid);
708         }
709
710         check_all_ports_link_status((uint8_t)nb_ports, enabled_port_mask);
711
712         /* create the LPM table */
713         l3fwd_lpm = rte_lpm_create("L3FWD_LPM", rte_socket_id(), L3FWD_LPM_MAX_RULES, 0);
714         if (l3fwd_lpm == NULL)
715                 rte_panic("Unable to create the l3fwd LPM table\n");
716
717         /* populate the LPM table */
718         for (i = 0; i < L3FWD_NUM_ROUTES; i++) {
719                 ret = rte_lpm_add(l3fwd_lpm,
720                         l3fwd_route_array[i].ip,
721                         l3fwd_route_array[i].depth,
722                         l3fwd_route_array[i].if_out);
723
724                 if (ret < 0) {
725                         rte_panic("Unable to add entry %u to the l3fwd "
726                                 "LPM table\n", i);
727                 }
728
729                 printf("Adding route 0x%08x / %d (%d)\n",
730                         (unsigned) l3fwd_route_array[i].ip,
731                         l3fwd_route_array[i].depth,
732                         l3fwd_route_array[i].if_out);
733         }
734
735         /* launch per-lcore init on every lcore */
736         rte_eal_mp_remote_launch(main_loop, NULL, CALL_MASTER);
737         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
738                 if (rte_eal_wait_lcore(lcore_id) < 0)
739                         return -1;
740         }
741
742         return 0;
743 }