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