4 * Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
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.
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.
41 #include <rte_alarm.h>
42 #include <rte_common.h>
44 #include <rte_malloc.h>
45 #include <rte_memory.h>
46 #include <rte_memcpy.h>
47 #include <rte_memzone.h>
49 #include <rte_per_lcore.h>
50 #include <rte_launch.h>
51 #include <rte_atomic.h>
52 #include <rte_cycles.h>
53 #include <rte_prefetch.h>
54 #include <rte_lcore.h>
55 #include <rte_per_lcore.h>
56 #include <rte_branch_prediction.h>
57 #include <rte_interrupts.h>
59 #include <rte_debug.h>
60 #include <rte_ether.h>
61 #include <rte_ethdev.h>
63 #include <rte_mempool.h>
65 #include <rte_spinlock.h>
67 #include <rte_errno.h>
68 #include <rte_jobstats.h>
69 #include <rte_timer.h>
70 #include <rte_alarm.h>
72 #define RTE_LOGTYPE_L2FWD RTE_LOGTYPE_USER1
76 #define MAX_PKT_BURST 32
77 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
80 * Configurable number of RX/TX ring descriptors
82 #define RTE_TEST_RX_DESC_DEFAULT 128
83 #define RTE_TEST_TX_DESC_DEFAULT 512
84 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
85 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
87 /* ethernet addresses of ports */
88 static struct ether_addr l2fwd_ports_eth_addr[RTE_MAX_ETHPORTS];
90 /* mask of enabled ports */
91 static uint32_t l2fwd_enabled_port_mask;
93 /* list of enabled ports */
94 static uint32_t l2fwd_dst_ports[RTE_MAX_ETHPORTS];
96 #define UPDATE_STEP_UP 1
97 #define UPDATE_STEP_DOWN 32
99 static unsigned int l2fwd_rx_queue_per_lcore = 1;
101 #define MAX_RX_QUEUE_PER_LCORE 16
102 #define MAX_TX_QUEUE_PER_PORT 16
103 struct lcore_queue_conf {
105 unsigned rx_port_list[MAX_RX_QUEUE_PER_LCORE];
106 uint64_t next_flush_time[RTE_MAX_ETHPORTS];
108 struct rte_timer rx_timers[MAX_RX_QUEUE_PER_LCORE];
109 struct rte_jobstats port_fwd_jobs[MAX_RX_QUEUE_PER_LCORE];
111 struct rte_timer flush_timer;
112 struct rte_jobstats flush_job;
113 struct rte_jobstats idle_job;
114 struct rte_jobstats_context jobs_context;
116 rte_atomic16_t stats_read_pending;
118 } __rte_cache_aligned;
119 struct lcore_queue_conf lcore_queue_conf[RTE_MAX_LCORE];
121 struct rte_eth_dev_tx_buffer *tx_buffer[RTE_MAX_ETHPORTS];
123 static const struct rte_eth_conf port_conf = {
126 .header_split = 0, /**< Header Split disabled */
127 .hw_ip_checksum = 0, /**< IP checksum offload disabled */
128 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
129 .jumbo_frame = 0, /**< Jumbo Frame Support disabled */
130 .hw_strip_crc = 0, /**< CRC stripped by hardware */
133 .mq_mode = ETH_MQ_TX_NONE,
137 struct rte_mempool *l2fwd_pktmbuf_pool = NULL;
139 /* Per-port statistics struct */
140 struct l2fwd_port_statistics {
144 } __rte_cache_aligned;
145 struct l2fwd_port_statistics port_statistics[RTE_MAX_ETHPORTS];
148 #define MAX_TIMER_PERIOD 86400
149 /* default period is 10 seconds */
150 static int64_t timer_period = 10;
151 /* default timer frequency */
153 /* BURST_TX_DRAIN_US converted to cycles */
155 /* Convert cycles to ns */
157 cycles_to_ns(uint64_t cycles)
161 t *= (double)NS_PER_S;
167 show_lcore_stats(unsigned lcore_id)
169 struct lcore_queue_conf *qconf = &lcore_queue_conf[lcore_id];
170 struct rte_jobstats_context *ctx = &qconf->jobs_context;
171 struct rte_jobstats *job;
174 /* LCore statistics. */
175 uint64_t stats_period, loop_count;
176 uint64_t exec, exec_min, exec_max;
177 uint64_t management, management_min, management_max;
178 uint64_t busy, busy_min, busy_max;
180 /* Jobs statistics. */
181 const uint8_t port_cnt = qconf->n_rx_port;
182 uint64_t jobs_exec_cnt[port_cnt], jobs_period[port_cnt];
183 uint64_t jobs_exec[port_cnt], jobs_exec_min[port_cnt],
184 jobs_exec_max[port_cnt];
186 uint64_t flush_exec_cnt, flush_period;
187 uint64_t flush_exec, flush_exec_min, flush_exec_max;
189 uint64_t idle_exec_cnt;
190 uint64_t idle_exec, idle_exec_min, idle_exec_max;
191 uint64_t collection_time = rte_get_timer_cycles();
193 /* Ask forwarding thread to give us stats. */
194 rte_atomic16_set(&qconf->stats_read_pending, 1);
195 rte_spinlock_lock(&qconf->lock);
196 rte_atomic16_set(&qconf->stats_read_pending, 0);
198 /* Collect context statistics. */
199 stats_period = ctx->state_time - ctx->start_time;
200 loop_count = ctx->loop_cnt;
202 exec = ctx->exec_time;
203 exec_min = ctx->min_exec_time;
204 exec_max = ctx->max_exec_time;
206 management = ctx->management_time;
207 management_min = ctx->min_management_time;
208 management_max = ctx->max_management_time;
210 rte_jobstats_context_reset(ctx);
212 for (i = 0; i < port_cnt; i++) {
213 job = &qconf->port_fwd_jobs[i];
215 jobs_exec_cnt[i] = job->exec_cnt;
216 jobs_period[i] = job->period;
218 jobs_exec[i] = job->exec_time;
219 jobs_exec_min[i] = job->min_exec_time;
220 jobs_exec_max[i] = job->max_exec_time;
222 rte_jobstats_reset(job);
225 flush_exec_cnt = qconf->flush_job.exec_cnt;
226 flush_period = qconf->flush_job.period;
227 flush_exec = qconf->flush_job.exec_time;
228 flush_exec_min = qconf->flush_job.min_exec_time;
229 flush_exec_max = qconf->flush_job.max_exec_time;
230 rte_jobstats_reset(&qconf->flush_job);
232 idle_exec_cnt = qconf->idle_job.exec_cnt;
233 idle_exec = qconf->idle_job.exec_time;
234 idle_exec_min = qconf->idle_job.min_exec_time;
235 idle_exec_max = qconf->idle_job.max_exec_time;
236 rte_jobstats_reset(&qconf->idle_job);
238 rte_spinlock_unlock(&qconf->lock);
241 busy = exec + management;
242 busy_min = exec_min + management_min;
243 busy_max = exec_max + management_max;
246 collection_time = rte_get_timer_cycles() - collection_time;
248 #define STAT_FMT "\n%-18s %'14.0f %6.1f%% %'10.0f %'10.0f %'10.0f"
250 printf("\n----------------"
251 "\nLCore %3u: statistics (time in ns, collected in %'9.0f)"
252 "\n%-18s %14s %7s %10s %10s %10s "
254 "\n%-18s %'14" PRIu64
256 STAT_FMT /* Management */
259 lcore_id, cycles_to_ns(collection_time),
260 "Stat type", "total", "%total", "avg", "min", "max",
261 "Stats duration:", cycles_to_ns(stats_period),
262 "Loop count:", loop_count,
264 cycles_to_ns(exec), exec * 100.0 / stats_period,
265 cycles_to_ns(loop_count ? exec / loop_count : 0),
266 cycles_to_ns(exec_min),
267 cycles_to_ns(exec_max),
269 cycles_to_ns(management), management * 100.0 / stats_period,
270 cycles_to_ns(loop_count ? management / loop_count : 0),
271 cycles_to_ns(management_min),
272 cycles_to_ns(management_max),
274 cycles_to_ns(busy), busy * 100.0 / stats_period,
275 cycles_to_ns(loop_count ? busy / loop_count : 0),
276 cycles_to_ns(busy_min),
277 cycles_to_ns(busy_max),
279 cycles_to_ns(idle_exec), idle_exec * 100.0 / stats_period,
280 cycles_to_ns(idle_exec_cnt ? idle_exec / idle_exec_cnt : 0),
281 cycles_to_ns(idle_exec_min),
282 cycles_to_ns(idle_exec_max));
284 for (i = 0; i < qconf->n_rx_port; i++) {
285 job = &qconf->port_fwd_jobs[i];
286 printf("\n\nJob %" PRIu32 ": %-20s "
287 "\n%-18s %'14" PRIu64
291 "Exec count:", jobs_exec_cnt[i],
292 "Exec period: ", cycles_to_ns(jobs_period[i]),
294 cycles_to_ns(jobs_exec[i]), jobs_exec[i] * 100.0 / stats_period,
295 cycles_to_ns(jobs_exec_cnt[i] ? jobs_exec[i] / jobs_exec_cnt[i]
297 cycles_to_ns(jobs_exec_min[i]),
298 cycles_to_ns(jobs_exec_max[i]));
301 if (qconf->n_rx_port > 0) {
302 job = &qconf->flush_job;
303 printf("\n\nJob %" PRIu32 ": %-20s "
304 "\n%-18s %'14" PRIu64
308 "Exec count:", flush_exec_cnt,
309 "Exec period: ", cycles_to_ns(flush_period),
311 cycles_to_ns(flush_exec), flush_exec * 100.0 / stats_period,
312 cycles_to_ns(flush_exec_cnt ? flush_exec / flush_exec_cnt : 0),
313 cycles_to_ns(flush_exec_min),
314 cycles_to_ns(flush_exec_max));
318 /* Print out statistics on packets dropped */
320 show_stats_cb(__rte_unused void *param)
322 uint64_t total_packets_dropped, total_packets_tx, total_packets_rx;
323 unsigned portid, lcore_id;
325 total_packets_dropped = 0;
326 total_packets_tx = 0;
327 total_packets_rx = 0;
329 const char clr[] = { 27, '[', '2', 'J', '\0' };
330 const char topLeft[] = { 27, '[', '1', ';', '1', 'H', '\0' };
332 /* Clear screen and move to top left */
334 "\nPort statistics ===================================",
337 for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
338 /* skip disabled ports */
339 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
341 printf("\nStatistics for port %u ------------------------------"
342 "\nPackets sent: %24"PRIu64
343 "\nPackets received: %20"PRIu64
344 "\nPackets dropped: %21"PRIu64,
346 port_statistics[portid].tx,
347 port_statistics[portid].rx,
348 port_statistics[portid].dropped);
350 total_packets_dropped += port_statistics[portid].dropped;
351 total_packets_tx += port_statistics[portid].tx;
352 total_packets_rx += port_statistics[portid].rx;
355 printf("\nAggregate statistics ==============================="
356 "\nTotal packets sent: %18"PRIu64
357 "\nTotal packets received: %14"PRIu64
358 "\nTotal packets dropped: %15"PRIu64
359 "\n====================================================",
362 total_packets_dropped);
364 RTE_LCORE_FOREACH(lcore_id) {
365 if (lcore_queue_conf[lcore_id].n_rx_port > 0)
366 show_lcore_stats(lcore_id);
369 printf("\n====================================================\n");
370 rte_eal_alarm_set(timer_period * US_PER_S, show_stats_cb, NULL);
374 l2fwd_simple_forward(struct rte_mbuf *m, unsigned portid)
376 struct ether_hdr *eth;
380 struct rte_eth_dev_tx_buffer *buffer;
382 dst_port = l2fwd_dst_ports[portid];
383 eth = rte_pktmbuf_mtod(m, struct ether_hdr *);
385 /* 02:00:00:00:00:xx */
386 tmp = ð->d_addr.addr_bytes[0];
387 *((uint64_t *)tmp) = 0x000000000002 + ((uint64_t)dst_port << 40);
390 ether_addr_copy(&l2fwd_ports_eth_addr[dst_port], ð->s_addr);
392 buffer = tx_buffer[dst_port];
393 sent = rte_eth_tx_buffer(dst_port, 0, buffer, m);
395 port_statistics[dst_port].tx += sent;
399 l2fwd_job_update_cb(struct rte_jobstats *job, int64_t result)
401 int64_t err = job->target - result;
402 int64_t histeresis = job->target / 8;
404 if (err < -histeresis) {
405 if (job->min_period + UPDATE_STEP_DOWN < job->period)
406 job->period -= UPDATE_STEP_DOWN;
407 } else if (err > histeresis) {
408 if (job->period + UPDATE_STEP_UP < job->max_period)
409 job->period += UPDATE_STEP_UP;
414 l2fwd_fwd_job(__rte_unused struct rte_timer *timer, void *arg)
416 struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
419 const uint8_t port_idx = (uintptr_t) arg;
420 const unsigned lcore_id = rte_lcore_id();
421 struct lcore_queue_conf *qconf = &lcore_queue_conf[lcore_id];
422 struct rte_jobstats *job = &qconf->port_fwd_jobs[port_idx];
423 const uint8_t portid = qconf->rx_port_list[port_idx];
426 uint16_t total_nb_rx;
428 rte_jobstats_start(&qconf->jobs_context, job);
430 /* Call rx burst 2 times. This allow rte_jobstats logic to see if this
431 * function must be called more frequently. */
433 total_nb_rx = rte_eth_rx_burst((uint8_t) portid, 0, pkts_burst,
436 for (j = 0; j < total_nb_rx; j++) {
438 rte_prefetch0(rte_pktmbuf_mtod(m, void *));
439 l2fwd_simple_forward(m, portid);
442 if (total_nb_rx == MAX_PKT_BURST) {
443 const uint16_t nb_rx = rte_eth_rx_burst((uint8_t) portid, 0, pkts_burst,
446 total_nb_rx += nb_rx;
447 for (j = 0; j < nb_rx; j++) {
449 rte_prefetch0(rte_pktmbuf_mtod(m, void *));
450 l2fwd_simple_forward(m, portid);
454 port_statistics[portid].rx += total_nb_rx;
456 /* Adjust period time in which we are running here. */
457 if (rte_jobstats_finish(job, total_nb_rx) != 0) {
458 rte_timer_reset(&qconf->rx_timers[port_idx], job->period, PERIODICAL,
459 lcore_id, l2fwd_fwd_job, arg);
464 l2fwd_flush_job(__rte_unused struct rte_timer *timer, __rte_unused void *arg)
468 struct lcore_queue_conf *qconf;
472 struct rte_eth_dev_tx_buffer *buffer;
474 lcore_id = rte_lcore_id();
475 qconf = &lcore_queue_conf[lcore_id];
477 rte_jobstats_start(&qconf->jobs_context, &qconf->flush_job);
479 now = rte_get_timer_cycles();
480 lcore_id = rte_lcore_id();
481 qconf = &lcore_queue_conf[lcore_id];
483 for (i = 0; i < qconf->n_rx_port; i++) {
484 portid = l2fwd_dst_ports[qconf->rx_port_list[i]];
486 if (qconf->next_flush_time[portid] <= now)
489 buffer = tx_buffer[portid];
490 sent = rte_eth_tx_buffer_flush(portid, 0, buffer);
492 port_statistics[portid].tx += sent;
494 qconf->next_flush_time[portid] = rte_get_timer_cycles() + drain_tsc;
497 /* Pass target to indicate that this job is happy of time interwal
498 * in which it was called. */
499 rte_jobstats_finish(&qconf->flush_job, qconf->flush_job.target);
502 /* main processing loop */
504 l2fwd_main_loop(void)
508 struct lcore_queue_conf *qconf;
509 uint8_t stats_read_pending = 0;
512 lcore_id = rte_lcore_id();
513 qconf = &lcore_queue_conf[lcore_id];
515 if (qconf->n_rx_port == 0) {
516 RTE_LOG(INFO, L2FWD, "lcore %u has nothing to do\n", lcore_id);
520 RTE_LOG(INFO, L2FWD, "entering main loop on lcore %u\n", lcore_id);
522 for (i = 0; i < qconf->n_rx_port; i++) {
524 portid = qconf->rx_port_list[i];
525 RTE_LOG(INFO, L2FWD, " -- lcoreid=%u portid=%u\n", lcore_id,
529 rte_jobstats_init(&qconf->idle_job, "idle", 0, 0, 0, 0);
532 rte_spinlock_lock(&qconf->lock);
535 rte_jobstats_context_start(&qconf->jobs_context);
538 * - Read stats_read_pending flag
539 * - check if some real job need to be executed
541 rte_jobstats_start(&qconf->jobs_context, &qconf->idle_job);
543 uint64_t repeats = 0;
547 uint64_t now = rte_get_timer_cycles();
550 need_manage = qconf->flush_timer.expire < now;
551 /* Check if we was esked to give a stats. */
553 rte_atomic16_read(&qconf->stats_read_pending);
554 need_manage |= stats_read_pending;
556 for (i = 0; i < qconf->n_rx_port && !need_manage; i++)
557 need_manage = qconf->rx_timers[i].expire < now;
559 } while (!need_manage);
561 if (likely(repeats != 1))
562 rte_jobstats_finish(&qconf->idle_job, qconf->idle_job.target);
564 rte_jobstats_abort(&qconf->idle_job);
567 rte_jobstats_context_finish(&qconf->jobs_context);
568 } while (likely(stats_read_pending == 0));
570 rte_spinlock_unlock(&qconf->lock);
576 l2fwd_launch_one_lcore(__attribute__((unused)) void *dummy)
584 l2fwd_usage(const char *prgname)
586 printf("%s [EAL options] -- -p PORTMASK [-q NQ]\n"
587 " -p PORTMASK: hexadecimal bitmask of ports to configure\n"
588 " -q NQ: number of queue (=ports) per lcore (default is 1)\n"
589 " -T PERIOD: statistics will be refreshed each PERIOD seconds (0 to disable, 10 default, 86400 maximum)\n"
590 " -l set system default locale instead of default (\"C\" locale) for thousands separator in stats.",
595 l2fwd_parse_portmask(const char *portmask)
600 /* parse hexadecimal string */
601 pm = strtoul(portmask, &end, 16);
602 if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
612 l2fwd_parse_nqueue(const char *q_arg)
617 /* parse hexadecimal string */
618 n = strtoul(q_arg, &end, 10);
619 if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
623 if (n >= MAX_RX_QUEUE_PER_LCORE)
630 l2fwd_parse_timer_period(const char *q_arg)
635 /* parse number string */
636 n = strtol(q_arg, &end, 10);
637 if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
639 if (n >= MAX_TIMER_PERIOD)
645 /* Parse the argument given in the command line of the application */
647 l2fwd_parse_args(int argc, char **argv)
652 char *prgname = argv[0];
653 static struct option lgopts[] = {
659 while ((opt = getopt_long(argc, argvopt, "p:q:T:l",
660 lgopts, &option_index)) != EOF) {
665 l2fwd_enabled_port_mask = l2fwd_parse_portmask(optarg);
666 if (l2fwd_enabled_port_mask == 0) {
667 printf("invalid portmask\n");
668 l2fwd_usage(prgname);
675 l2fwd_rx_queue_per_lcore = l2fwd_parse_nqueue(optarg);
676 if (l2fwd_rx_queue_per_lcore == 0) {
677 printf("invalid queue number\n");
678 l2fwd_usage(prgname);
685 timer_period = l2fwd_parse_timer_period(optarg);
686 if (timer_period < 0) {
687 printf("invalid timer period\n");
688 l2fwd_usage(prgname);
693 /* For thousands separator in printf. */
695 setlocale(LC_ALL, "");
700 l2fwd_usage(prgname);
704 l2fwd_usage(prgname);
710 argv[optind-1] = prgname;
713 optind = 0; /* reset getopt lib */
717 /* Check the link status of all ports in up to 9s, and print them finally */
719 check_all_ports_link_status(uint8_t port_num, uint32_t port_mask)
721 #define CHECK_INTERVAL 100 /* 100ms */
722 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
723 uint8_t portid, count, all_ports_up, print_flag = 0;
724 struct rte_eth_link link;
726 printf("\nChecking link status");
728 for (count = 0; count <= MAX_CHECK_TIME; count++) {
730 for (portid = 0; portid < port_num; portid++) {
731 if ((port_mask & (1 << portid)) == 0)
733 memset(&link, 0, sizeof(link));
734 rte_eth_link_get_nowait(portid, &link);
735 /* print link status if flag set */
736 if (print_flag == 1) {
737 if (link.link_status)
738 printf("Port %d Link Up - speed %u "
739 "Mbps - %s\n", (uint8_t)portid,
740 (unsigned)link.link_speed,
741 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
742 ("full-duplex") : ("half-duplex\n"));
744 printf("Port %d Link Down\n",
748 /* clear all_ports_up flag if any link down */
749 if (link.link_status == 0) {
754 /* after finally printing all link status, get out */
758 if (all_ports_up == 0) {
761 rte_delay_ms(CHECK_INTERVAL);
764 /* set the print_flag if all ports up or timeout */
765 if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
773 main(int argc, char **argv)
775 struct lcore_queue_conf *qconf;
776 struct rte_eth_dev_info dev_info;
777 unsigned lcore_id, rx_lcore_id;
778 unsigned nb_ports_in_mask = 0;
780 char name[RTE_JOBSTATS_NAMESIZE];
782 uint8_t nb_ports_available;
783 uint8_t portid, last_port;
787 ret = rte_eal_init(argc, argv);
789 rte_exit(EXIT_FAILURE, "Invalid EAL arguments\n");
793 /* parse application arguments (after the EAL ones) */
794 ret = l2fwd_parse_args(argc, argv);
796 rte_exit(EXIT_FAILURE, "Invalid L2FWD arguments\n");
798 rte_timer_subsystem_init();
800 /* fetch default timer frequency. */
801 hz = rte_get_timer_hz();
803 /* create the mbuf pool */
805 rte_pktmbuf_pool_create("mbuf_pool", NB_MBUF, 32,
806 0, RTE_MBUF_DEFAULT_BUF_SIZE, rte_socket_id());
807 if (l2fwd_pktmbuf_pool == NULL)
808 rte_exit(EXIT_FAILURE, "Cannot init mbuf pool\n");
810 nb_ports = rte_eth_dev_count();
812 rte_exit(EXIT_FAILURE, "No Ethernet ports - bye\n");
814 if (nb_ports > RTE_MAX_ETHPORTS)
815 nb_ports = RTE_MAX_ETHPORTS;
817 /* reset l2fwd_dst_ports */
818 for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++)
819 l2fwd_dst_ports[portid] = 0;
823 * Each logical core is assigned a dedicated TX queue on each port.
825 for (portid = 0; portid < nb_ports; portid++) {
826 /* skip ports that are not enabled */
827 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
830 if (nb_ports_in_mask % 2) {
831 l2fwd_dst_ports[portid] = last_port;
832 l2fwd_dst_ports[last_port] = portid;
838 rte_eth_dev_info_get(portid, &dev_info);
840 if (nb_ports_in_mask % 2) {
841 printf("Notice: odd number of ports in portmask.\n");
842 l2fwd_dst_ports[last_port] = last_port;
848 /* Initialize the port/queue configuration of each logical core */
849 for (portid = 0; portid < nb_ports; portid++) {
850 /* skip ports that are not enabled */
851 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
854 /* get the lcore_id for this port */
855 while (rte_lcore_is_enabled(rx_lcore_id) == 0 ||
856 lcore_queue_conf[rx_lcore_id].n_rx_port ==
857 l2fwd_rx_queue_per_lcore) {
859 if (rx_lcore_id >= RTE_MAX_LCORE)
860 rte_exit(EXIT_FAILURE, "Not enough cores\n");
863 if (qconf != &lcore_queue_conf[rx_lcore_id])
864 /* Assigned a new logical core in the loop above. */
865 qconf = &lcore_queue_conf[rx_lcore_id];
867 qconf->rx_port_list[qconf->n_rx_port] = portid;
869 printf("Lcore %u: RX port %u\n", rx_lcore_id, (unsigned) portid);
872 nb_ports_available = nb_ports;
874 /* Initialise each port */
875 for (portid = 0; portid < nb_ports; portid++) {
876 /* skip ports that are not enabled */
877 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0) {
878 printf("Skipping disabled port %u\n", (unsigned) portid);
879 nb_ports_available--;
883 printf("Initializing port %u... ", (unsigned) portid);
885 ret = rte_eth_dev_configure(portid, 1, 1, &port_conf);
887 rte_exit(EXIT_FAILURE, "Cannot configure device: err=%d, port=%u\n",
888 ret, (unsigned) portid);
890 rte_eth_macaddr_get(portid, &l2fwd_ports_eth_addr[portid]);
892 /* init one RX queue */
894 ret = rte_eth_rx_queue_setup(portid, 0, nb_rxd,
895 rte_eth_dev_socket_id(portid),
899 rte_exit(EXIT_FAILURE, "rte_eth_rx_queue_setup:err=%d, port=%u\n",
900 ret, (unsigned) portid);
902 /* init one TX queue on each port */
904 ret = rte_eth_tx_queue_setup(portid, 0, nb_txd,
905 rte_eth_dev_socket_id(portid),
908 rte_exit(EXIT_FAILURE, "rte_eth_tx_queue_setup:err=%d, port=%u\n",
909 ret, (unsigned) portid);
911 /* Initialize TX buffers */
912 tx_buffer[portid] = rte_zmalloc_socket("tx_buffer",
913 RTE_ETH_TX_BUFFER_SIZE(MAX_PKT_BURST), 0,
914 rte_eth_dev_socket_id(portid));
915 if (tx_buffer[portid] == NULL)
916 rte_exit(EXIT_FAILURE, "Cannot allocate buffer for tx on port %u\n",
919 rte_eth_tx_buffer_init(tx_buffer[portid], MAX_PKT_BURST);
921 ret = rte_eth_tx_buffer_set_err_callback(tx_buffer[portid],
922 rte_eth_tx_buffer_count_callback,
923 &port_statistics[portid].dropped);
925 rte_exit(EXIT_FAILURE, "Cannot set error callback for "
926 "tx buffer on port %u\n", (unsigned) portid);
929 ret = rte_eth_dev_start(portid);
931 rte_exit(EXIT_FAILURE, "rte_eth_dev_start:err=%d, port=%u\n",
932 ret, (unsigned) portid);
936 rte_eth_promiscuous_enable(portid);
938 printf("Port %u, MAC address: %02X:%02X:%02X:%02X:%02X:%02X\n\n",
940 l2fwd_ports_eth_addr[portid].addr_bytes[0],
941 l2fwd_ports_eth_addr[portid].addr_bytes[1],
942 l2fwd_ports_eth_addr[portid].addr_bytes[2],
943 l2fwd_ports_eth_addr[portid].addr_bytes[3],
944 l2fwd_ports_eth_addr[portid].addr_bytes[4],
945 l2fwd_ports_eth_addr[portid].addr_bytes[5]);
947 /* initialize port stats */
948 memset(&port_statistics, 0, sizeof(port_statistics));
951 if (!nb_ports_available) {
952 rte_exit(EXIT_FAILURE,
953 "All available ports are disabled. Please set portmask.\n");
956 check_all_ports_link_status(nb_ports, l2fwd_enabled_port_mask);
958 drain_tsc = (hz + US_PER_S - 1) / US_PER_S * BURST_TX_DRAIN_US;
960 RTE_LCORE_FOREACH(lcore_id) {
961 qconf = &lcore_queue_conf[lcore_id];
963 rte_spinlock_init(&qconf->lock);
965 if (rte_jobstats_context_init(&qconf->jobs_context) != 0)
966 rte_panic("Jobs stats context for core %u init failed\n", lcore_id);
968 if (qconf->n_rx_port == 0) {
970 "lcore %u: no ports so no jobs stats context initialization\n",
975 * Set fixed period by setting min = max = initial period. Set target to
976 * zero as it is irrelevant for this job. */
977 rte_jobstats_init(&qconf->flush_job, "flush", drain_tsc, drain_tsc,
980 rte_timer_init(&qconf->flush_timer);
981 ret = rte_timer_reset(&qconf->flush_timer, drain_tsc, PERIODICAL,
982 lcore_id, &l2fwd_flush_job, NULL);
985 rte_exit(1, "Failed to reset flush job timer for lcore %u: %s",
986 lcore_id, rte_strerror(-ret));
989 for (i = 0; i < qconf->n_rx_port; i++) {
990 struct rte_jobstats *job = &qconf->port_fwd_jobs[i];
992 portid = qconf->rx_port_list[i];
993 printf("Setting forward jon for port %u\n", portid);
995 snprintf(name, RTE_DIM(name), "port %u fwd", portid);
996 /* Setup forward job.
997 * Set min, max and initial period. Set target to MAX_PKT_BURST as
998 * this is desired optimal RX/TX burst size. */
999 rte_jobstats_init(job, name, 0, drain_tsc, 0, MAX_PKT_BURST);
1000 rte_jobstats_set_update_period_function(job, l2fwd_job_update_cb);
1002 rte_timer_init(&qconf->rx_timers[i]);
1003 ret = rte_timer_reset(&qconf->rx_timers[i], 0, PERIODICAL, lcore_id,
1004 &l2fwd_fwd_job, (void *)(uintptr_t)i);
1007 rte_exit(1, "Failed to reset lcore %u port %u job timer: %s",
1008 lcore_id, qconf->rx_port_list[i], rte_strerror(-ret));
1014 rte_eal_alarm_set(timer_period * MS_PER_S, show_stats_cb, NULL);
1016 RTE_LOG(INFO, L2FWD, "Stats display disabled\n");
1018 /* launch per-lcore init on every lcore */
1019 rte_eal_mp_remote_launch(l2fwd_launch_one_lcore, NULL, CALL_MASTER);
1020 RTE_LCORE_FOREACH_SLAVE(lcore_id) {
1021 if (rte_eal_wait_lcore(lcore_id) < 0)