4 * Copyright(c) 2010-2014 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.
44 #include <rte_config.h>
45 #include <rte_cycles.h>
46 #include <rte_eal_memconfig.h>
47 #include <rte_debug.h>
48 #include <rte_ether.h>
49 #include <rte_ethdev.h>
50 #include <rte_string_fns.h>
51 #include <rte_ivshmem.h>
53 #include <rte_mempool.h>
56 #include "../include/common.h"
59 * Configurable number of RX/TX ring descriptors
61 #define RTE_TEST_RX_DESC_DEFAULT 128
62 #define RTE_TEST_TX_DESC_DEFAULT 512
63 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
64 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
67 * RX and TX Prefetch, Host, and Write-back threshold values should be
68 * carefully set for optimal performance. Consult the network
69 * controller's datasheet and supporting DPDK documentation for guidance
70 * on how these parameters should be set.
72 #define RX_PTHRESH 8 /**< Default values of RX prefetch threshold reg. */
73 #define RX_HTHRESH 8 /**< Default values of RX host threshold reg. */
74 #define RX_WTHRESH 4 /**< Default values of RX write-back threshold reg. */
77 * These default values are optimized for use with the Intel(R) 82599 10 GbE
78 * Controller and the DPDK ixgbe PMD. Consider using other values for other
79 * network controllers and/or network drivers.
81 #define TX_PTHRESH 36 /**< Default values of TX prefetch threshold reg. */
82 #define TX_HTHRESH 0 /**< Default values of TX host threshold reg. */
83 #define TX_WTHRESH 0 /**< Default values of TX write-back threshold reg. */
85 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
87 /* mask of enabled ports */
88 static uint32_t l2fwd_ivshmem_enabled_port_mask = 0;
90 static struct ether_addr l2fwd_ivshmem_ports_eth_addr[RTE_MAX_ETHPORTS];
93 #define MBUF_SIZE (2048 + sizeof(struct rte_mbuf) + RTE_PKTMBUF_HEADROOM)
95 #define MAX_RX_QUEUE_PER_LCORE 16
96 #define MAX_TX_QUEUE_PER_PORT 16
97 struct lcore_queue_conf {
99 unsigned rx_port_list[MAX_RX_QUEUE_PER_LCORE];
100 struct vm_port_param * port_param[MAX_RX_QUEUE_PER_LCORE];
101 struct mbuf_table tx_mbufs[RTE_MAX_ETHPORTS];
102 struct mbuf_table rx_mbufs[RTE_MAX_ETHPORTS];
103 } __rte_cache_aligned;
104 static struct lcore_queue_conf lcore_queue_conf[RTE_MAX_LCORE];
106 static const struct rte_eth_conf port_conf = {
109 .header_split = 0, /**< Header Split disabled */
110 .hw_ip_checksum = 0, /**< IP checksum offload disabled */
111 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
112 .jumbo_frame = 0, /**< Jumbo Frame Support disabled */
113 .hw_strip_crc = 0, /**< CRC stripped by hardware */
116 .mq_mode = ETH_MQ_TX_NONE,
120 static const struct rte_eth_rxconf rx_conf = {
122 .pthresh = RX_PTHRESH,
123 .hthresh = RX_HTHRESH,
124 .wthresh = RX_WTHRESH,
128 static const struct rte_eth_txconf tx_conf = {
130 .pthresh = TX_PTHRESH,
131 .hthresh = TX_HTHRESH,
132 .wthresh = TX_WTHRESH,
134 .tx_free_thresh = 0, /* Use PMD default values */
135 .tx_rs_thresh = 0, /* Use PMD default values */
138 #define METADATA_NAME "l2fwd_ivshmem"
139 #define CMDLINE_OPT_FWD_CONF "fwd-conf"
141 #define QEMU_CMD_FMT "/tmp/ivshmem_qemu_cmdline_%s"
143 struct port_statistics port_statistics[RTE_MAX_ETHPORTS];
145 struct rte_mempool * l2fwd_ivshmem_pktmbuf_pool = NULL;
147 /* Print out statistics on packets dropped */
151 uint64_t total_packets_dropped, total_packets_tx, total_packets_rx;
152 uint64_t total_vm_packets_dropped, total_vm_packets_tx, total_vm_packets_rx;
155 total_packets_dropped = 0;
156 total_packets_tx = 0;
157 total_packets_rx = 0;
158 total_vm_packets_tx = 0;
159 total_vm_packets_rx = 0;
161 const char clr[] = { 27, '[', '2', 'J', '\0' };
162 const char topLeft[] = { 27, '[', '1', ';', '1', 'H','\0' };
164 /* Clear screen and move to top left */
165 printf("%s%s", clr, topLeft);
167 printf("\nPort statistics ====================================");
169 for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
170 /* skip disabled ports */
171 if ((l2fwd_ivshmem_enabled_port_mask & (1 << portid)) == 0)
173 printf("\nStatistics for port %u ------------------------------"
174 "\nPackets sent: %24"PRIu64
175 "\nPackets received: %20"PRIu64
176 "\nPackets dropped: %21"PRIu64,
178 port_statistics[portid].tx,
179 port_statistics[portid].rx,
180 port_statistics[portid].dropped);
182 total_packets_dropped += port_statistics[portid].dropped;
183 total_packets_tx += port_statistics[portid].tx;
184 total_packets_rx += port_statistics[portid].rx;
187 printf("\nVM statistics ======================================");
188 for (portid = 0; portid < ctrl->nb_ports; portid++) {
189 printf("\nStatistics for port %u ------------------------------"
190 "\nPackets sent: %24"PRIu64
191 "\nPackets received: %20"PRIu64,
193 ctrl->vm_ports[portid].stats.tx,
194 ctrl->vm_ports[portid].stats.rx);
196 total_vm_packets_dropped += ctrl->vm_ports[portid].stats.dropped;
197 total_vm_packets_tx += ctrl->vm_ports[portid].stats.tx;
198 total_vm_packets_rx += ctrl->vm_ports[portid].stats.rx;
200 printf("\nAggregate statistics ==============================="
201 "\nTotal packets sent: %18"PRIu64
202 "\nTotal packets received: %14"PRIu64
203 "\nTotal packets dropped: %15"PRIu64
204 "\nTotal VM packets sent: %15"PRIu64
205 "\nTotal VM packets received: %11"PRIu64,
208 total_packets_dropped,
210 total_vm_packets_rx);
211 printf("\n====================================================\n");
215 print_to_file(const char *cmdline, const char *config_name)
220 snprintf(path, sizeof(path), QEMU_CMD_FMT, config_name);
221 file = fopen(path, "w");
223 RTE_LOG(ERR, L2FWD_IVSHMEM, "Could not open '%s' \n", path);
227 RTE_LOG(DEBUG, L2FWD_IVSHMEM, "QEMU command line for config '%s': %s \n",
228 config_name, cmdline);
230 fprintf(file, "%s\n", cmdline);
236 generate_ivshmem_cmdline(const char *config_name)
238 char cmdline[PATH_MAX];
239 if (rte_ivshmem_metadata_cmdline_generate(cmdline, sizeof(cmdline),
243 if (print_to_file(cmdline, config_name) < 0)
246 rte_ivshmem_metadata_dump(stdout, config_name);
252 l2fwd_ivshmem_usage(const char *prgname)
254 printf("%s [EAL options] -- -p PORTMASK [-q NQ -T PERIOD]\n"
255 " -p PORTMASK: hexadecimal bitmask of ports to configure\n"
256 " -q NQ: number of queue (=ports) per lcore (default is 1)\n"
257 " -T PERIOD: statistics will be refreshed each PERIOD seconds "
258 "(0 to disable, 10 default, 86400 maximum)\n",
263 l2fwd_ivshmem_parse_nqueue(const char *q_arg)
268 /* parse hexadecimal string */
269 n = strtoul(q_arg, &end, 10);
270 if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
274 if (n >= MAX_RX_QUEUE_PER_LCORE)
281 l2fwd_ivshmem_parse_portmask(const char *portmask)
286 /* parse hexadecimal string */
287 pm = strtoul(portmask, &end, 16);
288 if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
298 l2fwd_ivshmem_parse_timer_period(const char *q_arg)
303 /* parse number string */
304 n = strtol(q_arg, &end, 10);
305 if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
307 if (n >= MAX_TIMER_PERIOD)
313 /* Parse the argument given in the command line of the application */
315 l2fwd_ivshmem_parse_args(int argc, char **argv)
320 char *prgname = argv[0];
321 static struct option lgopts[] = {
322 {CMDLINE_OPT_FWD_CONF, 1, 0, 0},
328 while ((opt = getopt_long(argc, argvopt, "q:p:T:",
329 lgopts, &option_index)) != EOF) {
334 l2fwd_ivshmem_enabled_port_mask = l2fwd_ivshmem_parse_portmask(optarg);
335 if (l2fwd_ivshmem_enabled_port_mask == 0) {
336 printf("invalid portmask\n");
337 l2fwd_ivshmem_usage(prgname);
344 l2fwd_ivshmem_rx_queue_per_lcore = l2fwd_ivshmem_parse_nqueue(optarg);
345 if (l2fwd_ivshmem_rx_queue_per_lcore == 0) {
346 printf("invalid queue number\n");
347 l2fwd_ivshmem_usage(prgname);
354 timer_period = l2fwd_ivshmem_parse_timer_period(optarg) * 1000 * TIMER_MILLISECOND;
355 if (timer_period < 0) {
356 printf("invalid timer period\n");
357 l2fwd_ivshmem_usage(prgname);
364 l2fwd_ivshmem_usage(prgname);
368 l2fwd_ivshmem_usage(prgname);
374 argv[optind-1] = prgname;
377 optind = 0; /* reset getopt lib */
381 /* Check the link status of all ports in up to 9s, and print them finally */
383 check_all_ports_link_status(uint8_t port_num, uint32_t port_mask)
385 #define CHECK_INTERVAL 100 /* 100ms */
386 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
387 uint8_t portid, count, all_ports_up, print_flag = 0;
388 struct rte_eth_link link;
390 printf("\nChecking link status");
392 for (count = 0; count <= MAX_CHECK_TIME; count++) {
394 for (portid = 0; portid < port_num; portid++) {
395 if ((port_mask & (1 << portid)) == 0)
397 memset(&link, 0, sizeof(link));
398 rte_eth_link_get_nowait(portid, &link);
399 /* print link status if flag set */
400 if (print_flag == 1) {
401 if (link.link_status)
402 printf("Port %d Link Up - speed %u "
403 "Mbps - %s\n", (uint8_t)portid,
404 (unsigned)link.link_speed,
405 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
406 ("full-duplex") : ("half-duplex\n"));
408 printf("Port %d Link Down\n",
412 /* clear all_ports_up flag if any link down */
413 if (link.link_status == 0) {
418 /* after finally printing all link status, get out */
422 if (all_ports_up == 0) {
425 rte_delay_ms(CHECK_INTERVAL);
428 /* set the print_flag if all ports up or timeout */
429 if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
436 /* Send the burst of packets on an output interface */
438 l2fwd_ivshmem_send_burst(struct lcore_queue_conf *qconf, unsigned n, uint8_t port)
440 struct rte_mbuf **m_table;
444 m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table;
446 ret = rte_eth_tx_burst(port, (uint16_t) queueid, m_table, (uint16_t) n);
447 port_statistics[port].tx += ret;
448 if (unlikely(ret < n)) {
449 port_statistics[port].dropped += (n - ret);
451 rte_pktmbuf_free(m_table[ret]);
458 /* Enqueue packets for TX and prepare them to be sent on the network */
460 l2fwd_ivshmem_send_packet(struct rte_mbuf *m, uint8_t port)
462 unsigned lcore_id, len;
463 struct lcore_queue_conf *qconf;
465 lcore_id = rte_lcore_id();
467 qconf = &lcore_queue_conf[lcore_id];
468 len = qconf->tx_mbufs[port].len;
469 qconf->tx_mbufs[port].m_table[len] = m;
472 /* enough pkts to be sent */
473 if (unlikely(len == MAX_PKT_BURST)) {
474 l2fwd_ivshmem_send_burst(qconf, MAX_PKT_BURST, port);
478 qconf->tx_mbufs[port].len = len;
483 l2fwd_ivshmem_receive_burst(struct lcore_queue_conf *qconf, unsigned portid,
486 struct rte_mbuf ** m;
487 struct rte_ring * rx;
488 unsigned len, pkt_idx;
490 m = qconf->rx_mbufs[portid].m_table;
491 len = qconf->rx_mbufs[portid].len;
492 rx = qconf->port_param[vm_port]->rx_ring;
494 /* if enqueueing failed, ring is probably full, so drop the packets */
495 if (rte_ring_enqueue_bulk(rx, (void**) m, len) < 0) {
496 port_statistics[portid].dropped += len;
500 rte_pktmbuf_free(m[pkt_idx]);
501 } while (++pkt_idx < len);
504 /* increment rx stats by however many packets we managed to receive */
505 port_statistics[portid].rx += len;
510 /* Enqueue packets for RX and prepare them to be sent to VM */
512 l2fwd_ivshmem_receive_packets(struct rte_mbuf ** m, unsigned n, unsigned portid,
515 unsigned lcore_id, len, pkt_idx;
516 struct lcore_queue_conf *qconf;
518 lcore_id = rte_lcore_id();
520 qconf = &lcore_queue_conf[lcore_id];
522 len = qconf->rx_mbufs[portid].len;
525 /* enqueue packets */
526 while (pkt_idx < n && len < MAX_PKT_BURST * 2) {
527 qconf->rx_mbufs[portid].m_table[len++] = m[pkt_idx++];
530 /* increment queue len by however many packets we managed to receive */
531 qconf->rx_mbufs[portid].len += pkt_idx;
533 /* drop the unreceived packets */
534 if (unlikely(pkt_idx < n)) {
535 port_statistics[portid].dropped += n - pkt_idx;
537 rte_pktmbuf_free(m[pkt_idx]);
538 } while (++pkt_idx < n);
541 /* drain the queue halfway through the maximum capacity */
542 if (unlikely(qconf->rx_mbufs[portid].len >= MAX_PKT_BURST))
543 l2fwd_ivshmem_receive_burst(qconf, portid, vm_port);
548 /* loop for host forwarding mode.
549 * the data flow is as follows:
550 * 1) get packets from TX queue and send it out from a given port
551 * 2) RX packets from given port and enqueue them on RX ring
552 * 3) dequeue packets from TX ring and put them on TX queue for a given port
557 struct rte_mbuf *pkts_burst[MAX_PKT_BURST * 2];
560 uint64_t prev_tsc, diff_tsc, cur_tsc, timer_tsc;
561 unsigned i, j, portid, nb_rx;
562 struct lcore_queue_conf *qconf;
564 const uint64_t drain_tsc = (rte_get_tsc_hz() + US_PER_S - 1) / US_PER_S * BURST_TX_DRAIN_US;
569 lcore_id = rte_lcore_id();
570 qconf = &lcore_queue_conf[lcore_id];
572 if (qconf->n_rx_port == 0) {
573 RTE_LOG(INFO, L2FWD_IVSHMEM, "lcore %u has nothing to do\n", lcore_id);
577 RTE_LOG(INFO, L2FWD_IVSHMEM, "entering main loop on lcore %u\n", lcore_id);
579 for (i = 0; i < qconf->n_rx_port; i++) {
581 portid = qconf->rx_port_list[i];
582 RTE_LOG(INFO, L2FWD_IVSHMEM, " -- lcoreid=%u portid=%u\n", lcore_id,
586 while (ctrl->state == STATE_FWD) {
588 cur_tsc = rte_rdtsc();
593 diff_tsc = cur_tsc - prev_tsc;
594 if (unlikely(diff_tsc > drain_tsc)) {
599 for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
600 if (qconf->tx_mbufs[portid].len == 0)
602 l2fwd_ivshmem_send_burst(qconf,
603 qconf->tx_mbufs[portid].len,
605 qconf->tx_mbufs[portid].len = 0;
611 for (i = 0; i < qconf->n_rx_port; i++) {
612 portid = qconf->rx_port_list[i];
613 if (qconf->rx_mbufs[portid].len == 0)
615 l2fwd_ivshmem_receive_burst(qconf, portid, i);
616 qconf->rx_mbufs[portid].len = 0;
619 /* if timer is enabled */
620 if (timer_period > 0) {
622 /* advance the timer */
623 timer_tsc += diff_tsc;
625 /* if timer has reached its timeout */
626 if (unlikely(timer_tsc >= (uint64_t) timer_period)) {
628 /* do this only on master core */
629 if (lcore_id == rte_get_master_lcore()) {
631 /* reset the timer */
641 * packet RX and forwarding
643 for (i = 0; i < qconf->n_rx_port; i++) {
645 /* RX packets from port and put them on RX ring */
646 portid = qconf->rx_port_list[i];
647 nb_rx = rte_eth_rx_burst((uint8_t) portid, 0,
648 pkts_burst, MAX_PKT_BURST);
651 l2fwd_ivshmem_receive_packets(pkts_burst, nb_rx, portid, i);
653 /* dequeue packets from TX ring and send them to TX queue */
654 tx = qconf->port_param[i]->tx_ring;
656 nb_rx = rte_ring_count(tx);
658 nb_rx = RTE_MIN(nb_rx, (unsigned) MAX_PKT_BURST);
663 /* should not happen */
664 if (unlikely(rte_ring_dequeue_bulk(tx, (void**) pkts_burst, nb_rx) < 0)) {
665 ctrl->state = STATE_FAIL;
669 for (j = 0; j < nb_rx; j++) {
671 l2fwd_ivshmem_send_packet(m, portid);
678 l2fwd_ivshmem_launch_one_lcore(__attribute__((unused)) void *dummy)
684 int main(int argc, char **argv)
686 char name[RTE_RING_NAMESIZE];
688 struct lcore_queue_conf *qconf;
689 struct rte_eth_dev_info dev_info;
690 uint8_t portid, port_nr;
691 uint8_t nb_ports, nb_ports_available;
692 uint8_t nb_ports_in_mask;
694 unsigned lcore_id, rx_lcore_id;
697 ret = rte_eal_init(argc, argv);
699 rte_exit(EXIT_FAILURE, "Invalid EAL arguments\n");
703 /* parse application arguments (after the EAL ones) */
704 ret = l2fwd_ivshmem_parse_args(argc, argv);
706 rte_exit(EXIT_FAILURE, "Invalid l2fwd-ivshmem arguments\n");
708 /* create a shared mbuf pool */
709 l2fwd_ivshmem_pktmbuf_pool =
710 rte_mempool_create(MBUF_MP_NAME, NB_MBUF,
712 sizeof(struct rte_pktmbuf_pool_private),
713 rte_pktmbuf_pool_init, NULL,
714 rte_pktmbuf_init, NULL,
716 if (l2fwd_ivshmem_pktmbuf_pool == NULL)
717 rte_exit(EXIT_FAILURE, "Cannot init mbuf pool\n");
719 if (rte_eal_pci_probe() < 0)
720 rte_exit(EXIT_FAILURE, "Cannot probe PCI\n");
722 nb_ports = rte_eth_dev_count();
724 rte_exit(EXIT_FAILURE, "No Ethernet ports - bye\n");
726 if (nb_ports > RTE_MAX_ETHPORTS)
727 nb_ports = RTE_MAX_ETHPORTS;
730 * reserve memzone to communicate with VMs - we cannot use rte_malloc here
731 * because while it is technically possible, it is a very bad idea to share
732 * the heap between two primary processes.
734 ctrl_mz = rte_memzone_reserve(CTRL_MZ_NAME, sizeof(struct ivshmem_ctrl),
737 rte_exit(EXIT_FAILURE, "Cannot reserve control memzone\n");
738 ctrl = (struct ivshmem_ctrl*) ctrl_mz->addr;
740 memset(ctrl, 0, sizeof(struct ivshmem_ctrl));
743 * Each port is assigned an output port.
745 nb_ports_in_mask = 0;
746 for (portid = 0; portid < nb_ports; portid++) {
747 /* skip ports that are not enabled */
748 if ((l2fwd_ivshmem_enabled_port_mask & (1 << portid)) == 0)
751 ctrl->vm_ports[nb_ports_in_mask].dst = &ctrl->vm_ports[nb_ports_in_mask-1];
752 ctrl->vm_ports[nb_ports_in_mask-1].dst = &ctrl->vm_ports[nb_ports_in_mask];
757 rte_eth_dev_info_get(portid, &dev_info);
759 if (nb_ports_in_mask % 2) {
760 printf("Notice: odd number of ports in portmask.\n");
761 ctrl->vm_ports[nb_ports_in_mask-1].dst =
762 &ctrl->vm_ports[nb_ports_in_mask-1];
768 printf("Initializing ports configuration...\n");
770 nb_ports_available = nb_ports;
772 /* Initialise each port */
773 for (portid = 0; portid < nb_ports; portid++) {
775 /* skip ports that are not enabled */
776 if ((l2fwd_ivshmem_enabled_port_mask & (1 << portid)) == 0) {
777 printf("Skipping disabled port %u\n", (unsigned) portid);
778 nb_ports_available--;
783 printf("Initializing port %u... ", (unsigned) portid);
785 ret = rte_eth_dev_configure(portid, 1, 1, &port_conf);
787 rte_exit(EXIT_FAILURE, "Cannot configure device: err=%d, port=%u\n",
788 ret, (unsigned) portid);
790 rte_eth_macaddr_get(portid,&l2fwd_ivshmem_ports_eth_addr[portid]);
792 /* init one RX queue */
794 ret = rte_eth_rx_queue_setup(portid, 0, nb_rxd,
795 rte_eth_dev_socket_id(portid), &rx_conf,
796 l2fwd_ivshmem_pktmbuf_pool);
798 rte_exit(EXIT_FAILURE, "rte_eth_rx_queue_setup:err=%d, port=%u\n",
799 ret, (unsigned) portid);
801 /* init one TX queue on each port */
803 ret = rte_eth_tx_queue_setup(portid, 0, nb_txd,
804 rte_eth_dev_socket_id(portid), &tx_conf);
806 rte_exit(EXIT_FAILURE, "rte_eth_tx_queue_setup:err=%d, port=%u\n",
807 ret, (unsigned) portid);
810 ret = rte_eth_dev_start(portid);
812 rte_exit(EXIT_FAILURE, "rte_eth_dev_start:err=%d, port=%u\n",
813 ret, (unsigned) portid);
817 rte_eth_promiscuous_enable(portid);
819 printf("Port %u, MAC address: %02X:%02X:%02X:%02X:%02X:%02X\n\n",
821 l2fwd_ivshmem_ports_eth_addr[portid].addr_bytes[0],
822 l2fwd_ivshmem_ports_eth_addr[portid].addr_bytes[1],
823 l2fwd_ivshmem_ports_eth_addr[portid].addr_bytes[2],
824 l2fwd_ivshmem_ports_eth_addr[portid].addr_bytes[3],
825 l2fwd_ivshmem_ports_eth_addr[portid].addr_bytes[4],
826 l2fwd_ivshmem_ports_eth_addr[portid].addr_bytes[5]);
828 /* initialize port stats */
829 memset(&port_statistics, 0, sizeof(port_statistics));
832 if (!nb_ports_available) {
833 rte_exit(EXIT_FAILURE,
834 "All available ports are disabled. Please set portmask.\n");
838 /* Initialize the port/queue configuration of each logical core */
839 for (portid = 0; portid < nb_ports; portid++) {
840 if ((l2fwd_ivshmem_enabled_port_mask & (1 << portid)) == 0)
843 /* get the lcore_id for this port */
844 while (rte_lcore_is_enabled(rx_lcore_id) == 0 ||
845 lcore_queue_conf[rx_lcore_id].n_rx_port ==
846 l2fwd_ivshmem_rx_queue_per_lcore) {
848 if (rx_lcore_id >= RTE_MAX_LCORE)
849 rte_exit(EXIT_FAILURE, "Not enough cores\n");
852 if (qconf != &lcore_queue_conf[rx_lcore_id])
853 /* Assigned a new logical core in the loop above. */
854 qconf = &lcore_queue_conf[rx_lcore_id];
857 rte_eth_macaddr_get(portid, &ctrl->vm_ports[port_nr].ethaddr);
859 qconf->rx_port_list[qconf->n_rx_port] = portid;
860 qconf->port_param[qconf->n_rx_port] = &ctrl->vm_ports[port_nr];
863 printf("Lcore %u: RX port %u\n", rx_lcore_id, (unsigned) portid);
866 check_all_ports_link_status(nb_ports_available, l2fwd_ivshmem_enabled_port_mask);
868 /* create rings for each VM port (several ports can be on the same VM).
869 * note that we store the pointers in ctrl - that way, they are the same
870 * and valid across all VMs because ctrl is also in DPDK memory */
871 for (portid = 0; portid < nb_ports_available; portid++) {
873 /* RX ring. SP/SC because it's only used by host and a single VM */
874 snprintf(name, sizeof(name), "%s%i", RX_RING_PREFIX, portid);
875 r = rte_ring_create(name, NB_MBUF,
876 SOCKET_ID_ANY, RING_F_SP_ENQ | RING_F_SC_DEQ);
878 rte_exit(EXIT_FAILURE, "Cannot create ring %s\n", name);
880 ctrl->vm_ports[portid].rx_ring = r;
882 /* TX ring. SP/SC because it's only used by host and a single VM */
883 snprintf(name, sizeof(name), "%s%i", TX_RING_PREFIX, portid);
884 r = rte_ring_create(name, NB_MBUF,
885 SOCKET_ID_ANY, RING_F_SP_ENQ | RING_F_SC_DEQ);
887 rte_exit(EXIT_FAILURE, "Cannot create ring %s\n", name);
889 ctrl->vm_ports[portid].tx_ring = r;
892 /* create metadata, output cmdline */
893 if (rte_ivshmem_metadata_create(METADATA_NAME) < 0)
894 rte_exit(EXIT_FAILURE, "Cannot create IVSHMEM metadata\n");
896 if (rte_ivshmem_metadata_add_memzone(ctrl_mz, METADATA_NAME))
897 rte_exit(EXIT_FAILURE, "Cannot add memzone to IVSHMEM metadata\n");
899 if (rte_ivshmem_metadata_add_mempool(l2fwd_ivshmem_pktmbuf_pool, METADATA_NAME))
900 rte_exit(EXIT_FAILURE, "Cannot add mbuf mempool to IVSHMEM metadata\n");
902 for (portid = 0; portid < nb_ports_available; portid++) {
903 if (rte_ivshmem_metadata_add_ring(ctrl->vm_ports[portid].rx_ring,
905 rte_exit(EXIT_FAILURE, "Cannot add ring %s to IVSHMEM metadata\n",
906 ctrl->vm_ports[portid].rx_ring->name);
907 if (rte_ivshmem_metadata_add_ring(ctrl->vm_ports[portid].tx_ring,
909 rte_exit(EXIT_FAILURE, "Cannot add ring %s to IVSHMEM metadata\n",
910 ctrl->vm_ports[portid].tx_ring->name);
912 generate_ivshmem_cmdline(METADATA_NAME);
914 ctrl->nb_ports = nb_ports_available;
916 printf("Waiting for VM to initialize...\n");
918 /* wait for VM to initialize */
919 while (ctrl->state != STATE_FWD) {
920 if (ctrl->state == STATE_FAIL)
921 rte_exit(EXIT_FAILURE, "VM reported failure\n");
930 /* launch per-lcore init on every lcore */
931 rte_eal_mp_remote_launch(l2fwd_ivshmem_launch_one_lcore, NULL, CALL_MASTER);
932 RTE_LCORE_FOREACH_SLAVE(lcore_id) {
933 if (rte_eal_wait_lcore(lcore_id) < 0)
937 if (ctrl->state == STATE_FAIL)
938 rte_exit(EXIT_FAILURE, "VM reported failure\n");