4 * Copyright(c) 2010-2015 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_memory.h>
45 #include <rte_memcpy.h>
46 #include <rte_memzone.h>
48 #include <rte_per_lcore.h>
49 #include <rte_launch.h>
50 #include <rte_atomic.h>
51 #include <rte_cycles.h>
52 #include <rte_prefetch.h>
53 #include <rte_lcore.h>
54 #include <rte_per_lcore.h>
55 #include <rte_branch_prediction.h>
56 #include <rte_interrupts.h>
58 #include <rte_debug.h>
59 #include <rte_ether.h>
60 #include <rte_ethdev.h>
62 #include <rte_mempool.h>
64 #include <rte_spinlock.h>
66 #include <rte_errno.h>
67 #include <rte_jobstats.h>
68 #include <rte_timer.h>
69 #include <rte_alarm.h>
71 #define RTE_LOGTYPE_L2FWD RTE_LOGTYPE_USER1
75 #define MAX_PKT_BURST 32
76 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
79 * Configurable number of RX/TX ring descriptors
81 #define RTE_TEST_RX_DESC_DEFAULT 128
82 #define RTE_TEST_TX_DESC_DEFAULT 512
83 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
84 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
86 /* ethernet addresses of ports */
87 static struct ether_addr l2fwd_ports_eth_addr[RTE_MAX_ETHPORTS];
89 /* mask of enabled ports */
90 static uint32_t l2fwd_enabled_port_mask;
92 /* list of enabled ports */
93 static uint32_t l2fwd_dst_ports[RTE_MAX_ETHPORTS];
95 #define UPDATE_STEP_UP 1
96 #define UPDATE_STEP_DOWN 32
98 static unsigned int l2fwd_rx_queue_per_lcore = 1;
101 uint64_t next_flush_time;
103 struct rte_mbuf *mbufs[MAX_PKT_BURST];
106 #define MAX_RX_QUEUE_PER_LCORE 16
107 #define MAX_TX_QUEUE_PER_PORT 16
108 struct lcore_queue_conf {
110 unsigned rx_port_list[MAX_RX_QUEUE_PER_LCORE];
111 struct mbuf_table tx_mbufs[RTE_MAX_ETHPORTS];
113 struct rte_timer rx_timers[MAX_RX_QUEUE_PER_LCORE];
114 struct rte_jobstats port_fwd_jobs[MAX_RX_QUEUE_PER_LCORE];
116 struct rte_timer flush_timer;
117 struct rte_jobstats flush_job;
118 struct rte_jobstats idle_job;
119 struct rte_jobstats_context jobs_context;
121 rte_atomic16_t stats_read_pending;
123 } __rte_cache_aligned;
124 struct lcore_queue_conf lcore_queue_conf[RTE_MAX_LCORE];
126 static const struct rte_eth_conf port_conf = {
129 .header_split = 0, /**< Header Split disabled */
130 .hw_ip_checksum = 0, /**< IP checksum offload disabled */
131 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
132 .jumbo_frame = 0, /**< Jumbo Frame Support disabled */
133 .hw_strip_crc = 0, /**< CRC stripped by hardware */
136 .mq_mode = ETH_MQ_TX_NONE,
140 struct rte_mempool *l2fwd_pktmbuf_pool = NULL;
142 /* Per-port statistics struct */
143 struct l2fwd_port_statistics {
147 } __rte_cache_aligned;
148 struct l2fwd_port_statistics port_statistics[RTE_MAX_ETHPORTS];
151 #define MAX_TIMER_PERIOD 86400
152 /* default period is 10 seconds */
153 static int64_t timer_period = 10;
154 /* default timer frequency */
156 /* BURST_TX_DRAIN_US converted to cycles */
158 /* Convert cycles to ns */
160 cycles_to_ns(uint64_t cycles)
164 t *= (double)NS_PER_S;
170 show_lcore_stats(unsigned lcore_id)
172 struct lcore_queue_conf *qconf = &lcore_queue_conf[lcore_id];
173 struct rte_jobstats_context *ctx = &qconf->jobs_context;
174 struct rte_jobstats *job;
177 /* LCore statistics. */
178 uint64_t stats_period, loop_count;
179 uint64_t exec, exec_min, exec_max;
180 uint64_t management, management_min, management_max;
181 uint64_t busy, busy_min, busy_max;
183 /* Jobs statistics. */
184 const uint8_t port_cnt = qconf->n_rx_port;
185 uint64_t jobs_exec_cnt[port_cnt], jobs_period[port_cnt];
186 uint64_t jobs_exec[port_cnt], jobs_exec_min[port_cnt],
187 jobs_exec_max[port_cnt];
189 uint64_t flush_exec_cnt, flush_period;
190 uint64_t flush_exec, flush_exec_min, flush_exec_max;
192 uint64_t idle_exec_cnt;
193 uint64_t idle_exec, idle_exec_min, idle_exec_max;
194 uint64_t collection_time = rte_get_timer_cycles();
196 /* Ask forwarding thread to give us stats. */
197 rte_atomic16_set(&qconf->stats_read_pending, 1);
198 rte_spinlock_lock(&qconf->lock);
199 rte_atomic16_set(&qconf->stats_read_pending, 0);
201 /* Collect context statistics. */
202 stats_period = ctx->state_time - ctx->start_time;
203 loop_count = ctx->loop_cnt;
205 exec = ctx->exec_time;
206 exec_min = ctx->min_exec_time;
207 exec_max = ctx->max_exec_time;
209 management = ctx->management_time;
210 management_min = ctx->min_management_time;
211 management_max = ctx->max_management_time;
213 rte_jobstats_context_reset(ctx);
215 for (i = 0; i < port_cnt; i++) {
216 job = &qconf->port_fwd_jobs[i];
218 jobs_exec_cnt[i] = job->exec_cnt;
219 jobs_period[i] = job->period;
221 jobs_exec[i] = job->exec_time;
222 jobs_exec_min[i] = job->min_exec_time;
223 jobs_exec_max[i] = job->max_exec_time;
225 rte_jobstats_reset(job);
228 flush_exec_cnt = qconf->flush_job.exec_cnt;
229 flush_period = qconf->flush_job.period;
230 flush_exec = qconf->flush_job.exec_time;
231 flush_exec_min = qconf->flush_job.min_exec_time;
232 flush_exec_max = qconf->flush_job.max_exec_time;
233 rte_jobstats_reset(&qconf->flush_job);
235 idle_exec_cnt = qconf->idle_job.exec_cnt;
236 idle_exec = qconf->idle_job.exec_time;
237 idle_exec_min = qconf->idle_job.min_exec_time;
238 idle_exec_max = qconf->idle_job.max_exec_time;
239 rte_jobstats_reset(&qconf->idle_job);
241 rte_spinlock_unlock(&qconf->lock);
244 busy = exec + management;
245 busy_min = exec_min + management_min;
246 busy_max = exec_max + management_max;
249 collection_time = rte_get_timer_cycles() - collection_time;
251 #define STAT_FMT "\n%-18s %'14.0f %6.1f%% %'10.0f %'10.0f %'10.0f"
253 printf("\n----------------"
254 "\nLCore %3u: statistics (time in ns, collected in %'9.0f)"
255 "\n%-18s %14s %7s %10s %10s %10s "
257 "\n%-18s %'14" PRIu64
259 STAT_FMT /* Management */
262 lcore_id, cycles_to_ns(collection_time),
263 "Stat type", "total", "%total", "avg", "min", "max",
264 "Stats duration:", cycles_to_ns(stats_period),
265 "Loop count:", loop_count,
267 cycles_to_ns(exec), exec * 100.0 / stats_period,
268 cycles_to_ns(loop_count ? exec / loop_count : 0),
269 cycles_to_ns(exec_min),
270 cycles_to_ns(exec_max),
272 cycles_to_ns(management), management * 100.0 / stats_period,
273 cycles_to_ns(loop_count ? management / loop_count : 0),
274 cycles_to_ns(management_min),
275 cycles_to_ns(management_max),
277 cycles_to_ns(busy), busy * 100.0 / stats_period,
278 cycles_to_ns(loop_count ? busy / loop_count : 0),
279 cycles_to_ns(busy_min),
280 cycles_to_ns(busy_max),
282 cycles_to_ns(idle_exec), idle_exec * 100.0 / stats_period,
283 cycles_to_ns(idle_exec_cnt ? idle_exec / idle_exec_cnt : 0),
284 cycles_to_ns(idle_exec_min),
285 cycles_to_ns(idle_exec_max));
287 for (i = 0; i < qconf->n_rx_port; i++) {
288 job = &qconf->port_fwd_jobs[i];
289 printf("\n\nJob %" PRIu32 ": %-20s "
290 "\n%-18s %'14" PRIu64
294 "Exec count:", jobs_exec_cnt[i],
295 "Exec period: ", cycles_to_ns(jobs_period[i]),
297 cycles_to_ns(jobs_exec[i]), jobs_exec[i] * 100.0 / stats_period,
298 cycles_to_ns(jobs_exec_cnt[i] ? jobs_exec[i] / jobs_exec_cnt[i]
300 cycles_to_ns(jobs_exec_min[i]),
301 cycles_to_ns(jobs_exec_max[i]));
304 if (qconf->n_rx_port > 0) {
305 job = &qconf->flush_job;
306 printf("\n\nJob %" PRIu32 ": %-20s "
307 "\n%-18s %'14" PRIu64
311 "Exec count:", flush_exec_cnt,
312 "Exec period: ", cycles_to_ns(flush_period),
314 cycles_to_ns(flush_exec), flush_exec * 100.0 / stats_period,
315 cycles_to_ns(flush_exec_cnt ? flush_exec / flush_exec_cnt : 0),
316 cycles_to_ns(flush_exec_min),
317 cycles_to_ns(flush_exec_max));
321 /* Print out statistics on packets dropped */
323 show_stats_cb(__rte_unused void *param)
325 uint64_t total_packets_dropped, total_packets_tx, total_packets_rx;
326 unsigned portid, lcore_id;
328 total_packets_dropped = 0;
329 total_packets_tx = 0;
330 total_packets_rx = 0;
332 const char clr[] = { 27, '[', '2', 'J', '\0' };
333 const char topLeft[] = { 27, '[', '1', ';', '1', 'H', '\0' };
335 /* Clear screen and move to top left */
337 "\nPort statistics ===================================",
340 for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
341 /* skip disabled ports */
342 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
344 printf("\nStatistics for port %u ------------------------------"
345 "\nPackets sent: %24"PRIu64
346 "\nPackets received: %20"PRIu64
347 "\nPackets dropped: %21"PRIu64,
349 port_statistics[portid].tx,
350 port_statistics[portid].rx,
351 port_statistics[portid].dropped);
353 total_packets_dropped += port_statistics[portid].dropped;
354 total_packets_tx += port_statistics[portid].tx;
355 total_packets_rx += port_statistics[portid].rx;
358 printf("\nAggregate statistics ==============================="
359 "\nTotal packets sent: %18"PRIu64
360 "\nTotal packets received: %14"PRIu64
361 "\nTotal packets dropped: %15"PRIu64
362 "\n====================================================",
365 total_packets_dropped);
367 RTE_LCORE_FOREACH(lcore_id) {
368 if (lcore_queue_conf[lcore_id].n_rx_port > 0)
369 show_lcore_stats(lcore_id);
372 printf("\n====================================================\n");
373 rte_eal_alarm_set(timer_period * US_PER_S, show_stats_cb, NULL);
376 /* Send the burst of packets on an output interface */
378 l2fwd_send_burst(struct lcore_queue_conf *qconf, uint8_t port)
380 struct mbuf_table *m_table;
382 uint16_t queueid = 0;
385 m_table = &qconf->tx_mbufs[port];
388 m_table->next_flush_time = rte_get_timer_cycles() + drain_tsc;
391 ret = rte_eth_tx_burst(port, queueid, m_table->mbufs, n);
393 port_statistics[port].tx += ret;
394 if (unlikely(ret < n)) {
395 port_statistics[port].dropped += (n - ret);
397 rte_pktmbuf_free(m_table->mbufs[ret]);
402 /* Enqueue packets for TX and prepare them to be sent */
404 l2fwd_send_packet(struct rte_mbuf *m, uint8_t port)
406 const unsigned lcore_id = rte_lcore_id();
407 struct lcore_queue_conf *qconf = &lcore_queue_conf[lcore_id];
408 struct mbuf_table *m_table = &qconf->tx_mbufs[port];
409 uint16_t len = qconf->tx_mbufs[port].len;
411 m_table->mbufs[len] = m;
416 /* Enough pkts to be sent. */
417 if (unlikely(len == MAX_PKT_BURST))
418 l2fwd_send_burst(qconf, port);
424 l2fwd_simple_forward(struct rte_mbuf *m, unsigned portid)
426 struct ether_hdr *eth;
430 dst_port = l2fwd_dst_ports[portid];
431 eth = rte_pktmbuf_mtod(m, struct ether_hdr *);
433 /* 02:00:00:00:00:xx */
434 tmp = ð->d_addr.addr_bytes[0];
435 *((uint64_t *)tmp) = 0x000000000002 + ((uint64_t)dst_port << 40);
438 ether_addr_copy(&l2fwd_ports_eth_addr[dst_port], ð->s_addr);
440 l2fwd_send_packet(m, (uint8_t) dst_port);
444 l2fwd_job_update_cb(struct rte_jobstats *job, int64_t result)
446 int64_t err = job->target - result;
447 int64_t histeresis = job->target / 8;
449 if (err < -histeresis) {
450 if (job->min_period + UPDATE_STEP_DOWN < job->period)
451 job->period -= UPDATE_STEP_DOWN;
452 } else if (err > histeresis) {
453 if (job->period + UPDATE_STEP_UP < job->max_period)
454 job->period += UPDATE_STEP_UP;
459 l2fwd_fwd_job(__rte_unused struct rte_timer *timer, void *arg)
461 struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
464 const uint8_t port_idx = (uintptr_t) arg;
465 const unsigned lcore_id = rte_lcore_id();
466 struct lcore_queue_conf *qconf = &lcore_queue_conf[lcore_id];
467 struct rte_jobstats *job = &qconf->port_fwd_jobs[port_idx];
468 const uint8_t portid = qconf->rx_port_list[port_idx];
471 uint16_t total_nb_rx;
473 rte_jobstats_start(&qconf->jobs_context, job);
475 /* Call rx burst 2 times. This allow rte_jobstats logic to see if this
476 * function must be called more frequently. */
478 total_nb_rx = rte_eth_rx_burst((uint8_t) portid, 0, pkts_burst,
481 for (j = 0; j < total_nb_rx; j++) {
483 rte_prefetch0(rte_pktmbuf_mtod(m, void *));
484 l2fwd_simple_forward(m, portid);
487 if (total_nb_rx == MAX_PKT_BURST) {
488 const uint16_t nb_rx = rte_eth_rx_burst((uint8_t) portid, 0, pkts_burst,
491 total_nb_rx += nb_rx;
492 for (j = 0; j < nb_rx; j++) {
494 rte_prefetch0(rte_pktmbuf_mtod(m, void *));
495 l2fwd_simple_forward(m, portid);
499 port_statistics[portid].rx += total_nb_rx;
501 /* Adjust period time in which we are running here. */
502 if (rte_jobstats_finish(job, total_nb_rx) != 0) {
503 rte_timer_reset(&qconf->rx_timers[port_idx], job->period, PERIODICAL,
504 lcore_id, l2fwd_fwd_job, arg);
509 l2fwd_flush_job(__rte_unused struct rte_timer *timer, __rte_unused void *arg)
513 struct lcore_queue_conf *qconf;
514 struct mbuf_table *m_table;
517 lcore_id = rte_lcore_id();
518 qconf = &lcore_queue_conf[lcore_id];
520 rte_jobstats_start(&qconf->jobs_context, &qconf->flush_job);
522 now = rte_get_timer_cycles();
523 lcore_id = rte_lcore_id();
524 qconf = &lcore_queue_conf[lcore_id];
525 for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
526 m_table = &qconf->tx_mbufs[portid];
527 if (m_table->len == 0 || m_table->next_flush_time <= now)
530 l2fwd_send_burst(qconf, portid);
534 /* Pass target to indicate that this job is happy of time interwal
535 * in which it was called. */
536 rte_jobstats_finish(&qconf->flush_job, qconf->flush_job.target);
539 /* main processing loop */
541 l2fwd_main_loop(void)
545 struct lcore_queue_conf *qconf;
546 uint8_t stats_read_pending = 0;
549 lcore_id = rte_lcore_id();
550 qconf = &lcore_queue_conf[lcore_id];
552 if (qconf->n_rx_port == 0) {
553 RTE_LOG(INFO, L2FWD, "lcore %u has nothing to do\n", lcore_id);
557 RTE_LOG(INFO, L2FWD, "entering main loop on lcore %u\n", lcore_id);
559 for (i = 0; i < qconf->n_rx_port; i++) {
561 portid = qconf->rx_port_list[i];
562 RTE_LOG(INFO, L2FWD, " -- lcoreid=%u portid=%u\n", lcore_id,
566 rte_jobstats_init(&qconf->idle_job, "idle", 0, 0, 0, 0);
569 rte_spinlock_lock(&qconf->lock);
572 rte_jobstats_context_start(&qconf->jobs_context);
575 * - Read stats_read_pending flag
576 * - check if some real job need to be executed
578 rte_jobstats_start(&qconf->jobs_context, &qconf->idle_job);
582 uint64_t now = rte_get_timer_cycles();
584 need_manage = qconf->flush_timer.expire < now;
585 /* Check if we was esked to give a stats. */
587 rte_atomic16_read(&qconf->stats_read_pending);
588 need_manage |= stats_read_pending;
590 for (i = 0; i < qconf->n_rx_port && !need_manage; i++)
591 need_manage = qconf->rx_timers[i].expire < now;
593 } while (!need_manage);
594 rte_jobstats_finish(&qconf->idle_job, qconf->idle_job.target);
597 rte_jobstats_context_finish(&qconf->jobs_context);
598 } while (likely(stats_read_pending == 0));
600 rte_spinlock_unlock(&qconf->lock);
606 l2fwd_launch_one_lcore(__attribute__((unused)) void *dummy)
614 l2fwd_usage(const char *prgname)
616 printf("%s [EAL options] -- -p PORTMASK [-q NQ]\n"
617 " -p PORTMASK: hexadecimal bitmask of ports to configure\n"
618 " -q NQ: number of queue (=ports) per lcore (default is 1)\n"
619 " -T PERIOD: statistics will be refreshed each PERIOD seconds (0 to disable, 10 default, 86400 maximum)\n"
620 " -l set system default locale instead of default (\"C\" locale) for thousands separator in stats.",
625 l2fwd_parse_portmask(const char *portmask)
630 /* parse hexadecimal string */
631 pm = strtoul(portmask, &end, 16);
632 if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
642 l2fwd_parse_nqueue(const char *q_arg)
647 /* parse hexadecimal string */
648 n = strtoul(q_arg, &end, 10);
649 if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
653 if (n >= MAX_RX_QUEUE_PER_LCORE)
660 l2fwd_parse_timer_period(const char *q_arg)
665 /* parse number string */
666 n = strtol(q_arg, &end, 10);
667 if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
669 if (n >= MAX_TIMER_PERIOD)
675 /* Parse the argument given in the command line of the application */
677 l2fwd_parse_args(int argc, char **argv)
682 char *prgname = argv[0];
683 static struct option lgopts[] = {
689 while ((opt = getopt_long(argc, argvopt, "p:q:T:l",
690 lgopts, &option_index)) != EOF) {
695 l2fwd_enabled_port_mask = l2fwd_parse_portmask(optarg);
696 if (l2fwd_enabled_port_mask == 0) {
697 printf("invalid portmask\n");
698 l2fwd_usage(prgname);
705 l2fwd_rx_queue_per_lcore = l2fwd_parse_nqueue(optarg);
706 if (l2fwd_rx_queue_per_lcore == 0) {
707 printf("invalid queue number\n");
708 l2fwd_usage(prgname);
715 timer_period = l2fwd_parse_timer_period(optarg);
716 if (timer_period < 0) {
717 printf("invalid timer period\n");
718 l2fwd_usage(prgname);
723 /* For thousands separator in printf. */
725 setlocale(LC_ALL, "");
730 l2fwd_usage(prgname);
734 l2fwd_usage(prgname);
740 argv[optind-1] = prgname;
743 optind = 0; /* reset getopt lib */
747 /* Check the link status of all ports in up to 9s, and print them finally */
749 check_all_ports_link_status(uint8_t port_num, uint32_t port_mask)
751 #define CHECK_INTERVAL 100 /* 100ms */
752 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
753 uint8_t portid, count, all_ports_up, print_flag = 0;
754 struct rte_eth_link link;
756 printf("\nChecking link status");
758 for (count = 0; count <= MAX_CHECK_TIME; count++) {
760 for (portid = 0; portid < port_num; portid++) {
761 if ((port_mask & (1 << portid)) == 0)
763 memset(&link, 0, sizeof(link));
764 rte_eth_link_get_nowait(portid, &link);
765 /* print link status if flag set */
766 if (print_flag == 1) {
767 if (link.link_status)
768 printf("Port %d Link Up - speed %u "
769 "Mbps - %s\n", (uint8_t)portid,
770 (unsigned)link.link_speed,
771 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
772 ("full-duplex") : ("half-duplex\n"));
774 printf("Port %d Link Down\n",
778 /* clear all_ports_up flag if any link down */
779 if (link.link_status == 0) {
784 /* after finally printing all link status, get out */
788 if (all_ports_up == 0) {
791 rte_delay_ms(CHECK_INTERVAL);
794 /* set the print_flag if all ports up or timeout */
795 if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
803 main(int argc, char **argv)
805 struct lcore_queue_conf *qconf;
806 struct rte_eth_dev_info dev_info;
807 unsigned lcore_id, rx_lcore_id;
808 unsigned nb_ports_in_mask = 0;
810 char name[RTE_JOBSTATS_NAMESIZE];
812 uint8_t nb_ports_available;
813 uint8_t portid, last_port;
817 ret = rte_eal_init(argc, argv);
819 rte_exit(EXIT_FAILURE, "Invalid EAL arguments\n");
823 /* parse application arguments (after the EAL ones) */
824 ret = l2fwd_parse_args(argc, argv);
826 rte_exit(EXIT_FAILURE, "Invalid L2FWD arguments\n");
828 rte_timer_subsystem_init();
830 /* fetch default timer frequency. */
831 hz = rte_get_timer_hz();
833 /* create the mbuf pool */
835 rte_pktmbuf_pool_create("mbuf_pool", NB_MBUF, 32,
836 0, RTE_MBUF_DEFAULT_BUF_SIZE, rte_socket_id());
837 if (l2fwd_pktmbuf_pool == NULL)
838 rte_exit(EXIT_FAILURE, "Cannot init mbuf pool\n");
840 nb_ports = rte_eth_dev_count();
842 rte_exit(EXIT_FAILURE, "No Ethernet ports - bye\n");
844 if (nb_ports > RTE_MAX_ETHPORTS)
845 nb_ports = RTE_MAX_ETHPORTS;
847 /* reset l2fwd_dst_ports */
848 for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++)
849 l2fwd_dst_ports[portid] = 0;
853 * Each logical core is assigned a dedicated TX queue on each port.
855 for (portid = 0; portid < nb_ports; portid++) {
856 /* skip ports that are not enabled */
857 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
860 if (nb_ports_in_mask % 2) {
861 l2fwd_dst_ports[portid] = last_port;
862 l2fwd_dst_ports[last_port] = portid;
868 rte_eth_dev_info_get(portid, &dev_info);
870 if (nb_ports_in_mask % 2) {
871 printf("Notice: odd number of ports in portmask.\n");
872 l2fwd_dst_ports[last_port] = last_port;
878 /* Initialize the port/queue configuration of each logical core */
879 for (portid = 0; portid < nb_ports; portid++) {
880 /* skip ports that are not enabled */
881 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
884 /* get the lcore_id for this port */
885 while (rte_lcore_is_enabled(rx_lcore_id) == 0 ||
886 lcore_queue_conf[rx_lcore_id].n_rx_port ==
887 l2fwd_rx_queue_per_lcore) {
889 if (rx_lcore_id >= RTE_MAX_LCORE)
890 rte_exit(EXIT_FAILURE, "Not enough cores\n");
893 if (qconf != &lcore_queue_conf[rx_lcore_id])
894 /* Assigned a new logical core in the loop above. */
895 qconf = &lcore_queue_conf[rx_lcore_id];
897 qconf->rx_port_list[qconf->n_rx_port] = portid;
899 printf("Lcore %u: RX port %u\n", rx_lcore_id, (unsigned) portid);
902 nb_ports_available = nb_ports;
904 /* Initialise each port */
905 for (portid = 0; portid < nb_ports; portid++) {
906 /* skip ports that are not enabled */
907 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0) {
908 printf("Skipping disabled port %u\n", (unsigned) portid);
909 nb_ports_available--;
913 printf("Initializing port %u... ", (unsigned) portid);
915 ret = rte_eth_dev_configure(portid, 1, 1, &port_conf);
917 rte_exit(EXIT_FAILURE, "Cannot configure device: err=%d, port=%u\n",
918 ret, (unsigned) portid);
920 rte_eth_macaddr_get(portid, &l2fwd_ports_eth_addr[portid]);
922 /* init one RX queue */
924 ret = rte_eth_rx_queue_setup(portid, 0, nb_rxd,
925 rte_eth_dev_socket_id(portid),
929 rte_exit(EXIT_FAILURE, "rte_eth_rx_queue_setup:err=%d, port=%u\n",
930 ret, (unsigned) portid);
932 /* init one TX queue on each port */
934 ret = rte_eth_tx_queue_setup(portid, 0, nb_txd,
935 rte_eth_dev_socket_id(portid),
938 rte_exit(EXIT_FAILURE, "rte_eth_tx_queue_setup:err=%d, port=%u\n",
939 ret, (unsigned) portid);
942 ret = rte_eth_dev_start(portid);
944 rte_exit(EXIT_FAILURE, "rte_eth_dev_start:err=%d, port=%u\n",
945 ret, (unsigned) portid);
949 rte_eth_promiscuous_enable(portid);
951 printf("Port %u, MAC address: %02X:%02X:%02X:%02X:%02X:%02X\n\n",
953 l2fwd_ports_eth_addr[portid].addr_bytes[0],
954 l2fwd_ports_eth_addr[portid].addr_bytes[1],
955 l2fwd_ports_eth_addr[portid].addr_bytes[2],
956 l2fwd_ports_eth_addr[portid].addr_bytes[3],
957 l2fwd_ports_eth_addr[portid].addr_bytes[4],
958 l2fwd_ports_eth_addr[portid].addr_bytes[5]);
960 /* initialize port stats */
961 memset(&port_statistics, 0, sizeof(port_statistics));
964 if (!nb_ports_available) {
965 rte_exit(EXIT_FAILURE,
966 "All available ports are disabled. Please set portmask.\n");
969 check_all_ports_link_status(nb_ports, l2fwd_enabled_port_mask);
971 drain_tsc = (hz + US_PER_S - 1) / US_PER_S * BURST_TX_DRAIN_US;
973 RTE_LCORE_FOREACH(lcore_id) {
974 qconf = &lcore_queue_conf[lcore_id];
976 rte_spinlock_init(&qconf->lock);
978 if (rte_jobstats_context_init(&qconf->jobs_context) != 0)
979 rte_panic("Jobs stats context for core %u init failed\n", lcore_id);
981 if (qconf->n_rx_port == 0) {
983 "lcore %u: no ports so no jobs stats context initialization\n",
988 * Set fixed period by setting min = max = initial period. Set target to
989 * zero as it is irrelevant for this job. */
990 rte_jobstats_init(&qconf->flush_job, "flush", drain_tsc, drain_tsc,
993 rte_timer_init(&qconf->flush_timer);
994 ret = rte_timer_reset(&qconf->flush_timer, drain_tsc, PERIODICAL,
995 lcore_id, &l2fwd_flush_job, NULL);
998 rte_exit(1, "Failed to reset flush job timer for lcore %u: %s",
999 lcore_id, rte_strerror(-ret));
1002 for (i = 0; i < qconf->n_rx_port; i++) {
1003 struct rte_jobstats *job = &qconf->port_fwd_jobs[i];
1005 portid = qconf->rx_port_list[i];
1006 printf("Setting forward jon for port %u\n", portid);
1008 snprintf(name, RTE_DIM(name), "port %u fwd", portid);
1009 /* Setup forward job.
1010 * Set min, max and initial period. Set target to MAX_PKT_BURST as
1011 * this is desired optimal RX/TX burst size. */
1012 rte_jobstats_init(job, name, 0, drain_tsc, 0, MAX_PKT_BURST);
1013 rte_jobstats_set_update_period_function(job, l2fwd_job_update_cb);
1015 rte_timer_init(&qconf->rx_timers[i]);
1016 ret = rte_timer_reset(&qconf->rx_timers[i], 0, PERIODICAL, lcore_id,
1017 &l2fwd_fwd_job, (void *)(uintptr_t)i);
1020 rte_exit(1, "Failed to reset lcore %u port %u job timer: %s",
1021 lcore_id, qconf->rx_port_list[i], rte_strerror(-ret));
1027 rte_eal_alarm_set(timer_period * MS_PER_S, show_stats_cb, NULL);
1029 RTE_LOG(INFO, L2FWD, "Stats display disabled\n");
1031 /* launch per-lcore init on every lcore */
1032 rte_eal_mp_remote_launch(l2fwd_launch_one_lcore, NULL, CALL_MASTER);
1033 RTE_LCORE_FOREACH_SLAVE(lcore_id) {
1034 if (rte_eal_wait_lcore(lcore_id) < 0)