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