1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation.
3 * Copyright 2013-2014 6WIND S.A.
13 #include <sys/queue.h>
14 #include <sys/types.h>
19 #include <rte_common.h>
20 #include <rte_byteorder.h>
21 #include <rte_debug.h>
23 #include <rte_memory.h>
24 #include <rte_memcpy.h>
25 #include <rte_memzone.h>
26 #include <rte_launch.h>
28 #include <rte_per_lcore.h>
29 #include <rte_lcore.h>
30 #include <rte_atomic.h>
31 #include <rte_branch_prediction.h>
32 #include <rte_mempool.h>
34 #include <rte_interrupts.h>
36 #include <rte_ether.h>
37 #include <rte_ethdev.h>
38 #include <rte_string_fns.h>
39 #include <rte_cycles.h>
41 #include <rte_errno.h>
42 #ifdef RTE_LIBRTE_IXGBE_PMD
43 #include <rte_pmd_ixgbe.h>
45 #ifdef RTE_LIBRTE_I40E_PMD
46 #include <rte_pmd_i40e.h>
48 #ifdef RTE_LIBRTE_BNXT_PMD
49 #include <rte_pmd_bnxt.h>
52 #include <cmdline_parse_etheraddr.h>
56 static char *flowtype_to_str(uint16_t flow_type);
59 enum tx_pkt_split split;
63 .split = TX_PKT_SPLIT_OFF,
67 .split = TX_PKT_SPLIT_ON,
71 .split = TX_PKT_SPLIT_RND,
76 const struct rss_type_info rss_type_table[] = {
77 { "ipv4", ETH_RSS_IPV4 },
78 { "ipv4-frag", ETH_RSS_FRAG_IPV4 },
79 { "ipv4-tcp", ETH_RSS_NONFRAG_IPV4_TCP },
80 { "ipv4-udp", ETH_RSS_NONFRAG_IPV4_UDP },
81 { "ipv4-sctp", ETH_RSS_NONFRAG_IPV4_SCTP },
82 { "ipv4-other", ETH_RSS_NONFRAG_IPV4_OTHER },
83 { "ipv6", ETH_RSS_IPV6 },
84 { "ipv6-frag", ETH_RSS_FRAG_IPV6 },
85 { "ipv6-tcp", ETH_RSS_NONFRAG_IPV6_TCP },
86 { "ipv6-udp", ETH_RSS_NONFRAG_IPV6_UDP },
87 { "ipv6-sctp", ETH_RSS_NONFRAG_IPV6_SCTP },
88 { "ipv6-other", ETH_RSS_NONFRAG_IPV6_OTHER },
89 { "l2-payload", ETH_RSS_L2_PAYLOAD },
90 { "ipv6-ex", ETH_RSS_IPV6_EX },
91 { "ipv6-tcp-ex", ETH_RSS_IPV6_TCP_EX },
92 { "ipv6-udp-ex", ETH_RSS_IPV6_UDP_EX },
93 { "port", ETH_RSS_PORT },
94 { "vxlan", ETH_RSS_VXLAN },
95 { "geneve", ETH_RSS_GENEVE },
96 { "nvgre", ETH_RSS_NVGRE },
98 { "udp", ETH_RSS_UDP },
99 { "tcp", ETH_RSS_TCP },
100 { "sctp", ETH_RSS_SCTP },
101 { "tunnel", ETH_RSS_TUNNEL },
106 print_ethaddr(const char *name, struct ether_addr *eth_addr)
108 char buf[ETHER_ADDR_FMT_SIZE];
109 ether_format_addr(buf, ETHER_ADDR_FMT_SIZE, eth_addr);
110 printf("%s%s", name, buf);
114 nic_stats_display(portid_t port_id)
116 static uint64_t prev_pkts_rx[RTE_MAX_ETHPORTS];
117 static uint64_t prev_pkts_tx[RTE_MAX_ETHPORTS];
118 static uint64_t prev_cycles[RTE_MAX_ETHPORTS];
119 uint64_t diff_pkts_rx, diff_pkts_tx, diff_cycles;
120 uint64_t mpps_rx, mpps_tx;
121 struct rte_eth_stats stats;
122 struct rte_port *port = &ports[port_id];
125 static const char *nic_stats_border = "########################";
127 if (port_id_is_invalid(port_id, ENABLED_WARN)) {
131 rte_eth_stats_get(port_id, &stats);
132 printf("\n %s NIC statistics for port %-2d %s\n",
133 nic_stats_border, port_id, nic_stats_border);
135 if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
136 printf(" RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes: "
138 stats.ipackets, stats.imissed, stats.ibytes);
139 printf(" RX-errors: %-"PRIu64"\n", stats.ierrors);
140 printf(" RX-nombuf: %-10"PRIu64"\n",
142 printf(" TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes: "
144 stats.opackets, stats.oerrors, stats.obytes);
147 printf(" RX-packets: %10"PRIu64" RX-errors: %10"PRIu64
148 " RX-bytes: %10"PRIu64"\n",
149 stats.ipackets, stats.ierrors, stats.ibytes);
150 printf(" RX-errors: %10"PRIu64"\n", stats.ierrors);
151 printf(" RX-nombuf: %10"PRIu64"\n",
153 printf(" TX-packets: %10"PRIu64" TX-errors: %10"PRIu64
154 " TX-bytes: %10"PRIu64"\n",
155 stats.opackets, stats.oerrors, stats.obytes);
158 if (port->rx_queue_stats_mapping_enabled) {
160 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
161 printf(" Stats reg %2d RX-packets: %10"PRIu64
162 " RX-errors: %10"PRIu64
163 " RX-bytes: %10"PRIu64"\n",
164 i, stats.q_ipackets[i], stats.q_errors[i], stats.q_ibytes[i]);
167 if (port->tx_queue_stats_mapping_enabled) {
169 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
170 printf(" Stats reg %2d TX-packets: %10"PRIu64
171 " TX-bytes: %10"PRIu64"\n",
172 i, stats.q_opackets[i], stats.q_obytes[i]);
176 diff_cycles = prev_cycles[port_id];
177 prev_cycles[port_id] = rte_rdtsc();
179 diff_cycles = prev_cycles[port_id] - diff_cycles;
181 diff_pkts_rx = (stats.ipackets > prev_pkts_rx[port_id]) ?
182 (stats.ipackets - prev_pkts_rx[port_id]) : 0;
183 diff_pkts_tx = (stats.opackets > prev_pkts_tx[port_id]) ?
184 (stats.opackets - prev_pkts_tx[port_id]) : 0;
185 prev_pkts_rx[port_id] = stats.ipackets;
186 prev_pkts_tx[port_id] = stats.opackets;
187 mpps_rx = diff_cycles > 0 ?
188 diff_pkts_rx * rte_get_tsc_hz() / diff_cycles : 0;
189 mpps_tx = diff_cycles > 0 ?
190 diff_pkts_tx * rte_get_tsc_hz() / diff_cycles : 0;
191 printf("\n Throughput (since last show)\n");
192 printf(" Rx-pps: %12"PRIu64"\n Tx-pps: %12"PRIu64"\n",
195 printf(" %s############################%s\n",
196 nic_stats_border, nic_stats_border);
200 nic_stats_clear(portid_t port_id)
202 if (port_id_is_invalid(port_id, ENABLED_WARN)) {
206 rte_eth_stats_reset(port_id);
207 printf("\n NIC statistics for port %d cleared\n", port_id);
211 nic_xstats_display(portid_t port_id)
213 struct rte_eth_xstat *xstats;
214 int cnt_xstats, idx_xstat;
215 struct rte_eth_xstat_name *xstats_names;
217 printf("###### NIC extended statistics for port %-2d\n", port_id);
218 if (!rte_eth_dev_is_valid_port(port_id)) {
219 printf("Error: Invalid port number %i\n", port_id);
224 cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
225 if (cnt_xstats < 0) {
226 printf("Error: Cannot get count of xstats\n");
230 /* Get id-name lookup table */
231 xstats_names = malloc(sizeof(struct rte_eth_xstat_name) * cnt_xstats);
232 if (xstats_names == NULL) {
233 printf("Cannot allocate memory for xstats lookup\n");
236 if (cnt_xstats != rte_eth_xstats_get_names(
237 port_id, xstats_names, cnt_xstats)) {
238 printf("Error: Cannot get xstats lookup\n");
243 /* Get stats themselves */
244 xstats = malloc(sizeof(struct rte_eth_xstat) * cnt_xstats);
245 if (xstats == NULL) {
246 printf("Cannot allocate memory for xstats\n");
250 if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
251 printf("Error: Unable to get xstats\n");
258 for (idx_xstat = 0; idx_xstat < cnt_xstats; idx_xstat++) {
259 if (xstats_hide_zero && !xstats[idx_xstat].value)
261 printf("%s: %"PRIu64"\n",
262 xstats_names[idx_xstat].name,
263 xstats[idx_xstat].value);
270 nic_xstats_clear(portid_t port_id)
272 rte_eth_xstats_reset(port_id);
276 nic_stats_mapping_display(portid_t port_id)
278 struct rte_port *port = &ports[port_id];
281 static const char *nic_stats_mapping_border = "########################";
283 if (port_id_is_invalid(port_id, ENABLED_WARN)) {
288 if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
289 printf("Port id %d - either does not support queue statistic mapping or"
290 " no queue statistic mapping set\n", port_id);
294 printf("\n %s NIC statistics mapping for port %-2d %s\n",
295 nic_stats_mapping_border, port_id, nic_stats_mapping_border);
297 if (port->rx_queue_stats_mapping_enabled) {
298 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
299 if (rx_queue_stats_mappings[i].port_id == port_id) {
300 printf(" RX-queue %2d mapped to Stats Reg %2d\n",
301 rx_queue_stats_mappings[i].queue_id,
302 rx_queue_stats_mappings[i].stats_counter_id);
309 if (port->tx_queue_stats_mapping_enabled) {
310 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
311 if (tx_queue_stats_mappings[i].port_id == port_id) {
312 printf(" TX-queue %2d mapped to Stats Reg %2d\n",
313 tx_queue_stats_mappings[i].queue_id,
314 tx_queue_stats_mappings[i].stats_counter_id);
319 printf(" %s####################################%s\n",
320 nic_stats_mapping_border, nic_stats_mapping_border);
324 rx_queue_infos_display(portid_t port_id, uint16_t queue_id)
326 struct rte_eth_rxq_info qinfo;
328 static const char *info_border = "*********************";
330 rc = rte_eth_rx_queue_info_get(port_id, queue_id, &qinfo);
332 printf("Failed to retrieve information for port: %u, "
333 "RX queue: %hu\nerror desc: %s(%d)\n",
334 port_id, queue_id, strerror(-rc), rc);
338 printf("\n%s Infos for port %-2u, RX queue %-2u %s",
339 info_border, port_id, queue_id, info_border);
341 printf("\nMempool: %s", (qinfo.mp == NULL) ? "NULL" : qinfo.mp->name);
342 printf("\nRX prefetch threshold: %hhu", qinfo.conf.rx_thresh.pthresh);
343 printf("\nRX host threshold: %hhu", qinfo.conf.rx_thresh.hthresh);
344 printf("\nRX writeback threshold: %hhu", qinfo.conf.rx_thresh.wthresh);
345 printf("\nRX free threshold: %hu", qinfo.conf.rx_free_thresh);
346 printf("\nRX drop packets: %s",
347 (qinfo.conf.rx_drop_en != 0) ? "on" : "off");
348 printf("\nRX deferred start: %s",
349 (qinfo.conf.rx_deferred_start != 0) ? "on" : "off");
350 printf("\nRX scattered packets: %s",
351 (qinfo.scattered_rx != 0) ? "on" : "off");
352 printf("\nNumber of RXDs: %hu", qinfo.nb_desc);
357 tx_queue_infos_display(portid_t port_id, uint16_t queue_id)
359 struct rte_eth_txq_info qinfo;
361 static const char *info_border = "*********************";
363 rc = rte_eth_tx_queue_info_get(port_id, queue_id, &qinfo);
365 printf("Failed to retrieve information for port: %u, "
366 "TX queue: %hu\nerror desc: %s(%d)\n",
367 port_id, queue_id, strerror(-rc), rc);
371 printf("\n%s Infos for port %-2u, TX queue %-2u %s",
372 info_border, port_id, queue_id, info_border);
374 printf("\nTX prefetch threshold: %hhu", qinfo.conf.tx_thresh.pthresh);
375 printf("\nTX host threshold: %hhu", qinfo.conf.tx_thresh.hthresh);
376 printf("\nTX writeback threshold: %hhu", qinfo.conf.tx_thresh.wthresh);
377 printf("\nTX RS threshold: %hu", qinfo.conf.tx_rs_thresh);
378 printf("\nTX free threshold: %hu", qinfo.conf.tx_free_thresh);
379 printf("\nTX deferred start: %s",
380 (qinfo.conf.tx_deferred_start != 0) ? "on" : "off");
381 printf("\nNumber of TXDs: %hu", qinfo.nb_desc);
386 port_infos_display(portid_t port_id)
388 struct rte_port *port;
389 struct ether_addr mac_addr;
390 struct rte_eth_link link;
391 struct rte_eth_dev_info dev_info;
393 struct rte_mempool * mp;
394 static const char *info_border = "*********************";
396 char name[RTE_ETH_NAME_MAX_LEN];
398 if (port_id_is_invalid(port_id, ENABLED_WARN)) {
402 port = &ports[port_id];
403 rte_eth_link_get_nowait(port_id, &link);
404 memset(&dev_info, 0, sizeof(dev_info));
405 rte_eth_dev_info_get(port_id, &dev_info);
406 printf("\n%s Infos for port %-2d %s\n",
407 info_border, port_id, info_border);
408 rte_eth_macaddr_get(port_id, &mac_addr);
409 print_ethaddr("MAC address: ", &mac_addr);
410 rte_eth_dev_get_name_by_port(port_id, name);
411 printf("\nDevice name: %s", name);
412 printf("\nDriver name: %s", dev_info.driver_name);
413 printf("\nConnect to socket: %u", port->socket_id);
415 if (port_numa[port_id] != NUMA_NO_CONFIG) {
416 mp = mbuf_pool_find(port_numa[port_id]);
418 printf("\nmemory allocation on the socket: %d",
421 printf("\nmemory allocation on the socket: %u",port->socket_id);
423 printf("\nLink status: %s\n", (link.link_status) ? ("up") : ("down"));
424 printf("Link speed: %u Mbps\n", (unsigned) link.link_speed);
425 printf("Link duplex: %s\n", (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
426 ("full-duplex") : ("half-duplex"));
428 if (!rte_eth_dev_get_mtu(port_id, &mtu))
429 printf("MTU: %u\n", mtu);
431 printf("Promiscuous mode: %s\n",
432 rte_eth_promiscuous_get(port_id) ? "enabled" : "disabled");
433 printf("Allmulticast mode: %s\n",
434 rte_eth_allmulticast_get(port_id) ? "enabled" : "disabled");
435 printf("Maximum number of MAC addresses: %u\n",
436 (unsigned int)(port->dev_info.max_mac_addrs));
437 printf("Maximum number of MAC addresses of hash filtering: %u\n",
438 (unsigned int)(port->dev_info.max_hash_mac_addrs));
440 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
441 if (vlan_offload >= 0){
442 printf("VLAN offload: \n");
443 if (vlan_offload & ETH_VLAN_STRIP_OFFLOAD)
444 printf(" strip on \n");
446 printf(" strip off \n");
448 if (vlan_offload & ETH_VLAN_FILTER_OFFLOAD)
449 printf(" filter on \n");
451 printf(" filter off \n");
453 if (vlan_offload & ETH_VLAN_EXTEND_OFFLOAD)
454 printf(" qinq(extend) on \n");
456 printf(" qinq(extend) off \n");
459 if (dev_info.hash_key_size > 0)
460 printf("Hash key size in bytes: %u\n", dev_info.hash_key_size);
461 if (dev_info.reta_size > 0)
462 printf("Redirection table size: %u\n", dev_info.reta_size);
463 if (!dev_info.flow_type_rss_offloads)
464 printf("No flow type is supported.\n");
469 printf("Supported flow types:\n");
470 for (i = RTE_ETH_FLOW_UNKNOWN + 1;
471 i < sizeof(dev_info.flow_type_rss_offloads) * CHAR_BIT; i++) {
472 if (!(dev_info.flow_type_rss_offloads & (1ULL << i)))
474 p = flowtype_to_str(i);
478 printf(" user defined %d\n", i);
482 printf("Minimum size of RX buffer: %u\n", dev_info.min_rx_bufsize);
483 printf("Maximum configurable length of RX packet: %u\n",
484 dev_info.max_rx_pktlen);
485 if (dev_info.max_vfs)
486 printf("Maximum number of VFs: %u\n", dev_info.max_vfs);
487 if (dev_info.max_vmdq_pools)
488 printf("Maximum number of VMDq pools: %u\n",
489 dev_info.max_vmdq_pools);
491 printf("Current number of RX queues: %u\n", dev_info.nb_rx_queues);
492 printf("Max possible RX queues: %u\n", dev_info.max_rx_queues);
493 printf("Max possible number of RXDs per queue: %hu\n",
494 dev_info.rx_desc_lim.nb_max);
495 printf("Min possible number of RXDs per queue: %hu\n",
496 dev_info.rx_desc_lim.nb_min);
497 printf("RXDs number alignment: %hu\n", dev_info.rx_desc_lim.nb_align);
499 printf("Current number of TX queues: %u\n", dev_info.nb_tx_queues);
500 printf("Max possible TX queues: %u\n", dev_info.max_tx_queues);
501 printf("Max possible number of TXDs per queue: %hu\n",
502 dev_info.tx_desc_lim.nb_max);
503 printf("Min possible number of TXDs per queue: %hu\n",
504 dev_info.tx_desc_lim.nb_min);
505 printf("TXDs number alignment: %hu\n", dev_info.tx_desc_lim.nb_align);
507 /* Show switch info only if valid switch domain and port id is set */
508 if (dev_info.switch_info.domain_id !=
509 RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
510 if (dev_info.switch_info.name)
511 printf("Switch name: %s\n", dev_info.switch_info.name);
513 printf("Switch domain Id: %u\n",
514 dev_info.switch_info.domain_id);
515 printf("Switch Port Id: %u\n",
516 dev_info.switch_info.port_id);
521 port_offload_cap_display(portid_t port_id)
523 struct rte_eth_dev_info dev_info;
524 static const char *info_border = "************";
526 if (port_id_is_invalid(port_id, ENABLED_WARN))
529 rte_eth_dev_info_get(port_id, &dev_info);
531 printf("\n%s Port %d supported offload features: %s\n",
532 info_border, port_id, info_border);
534 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_VLAN_STRIP) {
535 printf("VLAN stripped: ");
536 if (ports[port_id].dev_conf.rxmode.offloads &
537 DEV_RX_OFFLOAD_VLAN_STRIP)
543 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_QINQ_STRIP) {
544 printf("Double VLANs stripped: ");
545 if (ports[port_id].dev_conf.rxmode.offloads &
546 DEV_RX_OFFLOAD_VLAN_EXTEND)
552 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_IPV4_CKSUM) {
553 printf("RX IPv4 checksum: ");
554 if (ports[port_id].dev_conf.rxmode.offloads &
555 DEV_RX_OFFLOAD_IPV4_CKSUM)
561 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_UDP_CKSUM) {
562 printf("RX UDP checksum: ");
563 if (ports[port_id].dev_conf.rxmode.offloads &
564 DEV_RX_OFFLOAD_UDP_CKSUM)
570 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TCP_CKSUM) {
571 printf("RX TCP checksum: ");
572 if (ports[port_id].dev_conf.rxmode.offloads &
573 DEV_RX_OFFLOAD_TCP_CKSUM)
579 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM) {
580 printf("RX Outer IPv4 checksum: ");
581 if (ports[port_id].dev_conf.rxmode.offloads &
582 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM)
588 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TCP_LRO) {
589 printf("Large receive offload: ");
590 if (ports[port_id].dev_conf.rxmode.offloads &
591 DEV_RX_OFFLOAD_TCP_LRO)
597 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TIMESTAMP) {
598 printf("HW timestamp: ");
599 if (ports[port_id].dev_conf.rxmode.offloads &
600 DEV_RX_OFFLOAD_TIMESTAMP)
606 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_KEEP_CRC) {
607 printf("Rx Keep CRC: ");
608 if (ports[port_id].dev_conf.rxmode.offloads &
609 DEV_RX_OFFLOAD_KEEP_CRC)
615 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VLAN_INSERT) {
616 printf("VLAN insert: ");
617 if (ports[port_id].dev_conf.txmode.offloads &
618 DEV_TX_OFFLOAD_VLAN_INSERT)
624 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_QINQ_INSERT) {
625 printf("Double VLANs insert: ");
626 if (ports[port_id].dev_conf.txmode.offloads &
627 DEV_TX_OFFLOAD_QINQ_INSERT)
633 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) {
634 printf("TX IPv4 checksum: ");
635 if (ports[port_id].dev_conf.txmode.offloads &
636 DEV_TX_OFFLOAD_IPV4_CKSUM)
642 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) {
643 printf("TX UDP checksum: ");
644 if (ports[port_id].dev_conf.txmode.offloads &
645 DEV_TX_OFFLOAD_UDP_CKSUM)
651 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) {
652 printf("TX TCP checksum: ");
653 if (ports[port_id].dev_conf.txmode.offloads &
654 DEV_TX_OFFLOAD_TCP_CKSUM)
660 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) {
661 printf("TX SCTP checksum: ");
662 if (ports[port_id].dev_conf.txmode.offloads &
663 DEV_TX_OFFLOAD_SCTP_CKSUM)
669 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) {
670 printf("TX Outer IPv4 checksum: ");
671 if (ports[port_id].dev_conf.txmode.offloads &
672 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)
678 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) {
679 printf("TX TCP segmentation: ");
680 if (ports[port_id].dev_conf.txmode.offloads &
681 DEV_TX_OFFLOAD_TCP_TSO)
687 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TSO) {
688 printf("TX UDP segmentation: ");
689 if (ports[port_id].dev_conf.txmode.offloads &
690 DEV_TX_OFFLOAD_UDP_TSO)
696 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO) {
697 printf("TSO for VXLAN tunnel packet: ");
698 if (ports[port_id].dev_conf.txmode.offloads &
699 DEV_TX_OFFLOAD_VXLAN_TNL_TSO)
705 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO) {
706 printf("TSO for GRE tunnel packet: ");
707 if (ports[port_id].dev_conf.txmode.offloads &
708 DEV_TX_OFFLOAD_GRE_TNL_TSO)
714 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO) {
715 printf("TSO for IPIP tunnel packet: ");
716 if (ports[port_id].dev_conf.txmode.offloads &
717 DEV_TX_OFFLOAD_IPIP_TNL_TSO)
723 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO) {
724 printf("TSO for GENEVE tunnel packet: ");
725 if (ports[port_id].dev_conf.txmode.offloads &
726 DEV_TX_OFFLOAD_GENEVE_TNL_TSO)
732 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IP_TNL_TSO) {
733 printf("IP tunnel TSO: ");
734 if (ports[port_id].dev_conf.txmode.offloads &
735 DEV_TX_OFFLOAD_IP_TNL_TSO)
741 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TNL_TSO) {
742 printf("UDP tunnel TSO: ");
743 if (ports[port_id].dev_conf.txmode.offloads &
744 DEV_TX_OFFLOAD_UDP_TNL_TSO)
752 port_id_is_invalid(portid_t port_id, enum print_warning warning)
756 if (port_id == (portid_t)RTE_PORT_ALL)
759 RTE_ETH_FOREACH_DEV(pid)
763 if (warning == ENABLED_WARN)
764 printf("Invalid port %d\n", port_id);
769 void print_valid_ports(void)
773 printf("The valid ports array is [");
774 RTE_ETH_FOREACH_DEV(pid) {
781 vlan_id_is_invalid(uint16_t vlan_id)
785 printf("Invalid vlan_id %d (must be < 4096)\n", vlan_id);
790 port_reg_off_is_invalid(portid_t port_id, uint32_t reg_off)
792 const struct rte_pci_device *pci_dev;
793 const struct rte_bus *bus;
797 printf("Port register offset 0x%X not aligned on a 4-byte "
803 if (!ports[port_id].dev_info.device) {
804 printf("Invalid device\n");
808 bus = rte_bus_find_by_device(ports[port_id].dev_info.device);
809 if (bus && !strcmp(bus->name, "pci")) {
810 pci_dev = RTE_DEV_TO_PCI(ports[port_id].dev_info.device);
812 printf("Not a PCI device\n");
816 pci_len = pci_dev->mem_resource[0].len;
817 if (reg_off >= pci_len) {
818 printf("Port %d: register offset %u (0x%X) out of port PCI "
819 "resource (length=%"PRIu64")\n",
820 port_id, (unsigned)reg_off, (unsigned)reg_off, pci_len);
827 reg_bit_pos_is_invalid(uint8_t bit_pos)
831 printf("Invalid bit position %d (must be <= 31)\n", bit_pos);
835 #define display_port_and_reg_off(port_id, reg_off) \
836 printf("port %d PCI register at offset 0x%X: ", (port_id), (reg_off))
839 display_port_reg_value(portid_t port_id, uint32_t reg_off, uint32_t reg_v)
841 display_port_and_reg_off(port_id, (unsigned)reg_off);
842 printf("0x%08X (%u)\n", (unsigned)reg_v, (unsigned)reg_v);
846 port_reg_bit_display(portid_t port_id, uint32_t reg_off, uint8_t bit_x)
851 if (port_id_is_invalid(port_id, ENABLED_WARN))
853 if (port_reg_off_is_invalid(port_id, reg_off))
855 if (reg_bit_pos_is_invalid(bit_x))
857 reg_v = port_id_pci_reg_read(port_id, reg_off);
858 display_port_and_reg_off(port_id, (unsigned)reg_off);
859 printf("bit %d=%d\n", bit_x, (int) ((reg_v & (1 << bit_x)) >> bit_x));
863 port_reg_bit_field_display(portid_t port_id, uint32_t reg_off,
864 uint8_t bit1_pos, uint8_t bit2_pos)
870 if (port_id_is_invalid(port_id, ENABLED_WARN))
872 if (port_reg_off_is_invalid(port_id, reg_off))
874 if (reg_bit_pos_is_invalid(bit1_pos))
876 if (reg_bit_pos_is_invalid(bit2_pos))
878 if (bit1_pos > bit2_pos)
879 l_bit = bit2_pos, h_bit = bit1_pos;
881 l_bit = bit1_pos, h_bit = bit2_pos;
883 reg_v = port_id_pci_reg_read(port_id, reg_off);
886 reg_v &= ((1 << (h_bit - l_bit + 1)) - 1);
887 display_port_and_reg_off(port_id, (unsigned)reg_off);
888 printf("bits[%d, %d]=0x%0*X (%u)\n", l_bit, h_bit,
889 ((h_bit - l_bit) / 4) + 1, (unsigned)reg_v, (unsigned)reg_v);
893 port_reg_display(portid_t port_id, uint32_t reg_off)
897 if (port_id_is_invalid(port_id, ENABLED_WARN))
899 if (port_reg_off_is_invalid(port_id, reg_off))
901 reg_v = port_id_pci_reg_read(port_id, reg_off);
902 display_port_reg_value(port_id, reg_off, reg_v);
906 port_reg_bit_set(portid_t port_id, uint32_t reg_off, uint8_t bit_pos,
911 if (port_id_is_invalid(port_id, ENABLED_WARN))
913 if (port_reg_off_is_invalid(port_id, reg_off))
915 if (reg_bit_pos_is_invalid(bit_pos))
918 printf("Invalid bit value %d (must be 0 or 1)\n", (int) bit_v);
921 reg_v = port_id_pci_reg_read(port_id, reg_off);
923 reg_v &= ~(1 << bit_pos);
925 reg_v |= (1 << bit_pos);
926 port_id_pci_reg_write(port_id, reg_off, reg_v);
927 display_port_reg_value(port_id, reg_off, reg_v);
931 port_reg_bit_field_set(portid_t port_id, uint32_t reg_off,
932 uint8_t bit1_pos, uint8_t bit2_pos, uint32_t value)
939 if (port_id_is_invalid(port_id, ENABLED_WARN))
941 if (port_reg_off_is_invalid(port_id, reg_off))
943 if (reg_bit_pos_is_invalid(bit1_pos))
945 if (reg_bit_pos_is_invalid(bit2_pos))
947 if (bit1_pos > bit2_pos)
948 l_bit = bit2_pos, h_bit = bit1_pos;
950 l_bit = bit1_pos, h_bit = bit2_pos;
952 if ((h_bit - l_bit) < 31)
953 max_v = (1 << (h_bit - l_bit + 1)) - 1;
958 printf("Invalid value %u (0x%x) must be < %u (0x%x)\n",
959 (unsigned)value, (unsigned)value,
960 (unsigned)max_v, (unsigned)max_v);
963 reg_v = port_id_pci_reg_read(port_id, reg_off);
964 reg_v &= ~(max_v << l_bit); /* Keep unchanged bits */
965 reg_v |= (value << l_bit); /* Set changed bits */
966 port_id_pci_reg_write(port_id, reg_off, reg_v);
967 display_port_reg_value(port_id, reg_off, reg_v);
971 port_reg_set(portid_t port_id, uint32_t reg_off, uint32_t reg_v)
973 if (port_id_is_invalid(port_id, ENABLED_WARN))
975 if (port_reg_off_is_invalid(port_id, reg_off))
977 port_id_pci_reg_write(port_id, reg_off, reg_v);
978 display_port_reg_value(port_id, reg_off, reg_v);
982 port_mtu_set(portid_t port_id, uint16_t mtu)
986 if (port_id_is_invalid(port_id, ENABLED_WARN))
988 diag = rte_eth_dev_set_mtu(port_id, mtu);
991 printf("Set MTU failed. diag=%d\n", diag);
994 /* Generic flow management functions. */
996 /** Generate flow_item[] entry. */
997 #define MK_FLOW_ITEM(t, s) \
998 [RTE_FLOW_ITEM_TYPE_ ## t] = { \
1003 /** Information about known flow pattern items. */
1004 static const struct {
1008 MK_FLOW_ITEM(END, 0),
1009 MK_FLOW_ITEM(VOID, 0),
1010 MK_FLOW_ITEM(INVERT, 0),
1011 MK_FLOW_ITEM(ANY, sizeof(struct rte_flow_item_any)),
1012 MK_FLOW_ITEM(PF, 0),
1013 MK_FLOW_ITEM(VF, sizeof(struct rte_flow_item_vf)),
1014 MK_FLOW_ITEM(PHY_PORT, sizeof(struct rte_flow_item_phy_port)),
1015 MK_FLOW_ITEM(PORT_ID, sizeof(struct rte_flow_item_port_id)),
1016 MK_FLOW_ITEM(RAW, sizeof(struct rte_flow_item_raw)),
1017 MK_FLOW_ITEM(ETH, sizeof(struct rte_flow_item_eth)),
1018 MK_FLOW_ITEM(VLAN, sizeof(struct rte_flow_item_vlan)),
1019 MK_FLOW_ITEM(IPV4, sizeof(struct rte_flow_item_ipv4)),
1020 MK_FLOW_ITEM(IPV6, sizeof(struct rte_flow_item_ipv6)),
1021 MK_FLOW_ITEM(ICMP, sizeof(struct rte_flow_item_icmp)),
1022 MK_FLOW_ITEM(UDP, sizeof(struct rte_flow_item_udp)),
1023 MK_FLOW_ITEM(TCP, sizeof(struct rte_flow_item_tcp)),
1024 MK_FLOW_ITEM(SCTP, sizeof(struct rte_flow_item_sctp)),
1025 MK_FLOW_ITEM(VXLAN, sizeof(struct rte_flow_item_vxlan)),
1026 MK_FLOW_ITEM(E_TAG, sizeof(struct rte_flow_item_e_tag)),
1027 MK_FLOW_ITEM(NVGRE, sizeof(struct rte_flow_item_nvgre)),
1028 MK_FLOW_ITEM(MPLS, sizeof(struct rte_flow_item_mpls)),
1029 MK_FLOW_ITEM(GRE, sizeof(struct rte_flow_item_gre)),
1030 MK_FLOW_ITEM(FUZZY, sizeof(struct rte_flow_item_fuzzy)),
1031 MK_FLOW_ITEM(GTP, sizeof(struct rte_flow_item_gtp)),
1032 MK_FLOW_ITEM(GTPC, sizeof(struct rte_flow_item_gtp)),
1033 MK_FLOW_ITEM(GTPU, sizeof(struct rte_flow_item_gtp)),
1034 MK_FLOW_ITEM(GENEVE, sizeof(struct rte_flow_item_geneve)),
1035 MK_FLOW_ITEM(VXLAN_GPE, sizeof(struct rte_flow_item_vxlan_gpe)),
1036 MK_FLOW_ITEM(ARP_ETH_IPV4, sizeof(struct rte_flow_item_arp_eth_ipv4)),
1037 MK_FLOW_ITEM(IPV6_EXT, sizeof(struct rte_flow_item_ipv6_ext)),
1038 MK_FLOW_ITEM(ICMP6, sizeof(struct rte_flow_item_icmp6)),
1039 MK_FLOW_ITEM(ICMP6_ND_NS, sizeof(struct rte_flow_item_icmp6_nd_ns)),
1040 MK_FLOW_ITEM(ICMP6_ND_NA, sizeof(struct rte_flow_item_icmp6_nd_na)),
1041 MK_FLOW_ITEM(ICMP6_ND_OPT, sizeof(struct rte_flow_item_icmp6_nd_opt)),
1042 MK_FLOW_ITEM(ICMP6_ND_OPT_SLA_ETH,
1043 sizeof(struct rte_flow_item_icmp6_nd_opt_sla_eth)),
1044 MK_FLOW_ITEM(ICMP6_ND_OPT_TLA_ETH,
1045 sizeof(struct rte_flow_item_icmp6_nd_opt_tla_eth)),
1048 /** Pattern item specification types. */
1049 enum item_spec_type {
1055 /** Compute storage space needed by item specification and copy it. */
1057 flow_item_spec_copy(void *buf, const struct rte_flow_item *item,
1058 enum item_spec_type type)
1062 type == ITEM_SPEC ? item->spec :
1063 type == ITEM_LAST ? item->last :
1064 type == ITEM_MASK ? item->mask :
1067 if (!item->spec || !data)
1069 switch (item->type) {
1071 const struct rte_flow_item_raw *raw;
1074 const struct rte_flow_item_raw *raw;
1077 const struct rte_flow_item_raw *raw;
1080 const struct rte_flow_item_raw *raw;
1083 struct rte_flow_item_raw *raw;
1087 case RTE_FLOW_ITEM_TYPE_RAW:
1088 spec.raw = item->spec;
1089 last.raw = item->last ? item->last : item->spec;
1090 mask.raw = item->mask ? item->mask : &rte_flow_item_raw_mask;
1093 off = RTE_ALIGN_CEIL(sizeof(struct rte_flow_item_raw),
1094 sizeof(*src.raw->pattern));
1095 if (type == ITEM_SPEC ||
1096 (type == ITEM_MASK &&
1097 ((spec.raw->length & mask.raw->length) >=
1098 (last.raw->length & mask.raw->length))))
1099 size = spec.raw->length & mask.raw->length;
1101 size = last.raw->length & mask.raw->length;
1102 size = off + size * sizeof(*src.raw->pattern);
1104 memcpy(dst.raw, src.raw, sizeof(*src.raw));
1105 dst.raw->pattern = memcpy((uint8_t *)dst.raw + off,
1111 size = flow_item[item->type].size;
1113 memcpy(buf, data, size);
1117 return RTE_ALIGN_CEIL(size, sizeof(double));
1120 /** Generate flow_action[] entry. */
1121 #define MK_FLOW_ACTION(t, s) \
1122 [RTE_FLOW_ACTION_TYPE_ ## t] = { \
1127 /** Information about known flow actions. */
1128 static const struct {
1132 MK_FLOW_ACTION(END, 0),
1133 MK_FLOW_ACTION(VOID, 0),
1134 MK_FLOW_ACTION(PASSTHRU, 0),
1135 MK_FLOW_ACTION(MARK, sizeof(struct rte_flow_action_mark)),
1136 MK_FLOW_ACTION(FLAG, 0),
1137 MK_FLOW_ACTION(QUEUE, sizeof(struct rte_flow_action_queue)),
1138 MK_FLOW_ACTION(DROP, 0),
1139 MK_FLOW_ACTION(COUNT, sizeof(struct rte_flow_action_count)),
1140 MK_FLOW_ACTION(RSS, sizeof(struct rte_flow_action_rss)),
1141 MK_FLOW_ACTION(PF, 0),
1142 MK_FLOW_ACTION(VF, sizeof(struct rte_flow_action_vf)),
1143 MK_FLOW_ACTION(PHY_PORT, sizeof(struct rte_flow_action_phy_port)),
1144 MK_FLOW_ACTION(PORT_ID, sizeof(struct rte_flow_action_port_id)),
1145 MK_FLOW_ACTION(METER, sizeof(struct rte_flow_action_meter)),
1146 MK_FLOW_ACTION(OF_SET_MPLS_TTL,
1147 sizeof(struct rte_flow_action_of_set_mpls_ttl)),
1148 MK_FLOW_ACTION(OF_DEC_MPLS_TTL, 0),
1149 MK_FLOW_ACTION(OF_SET_NW_TTL,
1150 sizeof(struct rte_flow_action_of_set_nw_ttl)),
1151 MK_FLOW_ACTION(OF_DEC_NW_TTL, 0),
1152 MK_FLOW_ACTION(OF_COPY_TTL_OUT, 0),
1153 MK_FLOW_ACTION(OF_COPY_TTL_IN, 0),
1154 MK_FLOW_ACTION(OF_POP_VLAN, 0),
1155 MK_FLOW_ACTION(OF_PUSH_VLAN,
1156 sizeof(struct rte_flow_action_of_push_vlan)),
1157 MK_FLOW_ACTION(OF_SET_VLAN_VID,
1158 sizeof(struct rte_flow_action_of_set_vlan_vid)),
1159 MK_FLOW_ACTION(OF_SET_VLAN_PCP,
1160 sizeof(struct rte_flow_action_of_set_vlan_pcp)),
1161 MK_FLOW_ACTION(OF_POP_MPLS,
1162 sizeof(struct rte_flow_action_of_pop_mpls)),
1163 MK_FLOW_ACTION(OF_PUSH_MPLS,
1164 sizeof(struct rte_flow_action_of_push_mpls)),
1167 /** Compute storage space needed by action configuration and copy it. */
1169 flow_action_conf_copy(void *buf, const struct rte_flow_action *action)
1175 switch (action->type) {
1177 const struct rte_flow_action_rss *rss;
1180 struct rte_flow_action_rss *rss;
1184 case RTE_FLOW_ACTION_TYPE_RSS:
1185 src.rss = action->conf;
1189 *dst.rss = (struct rte_flow_action_rss){
1190 .func = src.rss->func,
1191 .level = src.rss->level,
1192 .types = src.rss->types,
1193 .key_len = src.rss->key_len,
1194 .queue_num = src.rss->queue_num,
1196 off += sizeof(*src.rss);
1197 if (src.rss->key_len) {
1198 off = RTE_ALIGN_CEIL(off, sizeof(double));
1199 size = sizeof(*src.rss->key) * src.rss->key_len;
1201 dst.rss->key = memcpy
1202 ((void *)((uintptr_t)dst.rss + off),
1203 src.rss->key, size);
1206 if (src.rss->queue_num) {
1207 off = RTE_ALIGN_CEIL(off, sizeof(double));
1208 size = sizeof(*src.rss->queue) * src.rss->queue_num;
1210 dst.rss->queue = memcpy
1211 ((void *)((uintptr_t)dst.rss + off),
1212 src.rss->queue, size);
1218 size = flow_action[action->type].size;
1220 memcpy(buf, action->conf, size);
1224 return RTE_ALIGN_CEIL(size, sizeof(double));
1227 /** Generate a port_flow entry from attributes/pattern/actions. */
1228 static struct port_flow *
1229 port_flow_new(const struct rte_flow_attr *attr,
1230 const struct rte_flow_item *pattern,
1231 const struct rte_flow_action *actions)
1233 const struct rte_flow_item *item;
1234 const struct rte_flow_action *action;
1235 struct port_flow *pf = NULL;
1244 pf->pattern = (void *)&pf->data[off1];
1246 struct rte_flow_item *dst = NULL;
1248 if ((unsigned int)item->type >= RTE_DIM(flow_item) ||
1249 !flow_item[item->type].name)
1252 dst = memcpy(pf->data + off1, item, sizeof(*item));
1253 off1 += sizeof(*item);
1256 dst->spec = pf->data + off2;
1257 off2 += flow_item_spec_copy
1258 (pf ? pf->data + off2 : NULL, item, ITEM_SPEC);
1262 dst->last = pf->data + off2;
1263 off2 += flow_item_spec_copy
1264 (pf ? pf->data + off2 : NULL, item, ITEM_LAST);
1268 dst->mask = pf->data + off2;
1269 off2 += flow_item_spec_copy
1270 (pf ? pf->data + off2 : NULL, item, ITEM_MASK);
1272 off2 = RTE_ALIGN_CEIL(off2, sizeof(double));
1273 } while ((item++)->type != RTE_FLOW_ITEM_TYPE_END);
1274 off1 = RTE_ALIGN_CEIL(off1, sizeof(double));
1277 pf->actions = (void *)&pf->data[off1];
1279 struct rte_flow_action *dst = NULL;
1281 if ((unsigned int)action->type >= RTE_DIM(flow_action) ||
1282 !flow_action[action->type].name)
1285 dst = memcpy(pf->data + off1, action, sizeof(*action));
1286 off1 += sizeof(*action);
1289 dst->conf = pf->data + off2;
1290 off2 += flow_action_conf_copy
1291 (pf ? pf->data + off2 : NULL, action);
1293 off2 = RTE_ALIGN_CEIL(off2, sizeof(double));
1294 } while ((action++)->type != RTE_FLOW_ACTION_TYPE_END);
1297 off1 = RTE_ALIGN_CEIL(off1, sizeof(double));
1298 tmp = RTE_ALIGN_CEIL(offsetof(struct port_flow, data), sizeof(double));
1299 pf = calloc(1, tmp + off1 + off2);
1303 *pf = (const struct port_flow){
1304 .size = tmp + off1 + off2,
1307 tmp -= offsetof(struct port_flow, data);
1317 /** Print a message out of a flow error. */
1319 port_flow_complain(struct rte_flow_error *error)
1321 static const char *const errstrlist[] = {
1322 [RTE_FLOW_ERROR_TYPE_NONE] = "no error",
1323 [RTE_FLOW_ERROR_TYPE_UNSPECIFIED] = "cause unspecified",
1324 [RTE_FLOW_ERROR_TYPE_HANDLE] = "flow rule (handle)",
1325 [RTE_FLOW_ERROR_TYPE_ATTR_GROUP] = "group field",
1326 [RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY] = "priority field",
1327 [RTE_FLOW_ERROR_TYPE_ATTR_INGRESS] = "ingress field",
1328 [RTE_FLOW_ERROR_TYPE_ATTR_EGRESS] = "egress field",
1329 [RTE_FLOW_ERROR_TYPE_ATTR_TRANSFER] = "transfer field",
1330 [RTE_FLOW_ERROR_TYPE_ATTR] = "attributes structure",
1331 [RTE_FLOW_ERROR_TYPE_ITEM_NUM] = "pattern length",
1332 [RTE_FLOW_ERROR_TYPE_ITEM_SPEC] = "item specification",
1333 [RTE_FLOW_ERROR_TYPE_ITEM_LAST] = "item specification range",
1334 [RTE_FLOW_ERROR_TYPE_ITEM_MASK] = "item specification mask",
1335 [RTE_FLOW_ERROR_TYPE_ITEM] = "specific pattern item",
1336 [RTE_FLOW_ERROR_TYPE_ACTION_NUM] = "number of actions",
1337 [RTE_FLOW_ERROR_TYPE_ACTION_CONF] = "action configuration",
1338 [RTE_FLOW_ERROR_TYPE_ACTION] = "specific action",
1342 int err = rte_errno;
1344 if ((unsigned int)error->type >= RTE_DIM(errstrlist) ||
1345 !errstrlist[error->type])
1346 errstr = "unknown type";
1348 errstr = errstrlist[error->type];
1349 printf("Caught error type %d (%s): %s%s\n",
1350 error->type, errstr,
1351 error->cause ? (snprintf(buf, sizeof(buf), "cause: %p, ",
1352 error->cause), buf) : "",
1353 error->message ? error->message : "(no stated reason)");
1357 /** Validate flow rule. */
1359 port_flow_validate(portid_t port_id,
1360 const struct rte_flow_attr *attr,
1361 const struct rte_flow_item *pattern,
1362 const struct rte_flow_action *actions)
1364 struct rte_flow_error error;
1366 /* Poisoning to make sure PMDs update it in case of error. */
1367 memset(&error, 0x11, sizeof(error));
1368 if (rte_flow_validate(port_id, attr, pattern, actions, &error))
1369 return port_flow_complain(&error);
1370 printf("Flow rule validated\n");
1374 /** Create flow rule. */
1376 port_flow_create(portid_t port_id,
1377 const struct rte_flow_attr *attr,
1378 const struct rte_flow_item *pattern,
1379 const struct rte_flow_action *actions)
1381 struct rte_flow *flow;
1382 struct rte_port *port;
1383 struct port_flow *pf;
1385 struct rte_flow_error error;
1387 /* Poisoning to make sure PMDs update it in case of error. */
1388 memset(&error, 0x22, sizeof(error));
1389 flow = rte_flow_create(port_id, attr, pattern, actions, &error);
1391 return port_flow_complain(&error);
1392 port = &ports[port_id];
1393 if (port->flow_list) {
1394 if (port->flow_list->id == UINT32_MAX) {
1395 printf("Highest rule ID is already assigned, delete"
1397 rte_flow_destroy(port_id, flow, NULL);
1400 id = port->flow_list->id + 1;
1403 pf = port_flow_new(attr, pattern, actions);
1405 int err = rte_errno;
1407 printf("Cannot allocate flow: %s\n", rte_strerror(err));
1408 rte_flow_destroy(port_id, flow, NULL);
1411 pf->next = port->flow_list;
1414 port->flow_list = pf;
1415 printf("Flow rule #%u created\n", pf->id);
1419 /** Destroy a number of flow rules. */
1421 port_flow_destroy(portid_t port_id, uint32_t n, const uint32_t *rule)
1423 struct rte_port *port;
1424 struct port_flow **tmp;
1428 if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1429 port_id == (portid_t)RTE_PORT_ALL)
1431 port = &ports[port_id];
1432 tmp = &port->flow_list;
1436 for (i = 0; i != n; ++i) {
1437 struct rte_flow_error error;
1438 struct port_flow *pf = *tmp;
1440 if (rule[i] != pf->id)
1443 * Poisoning to make sure PMDs update it in case
1446 memset(&error, 0x33, sizeof(error));
1447 if (rte_flow_destroy(port_id, pf->flow, &error)) {
1448 ret = port_flow_complain(&error);
1451 printf("Flow rule #%u destroyed\n", pf->id);
1457 tmp = &(*tmp)->next;
1463 /** Remove all flow rules. */
1465 port_flow_flush(portid_t port_id)
1467 struct rte_flow_error error;
1468 struct rte_port *port;
1471 /* Poisoning to make sure PMDs update it in case of error. */
1472 memset(&error, 0x44, sizeof(error));
1473 if (rte_flow_flush(port_id, &error)) {
1474 ret = port_flow_complain(&error);
1475 if (port_id_is_invalid(port_id, DISABLED_WARN) ||
1476 port_id == (portid_t)RTE_PORT_ALL)
1479 port = &ports[port_id];
1480 while (port->flow_list) {
1481 struct port_flow *pf = port->flow_list->next;
1483 free(port->flow_list);
1484 port->flow_list = pf;
1489 /** Query a flow rule. */
1491 port_flow_query(portid_t port_id, uint32_t rule,
1492 const struct rte_flow_action *action)
1494 struct rte_flow_error error;
1495 struct rte_port *port;
1496 struct port_flow *pf;
1499 struct rte_flow_query_count count;
1502 if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1503 port_id == (portid_t)RTE_PORT_ALL)
1505 port = &ports[port_id];
1506 for (pf = port->flow_list; pf; pf = pf->next)
1510 printf("Flow rule #%u not found\n", rule);
1513 if ((unsigned int)action->type >= RTE_DIM(flow_action) ||
1514 !flow_action[action->type].name)
1517 name = flow_action[action->type].name;
1518 switch (action->type) {
1519 case RTE_FLOW_ACTION_TYPE_COUNT:
1522 printf("Cannot query action type %d (%s)\n",
1523 action->type, name);
1526 /* Poisoning to make sure PMDs update it in case of error. */
1527 memset(&error, 0x55, sizeof(error));
1528 memset(&query, 0, sizeof(query));
1529 if (rte_flow_query(port_id, pf->flow, action, &query, &error))
1530 return port_flow_complain(&error);
1531 switch (action->type) {
1532 case RTE_FLOW_ACTION_TYPE_COUNT:
1536 " hits: %" PRIu64 "\n"
1537 " bytes: %" PRIu64 "\n",
1539 query.count.hits_set,
1540 query.count.bytes_set,
1545 printf("Cannot display result for action type %d (%s)\n",
1546 action->type, name);
1552 /** List flow rules. */
1554 port_flow_list(portid_t port_id, uint32_t n, const uint32_t group[n])
1556 struct rte_port *port;
1557 struct port_flow *pf;
1558 struct port_flow *list = NULL;
1561 if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1562 port_id == (portid_t)RTE_PORT_ALL)
1564 port = &ports[port_id];
1565 if (!port->flow_list)
1567 /* Sort flows by group, priority and ID. */
1568 for (pf = port->flow_list; pf != NULL; pf = pf->next) {
1569 struct port_flow **tmp;
1572 /* Filter out unwanted groups. */
1573 for (i = 0; i != n; ++i)
1574 if (pf->attr.group == group[i])
1581 (pf->attr.group > (*tmp)->attr.group ||
1582 (pf->attr.group == (*tmp)->attr.group &&
1583 pf->attr.priority > (*tmp)->attr.priority) ||
1584 (pf->attr.group == (*tmp)->attr.group &&
1585 pf->attr.priority == (*tmp)->attr.priority &&
1586 pf->id > (*tmp)->id)))
1591 printf("ID\tGroup\tPrio\tAttr\tRule\n");
1592 for (pf = list; pf != NULL; pf = pf->tmp) {
1593 const struct rte_flow_item *item = pf->pattern;
1594 const struct rte_flow_action *action = pf->actions;
1596 printf("%" PRIu32 "\t%" PRIu32 "\t%" PRIu32 "\t%c%c%c\t",
1600 pf->attr.ingress ? 'i' : '-',
1601 pf->attr.egress ? 'e' : '-',
1602 pf->attr.transfer ? 't' : '-');
1603 while (item->type != RTE_FLOW_ITEM_TYPE_END) {
1604 if (item->type != RTE_FLOW_ITEM_TYPE_VOID)
1605 printf("%s ", flow_item[item->type].name);
1609 while (action->type != RTE_FLOW_ACTION_TYPE_END) {
1610 if (action->type != RTE_FLOW_ACTION_TYPE_VOID)
1611 printf(" %s", flow_action[action->type].name);
1618 /** Restrict ingress traffic to the defined flow rules. */
1620 port_flow_isolate(portid_t port_id, int set)
1622 struct rte_flow_error error;
1624 /* Poisoning to make sure PMDs update it in case of error. */
1625 memset(&error, 0x66, sizeof(error));
1626 if (rte_flow_isolate(port_id, set, &error))
1627 return port_flow_complain(&error);
1628 printf("Ingress traffic on port %u is %s to the defined flow rules\n",
1630 set ? "now restricted" : "not restricted anymore");
1635 * RX/TX ring descriptors display functions.
1638 rx_queue_id_is_invalid(queueid_t rxq_id)
1640 if (rxq_id < nb_rxq)
1642 printf("Invalid RX queue %d (must be < nb_rxq=%d)\n", rxq_id, nb_rxq);
1647 tx_queue_id_is_invalid(queueid_t txq_id)
1649 if (txq_id < nb_txq)
1651 printf("Invalid TX queue %d (must be < nb_rxq=%d)\n", txq_id, nb_txq);
1656 rx_desc_id_is_invalid(uint16_t rxdesc_id)
1658 if (rxdesc_id < nb_rxd)
1660 printf("Invalid RX descriptor %d (must be < nb_rxd=%d)\n",
1666 tx_desc_id_is_invalid(uint16_t txdesc_id)
1668 if (txdesc_id < nb_txd)
1670 printf("Invalid TX descriptor %d (must be < nb_txd=%d)\n",
1675 static const struct rte_memzone *
1676 ring_dma_zone_lookup(const char *ring_name, portid_t port_id, uint16_t q_id)
1678 char mz_name[RTE_MEMZONE_NAMESIZE];
1679 const struct rte_memzone *mz;
1681 snprintf(mz_name, sizeof(mz_name), "%s_%s_%d_%d",
1682 ports[port_id].dev_info.driver_name, ring_name, port_id, q_id);
1683 mz = rte_memzone_lookup(mz_name);
1685 printf("%s ring memory zoneof (port %d, queue %d) not"
1686 "found (zone name = %s\n",
1687 ring_name, port_id, q_id, mz_name);
1691 union igb_ring_dword {
1694 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
1704 struct igb_ring_desc_32_bytes {
1705 union igb_ring_dword lo_dword;
1706 union igb_ring_dword hi_dword;
1707 union igb_ring_dword resv1;
1708 union igb_ring_dword resv2;
1711 struct igb_ring_desc_16_bytes {
1712 union igb_ring_dword lo_dword;
1713 union igb_ring_dword hi_dword;
1717 ring_rxd_display_dword(union igb_ring_dword dword)
1719 printf(" 0x%08X - 0x%08X\n", (unsigned)dword.words.lo,
1720 (unsigned)dword.words.hi);
1724 ring_rx_descriptor_display(const struct rte_memzone *ring_mz,
1725 #ifndef RTE_LIBRTE_I40E_16BYTE_RX_DESC
1728 __rte_unused portid_t port_id,
1732 struct igb_ring_desc_16_bytes *ring =
1733 (struct igb_ring_desc_16_bytes *)ring_mz->addr;
1734 #ifndef RTE_LIBRTE_I40E_16BYTE_RX_DESC
1735 struct rte_eth_dev_info dev_info;
1737 memset(&dev_info, 0, sizeof(dev_info));
1738 rte_eth_dev_info_get(port_id, &dev_info);
1739 if (strstr(dev_info.driver_name, "i40e") != NULL) {
1740 /* 32 bytes RX descriptor, i40e only */
1741 struct igb_ring_desc_32_bytes *ring =
1742 (struct igb_ring_desc_32_bytes *)ring_mz->addr;
1743 ring[desc_id].lo_dword.dword =
1744 rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
1745 ring_rxd_display_dword(ring[desc_id].lo_dword);
1746 ring[desc_id].hi_dword.dword =
1747 rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
1748 ring_rxd_display_dword(ring[desc_id].hi_dword);
1749 ring[desc_id].resv1.dword =
1750 rte_le_to_cpu_64(ring[desc_id].resv1.dword);
1751 ring_rxd_display_dword(ring[desc_id].resv1);
1752 ring[desc_id].resv2.dword =
1753 rte_le_to_cpu_64(ring[desc_id].resv2.dword);
1754 ring_rxd_display_dword(ring[desc_id].resv2);
1759 /* 16 bytes RX descriptor */
1760 ring[desc_id].lo_dword.dword =
1761 rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
1762 ring_rxd_display_dword(ring[desc_id].lo_dword);
1763 ring[desc_id].hi_dword.dword =
1764 rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
1765 ring_rxd_display_dword(ring[desc_id].hi_dword);
1769 ring_tx_descriptor_display(const struct rte_memzone *ring_mz, uint16_t desc_id)
1771 struct igb_ring_desc_16_bytes *ring;
1772 struct igb_ring_desc_16_bytes txd;
1774 ring = (struct igb_ring_desc_16_bytes *)ring_mz->addr;
1775 txd.lo_dword.dword = rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
1776 txd.hi_dword.dword = rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
1777 printf(" 0x%08X - 0x%08X / 0x%08X - 0x%08X\n",
1778 (unsigned)txd.lo_dword.words.lo,
1779 (unsigned)txd.lo_dword.words.hi,
1780 (unsigned)txd.hi_dword.words.lo,
1781 (unsigned)txd.hi_dword.words.hi);
1785 rx_ring_desc_display(portid_t port_id, queueid_t rxq_id, uint16_t rxd_id)
1787 const struct rte_memzone *rx_mz;
1789 if (port_id_is_invalid(port_id, ENABLED_WARN))
1791 if (rx_queue_id_is_invalid(rxq_id))
1793 if (rx_desc_id_is_invalid(rxd_id))
1795 rx_mz = ring_dma_zone_lookup("rx_ring", port_id, rxq_id);
1798 ring_rx_descriptor_display(rx_mz, port_id, rxd_id);
1802 tx_ring_desc_display(portid_t port_id, queueid_t txq_id, uint16_t txd_id)
1804 const struct rte_memzone *tx_mz;
1806 if (port_id_is_invalid(port_id, ENABLED_WARN))
1808 if (tx_queue_id_is_invalid(txq_id))
1810 if (tx_desc_id_is_invalid(txd_id))
1812 tx_mz = ring_dma_zone_lookup("tx_ring", port_id, txq_id);
1815 ring_tx_descriptor_display(tx_mz, txd_id);
1819 fwd_lcores_config_display(void)
1823 printf("List of forwarding lcores:");
1824 for (lc_id = 0; lc_id < nb_cfg_lcores; lc_id++)
1825 printf(" %2u", fwd_lcores_cpuids[lc_id]);
1829 rxtx_config_display(void)
1834 printf(" %s packet forwarding%s packets/burst=%d\n",
1835 cur_fwd_eng->fwd_mode_name,
1836 retry_enabled == 0 ? "" : " with retry",
1839 if (cur_fwd_eng == &tx_only_engine || cur_fwd_eng == &flow_gen_engine)
1840 printf(" packet len=%u - nb packet segments=%d\n",
1841 (unsigned)tx_pkt_length, (int) tx_pkt_nb_segs);
1843 printf(" nb forwarding cores=%d - nb forwarding ports=%d\n",
1844 nb_fwd_lcores, nb_fwd_ports);
1846 RTE_ETH_FOREACH_DEV(pid) {
1847 struct rte_eth_rxconf *rx_conf = &ports[pid].rx_conf[0];
1848 struct rte_eth_txconf *tx_conf = &ports[pid].tx_conf[0];
1849 uint16_t *nb_rx_desc = &ports[pid].nb_rx_desc[0];
1850 uint16_t *nb_tx_desc = &ports[pid].nb_tx_desc[0];
1851 uint16_t nb_rx_desc_tmp;
1852 uint16_t nb_tx_desc_tmp;
1853 struct rte_eth_rxq_info rx_qinfo;
1854 struct rte_eth_txq_info tx_qinfo;
1857 /* per port config */
1858 printf(" port %d: RX queue number: %d Tx queue number: %d\n",
1859 (unsigned int)pid, nb_rxq, nb_txq);
1861 printf(" Rx offloads=0x%"PRIx64" Tx offloads=0x%"PRIx64"\n",
1862 ports[pid].dev_conf.rxmode.offloads,
1863 ports[pid].dev_conf.txmode.offloads);
1865 /* per rx queue config only for first queue to be less verbose */
1866 for (qid = 0; qid < 1; qid++) {
1867 rc = rte_eth_rx_queue_info_get(pid, qid, &rx_qinfo);
1869 nb_rx_desc_tmp = nb_rx_desc[qid];
1871 nb_rx_desc_tmp = rx_qinfo.nb_desc;
1873 printf(" RX queue: %d\n", qid);
1874 printf(" RX desc=%d - RX free threshold=%d\n",
1875 nb_rx_desc_tmp, rx_conf[qid].rx_free_thresh);
1876 printf(" RX threshold registers: pthresh=%d hthresh=%d "
1878 rx_conf[qid].rx_thresh.pthresh,
1879 rx_conf[qid].rx_thresh.hthresh,
1880 rx_conf[qid].rx_thresh.wthresh);
1881 printf(" RX Offloads=0x%"PRIx64"\n",
1882 rx_conf[qid].offloads);
1885 /* per tx queue config only for first queue to be less verbose */
1886 for (qid = 0; qid < 1; qid++) {
1887 rc = rte_eth_tx_queue_info_get(pid, qid, &tx_qinfo);
1889 nb_tx_desc_tmp = nb_tx_desc[qid];
1891 nb_tx_desc_tmp = tx_qinfo.nb_desc;
1893 printf(" TX queue: %d\n", qid);
1894 printf(" TX desc=%d - TX free threshold=%d\n",
1895 nb_tx_desc_tmp, tx_conf[qid].tx_free_thresh);
1896 printf(" TX threshold registers: pthresh=%d hthresh=%d "
1898 tx_conf[qid].tx_thresh.pthresh,
1899 tx_conf[qid].tx_thresh.hthresh,
1900 tx_conf[qid].tx_thresh.wthresh);
1901 printf(" TX offloads=0x%"PRIx64" - TX RS bit threshold=%d\n",
1902 tx_conf[qid].offloads, tx_conf->tx_rs_thresh);
1908 port_rss_reta_info(portid_t port_id,
1909 struct rte_eth_rss_reta_entry64 *reta_conf,
1910 uint16_t nb_entries)
1912 uint16_t i, idx, shift;
1915 if (port_id_is_invalid(port_id, ENABLED_WARN))
1918 ret = rte_eth_dev_rss_reta_query(port_id, reta_conf, nb_entries);
1920 printf("Failed to get RSS RETA info, return code = %d\n", ret);
1924 for (i = 0; i < nb_entries; i++) {
1925 idx = i / RTE_RETA_GROUP_SIZE;
1926 shift = i % RTE_RETA_GROUP_SIZE;
1927 if (!(reta_conf[idx].mask & (1ULL << shift)))
1929 printf("RSS RETA configuration: hash index=%u, queue=%u\n",
1930 i, reta_conf[idx].reta[shift]);
1935 * Displays the RSS hash functions of a port, and, optionaly, the RSS hash
1939 port_rss_hash_conf_show(portid_t port_id, char rss_info[], int show_rss_key)
1941 struct rte_eth_rss_conf rss_conf;
1942 uint8_t rss_key[RSS_HASH_KEY_LENGTH];
1946 struct rte_eth_dev_info dev_info;
1947 uint8_t hash_key_size;
1949 if (port_id_is_invalid(port_id, ENABLED_WARN))
1952 memset(&dev_info, 0, sizeof(dev_info));
1953 rte_eth_dev_info_get(port_id, &dev_info);
1954 if (dev_info.hash_key_size > 0 &&
1955 dev_info.hash_key_size <= sizeof(rss_key))
1956 hash_key_size = dev_info.hash_key_size;
1958 printf("dev_info did not provide a valid hash key size\n");
1962 rss_conf.rss_hf = 0;
1963 for (i = 0; rss_type_table[i].str; i++) {
1964 if (!strcmp(rss_info, rss_type_table[i].str))
1965 rss_conf.rss_hf = rss_type_table[i].rss_type;
1968 /* Get RSS hash key if asked to display it */
1969 rss_conf.rss_key = (show_rss_key) ? rss_key : NULL;
1970 rss_conf.rss_key_len = hash_key_size;
1971 diag = rte_eth_dev_rss_hash_conf_get(port_id, &rss_conf);
1975 printf("port index %d invalid\n", port_id);
1978 printf("operation not supported by device\n");
1981 printf("operation failed - diag=%d\n", diag);
1986 rss_hf = rss_conf.rss_hf;
1988 printf("RSS disabled\n");
1991 printf("RSS functions:\n ");
1992 for (i = 0; rss_type_table[i].str; i++) {
1993 if (rss_hf & rss_type_table[i].rss_type)
1994 printf("%s ", rss_type_table[i].str);
1999 printf("RSS key:\n");
2000 for (i = 0; i < hash_key_size; i++)
2001 printf("%02X", rss_key[i]);
2006 port_rss_hash_key_update(portid_t port_id, char rss_type[], uint8_t *hash_key,
2009 struct rte_eth_rss_conf rss_conf;
2013 rss_conf.rss_key = NULL;
2014 rss_conf.rss_key_len = hash_key_len;
2015 rss_conf.rss_hf = 0;
2016 for (i = 0; rss_type_table[i].str; i++) {
2017 if (!strcmp(rss_type_table[i].str, rss_type))
2018 rss_conf.rss_hf = rss_type_table[i].rss_type;
2020 diag = rte_eth_dev_rss_hash_conf_get(port_id, &rss_conf);
2022 rss_conf.rss_key = hash_key;
2023 diag = rte_eth_dev_rss_hash_update(port_id, &rss_conf);
2030 printf("port index %d invalid\n", port_id);
2033 printf("operation not supported by device\n");
2036 printf("operation failed - diag=%d\n", diag);
2042 * Setup forwarding configuration for each logical core.
2045 setup_fwd_config_of_each_lcore(struct fwd_config *cfg)
2047 streamid_t nb_fs_per_lcore;
2055 nb_fs = cfg->nb_fwd_streams;
2056 nb_fc = cfg->nb_fwd_lcores;
2057 if (nb_fs <= nb_fc) {
2058 nb_fs_per_lcore = 1;
2061 nb_fs_per_lcore = (streamid_t) (nb_fs / nb_fc);
2062 nb_extra = (lcoreid_t) (nb_fs % nb_fc);
2065 nb_lc = (lcoreid_t) (nb_fc - nb_extra);
2067 for (lc_id = 0; lc_id < nb_lc; lc_id++) {
2068 fwd_lcores[lc_id]->stream_idx = sm_id;
2069 fwd_lcores[lc_id]->stream_nb = nb_fs_per_lcore;
2070 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
2074 * Assign extra remaining streams, if any.
2076 nb_fs_per_lcore = (streamid_t) (nb_fs_per_lcore + 1);
2077 for (lc_id = 0; lc_id < nb_extra; lc_id++) {
2078 fwd_lcores[nb_lc + lc_id]->stream_idx = sm_id;
2079 fwd_lcores[nb_lc + lc_id]->stream_nb = nb_fs_per_lcore;
2080 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
2085 fwd_topology_tx_port_get(portid_t rxp)
2087 static int warning_once = 1;
2089 RTE_ASSERT(rxp < cur_fwd_config.nb_fwd_ports);
2091 switch (port_topology) {
2093 case PORT_TOPOLOGY_PAIRED:
2094 if ((rxp & 0x1) == 0) {
2095 if (rxp + 1 < cur_fwd_config.nb_fwd_ports)
2098 printf("\nWarning! port-topology=paired"
2099 " and odd forward ports number,"
2100 " the last port will pair with"
2107 case PORT_TOPOLOGY_CHAINED:
2108 return (rxp + 1) % cur_fwd_config.nb_fwd_ports;
2109 case PORT_TOPOLOGY_LOOP:
2115 simple_fwd_config_setup(void)
2119 cur_fwd_config.nb_fwd_ports = (portid_t) nb_fwd_ports;
2120 cur_fwd_config.nb_fwd_streams =
2121 (streamid_t) cur_fwd_config.nb_fwd_ports;
2123 /* reinitialize forwarding streams */
2127 * In the simple forwarding test, the number of forwarding cores
2128 * must be lower or equal to the number of forwarding ports.
2130 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2131 if (cur_fwd_config.nb_fwd_lcores > cur_fwd_config.nb_fwd_ports)
2132 cur_fwd_config.nb_fwd_lcores =
2133 (lcoreid_t) cur_fwd_config.nb_fwd_ports;
2134 setup_fwd_config_of_each_lcore(&cur_fwd_config);
2136 for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++) {
2137 fwd_streams[i]->rx_port = fwd_ports_ids[i];
2138 fwd_streams[i]->rx_queue = 0;
2139 fwd_streams[i]->tx_port =
2140 fwd_ports_ids[fwd_topology_tx_port_get(i)];
2141 fwd_streams[i]->tx_queue = 0;
2142 fwd_streams[i]->peer_addr = fwd_streams[i]->tx_port;
2143 fwd_streams[i]->retry_enabled = retry_enabled;
2148 * For the RSS forwarding test all streams distributed over lcores. Each stream
2149 * being composed of a RX queue to poll on a RX port for input messages,
2150 * associated with a TX queue of a TX port where to send forwarded packets.
2153 rss_fwd_config_setup(void)
2164 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2165 cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2166 cur_fwd_config.nb_fwd_streams =
2167 (streamid_t) (nb_q * cur_fwd_config.nb_fwd_ports);
2169 if (cur_fwd_config.nb_fwd_streams < cur_fwd_config.nb_fwd_lcores)
2170 cur_fwd_config.nb_fwd_lcores =
2171 (lcoreid_t)cur_fwd_config.nb_fwd_streams;
2173 /* reinitialize forwarding streams */
2176 setup_fwd_config_of_each_lcore(&cur_fwd_config);
2178 for (sm_id = 0; sm_id < cur_fwd_config.nb_fwd_streams; sm_id++) {
2179 struct fwd_stream *fs;
2181 fs = fwd_streams[sm_id];
2182 txp = fwd_topology_tx_port_get(rxp);
2183 fs->rx_port = fwd_ports_ids[rxp];
2185 fs->tx_port = fwd_ports_ids[txp];
2187 fs->peer_addr = fs->tx_port;
2188 fs->retry_enabled = retry_enabled;
2190 if (rxp < nb_fwd_ports)
2198 * For the DCB forwarding test, each core is assigned on each traffic class.
2200 * Each core is assigned a multi-stream, each stream being composed of
2201 * a RX queue to poll on a RX port for input messages, associated with
2202 * a TX queue of a TX port where to send forwarded packets. All RX and
2203 * TX queues are mapping to the same traffic class.
2204 * If VMDQ and DCB co-exist, each traffic class on different POOLs share
2208 dcb_fwd_config_setup(void)
2210 struct rte_eth_dcb_info rxp_dcb_info, txp_dcb_info;
2211 portid_t txp, rxp = 0;
2212 queueid_t txq, rxq = 0;
2214 uint16_t nb_rx_queue, nb_tx_queue;
2215 uint16_t i, j, k, sm_id = 0;
2218 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2219 cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2220 cur_fwd_config.nb_fwd_streams =
2221 (streamid_t) (nb_rxq * cur_fwd_config.nb_fwd_ports);
2223 /* reinitialize forwarding streams */
2227 /* get the dcb info on the first RX and TX ports */
2228 (void)rte_eth_dev_get_dcb_info(fwd_ports_ids[rxp], &rxp_dcb_info);
2229 (void)rte_eth_dev_get_dcb_info(fwd_ports_ids[txp], &txp_dcb_info);
2231 for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
2232 fwd_lcores[lc_id]->stream_nb = 0;
2233 fwd_lcores[lc_id]->stream_idx = sm_id;
2234 for (i = 0; i < ETH_MAX_VMDQ_POOL; i++) {
2235 /* if the nb_queue is zero, means this tc is
2236 * not enabled on the POOL
2238 if (rxp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue == 0)
2240 k = fwd_lcores[lc_id]->stream_nb +
2241 fwd_lcores[lc_id]->stream_idx;
2242 rxq = rxp_dcb_info.tc_queue.tc_rxq[i][tc].base;
2243 txq = txp_dcb_info.tc_queue.tc_txq[i][tc].base;
2244 nb_rx_queue = txp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue;
2245 nb_tx_queue = txp_dcb_info.tc_queue.tc_txq[i][tc].nb_queue;
2246 for (j = 0; j < nb_rx_queue; j++) {
2247 struct fwd_stream *fs;
2249 fs = fwd_streams[k + j];
2250 fs->rx_port = fwd_ports_ids[rxp];
2251 fs->rx_queue = rxq + j;
2252 fs->tx_port = fwd_ports_ids[txp];
2253 fs->tx_queue = txq + j % nb_tx_queue;
2254 fs->peer_addr = fs->tx_port;
2255 fs->retry_enabled = retry_enabled;
2257 fwd_lcores[lc_id]->stream_nb +=
2258 rxp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue;
2260 sm_id = (streamid_t) (sm_id + fwd_lcores[lc_id]->stream_nb);
2263 if (tc < rxp_dcb_info.nb_tcs)
2265 /* Restart from TC 0 on next RX port */
2267 if (numa_support && (nb_fwd_ports <= (nb_ports >> 1)))
2269 (rxp + ((nb_ports >> 1) / nb_fwd_ports));
2272 if (rxp >= nb_fwd_ports)
2274 /* get the dcb information on next RX and TX ports */
2275 if ((rxp & 0x1) == 0)
2276 txp = (portid_t) (rxp + 1);
2278 txp = (portid_t) (rxp - 1);
2279 rte_eth_dev_get_dcb_info(fwd_ports_ids[rxp], &rxp_dcb_info);
2280 rte_eth_dev_get_dcb_info(fwd_ports_ids[txp], &txp_dcb_info);
2285 icmp_echo_config_setup(void)
2292 if ((nb_txq * nb_fwd_ports) < nb_fwd_lcores)
2293 cur_fwd_config.nb_fwd_lcores = (lcoreid_t)
2294 (nb_txq * nb_fwd_ports);
2296 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2297 cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2298 cur_fwd_config.nb_fwd_streams =
2299 (streamid_t) (nb_rxq * cur_fwd_config.nb_fwd_ports);
2300 if (cur_fwd_config.nb_fwd_streams < cur_fwd_config.nb_fwd_lcores)
2301 cur_fwd_config.nb_fwd_lcores =
2302 (lcoreid_t)cur_fwd_config.nb_fwd_streams;
2303 if (verbose_level > 0) {
2304 printf("%s fwd_cores=%d fwd_ports=%d fwd_streams=%d\n",
2306 cur_fwd_config.nb_fwd_lcores,
2307 cur_fwd_config.nb_fwd_ports,
2308 cur_fwd_config.nb_fwd_streams);
2311 /* reinitialize forwarding streams */
2313 setup_fwd_config_of_each_lcore(&cur_fwd_config);
2315 for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
2316 if (verbose_level > 0)
2317 printf(" core=%d: \n", lc_id);
2318 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
2319 struct fwd_stream *fs;
2320 fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
2321 fs->rx_port = fwd_ports_ids[rxp];
2323 fs->tx_port = fs->rx_port;
2325 fs->peer_addr = fs->tx_port;
2326 fs->retry_enabled = retry_enabled;
2327 if (verbose_level > 0)
2328 printf(" stream=%d port=%d rxq=%d txq=%d\n",
2329 sm_id, fs->rx_port, fs->rx_queue,
2331 rxq = (queueid_t) (rxq + 1);
2332 if (rxq == nb_rxq) {
2334 rxp = (portid_t) (rxp + 1);
2340 #if defined RTE_LIBRTE_PMD_SOFTNIC
2342 softnic_fwd_config_setup(void)
2344 struct rte_port *port;
2345 portid_t pid, softnic_portid;
2347 uint8_t softnic_enable = 0;
2349 RTE_ETH_FOREACH_DEV(pid) {
2351 const char *driver = port->dev_info.driver_name;
2353 if (strcmp(driver, "net_softnic") == 0) {
2354 softnic_portid = pid;
2360 if (softnic_enable == 0) {
2361 printf("Softnic mode not configured(%s)!\n", __func__);
2365 cur_fwd_config.nb_fwd_ports = 1;
2366 cur_fwd_config.nb_fwd_streams = (streamid_t) nb_rxq;
2368 /* Re-initialize forwarding streams */
2372 * In the softnic forwarding test, the number of forwarding cores
2373 * is set to one and remaining are used for softnic packet processing.
2375 cur_fwd_config.nb_fwd_lcores = 1;
2376 setup_fwd_config_of_each_lcore(&cur_fwd_config);
2378 for (i = 0; i < cur_fwd_config.nb_fwd_streams; i++) {
2379 fwd_streams[i]->rx_port = softnic_portid;
2380 fwd_streams[i]->rx_queue = i;
2381 fwd_streams[i]->tx_port = softnic_portid;
2382 fwd_streams[i]->tx_queue = i;
2383 fwd_streams[i]->peer_addr = fwd_streams[i]->tx_port;
2384 fwd_streams[i]->retry_enabled = retry_enabled;
2390 fwd_config_setup(void)
2392 cur_fwd_config.fwd_eng = cur_fwd_eng;
2393 if (strcmp(cur_fwd_eng->fwd_mode_name, "icmpecho") == 0) {
2394 icmp_echo_config_setup();
2398 #if defined RTE_LIBRTE_PMD_SOFTNIC
2399 if (strcmp(cur_fwd_eng->fwd_mode_name, "softnic") == 0) {
2400 softnic_fwd_config_setup();
2405 if ((nb_rxq > 1) && (nb_txq > 1)){
2407 dcb_fwd_config_setup();
2409 rss_fwd_config_setup();
2412 simple_fwd_config_setup();
2416 pkt_fwd_config_display(struct fwd_config *cfg)
2418 struct fwd_stream *fs;
2422 printf("%s packet forwarding%s - ports=%d - cores=%d - streams=%d - "
2423 "NUMA support %s, MP over anonymous pages %s\n",
2424 cfg->fwd_eng->fwd_mode_name,
2425 retry_enabled == 0 ? "" : " with retry",
2426 cfg->nb_fwd_ports, cfg->nb_fwd_lcores, cfg->nb_fwd_streams,
2427 numa_support == 1 ? "enabled" : "disabled",
2428 mp_anon != 0 ? "enabled" : "disabled");
2431 printf("TX retry num: %u, delay between TX retries: %uus\n",
2432 burst_tx_retry_num, burst_tx_delay_time);
2433 for (lc_id = 0; lc_id < cfg->nb_fwd_lcores; lc_id++) {
2434 printf("Logical Core %u (socket %u) forwards packets on "
2436 fwd_lcores_cpuids[lc_id],
2437 rte_lcore_to_socket_id(fwd_lcores_cpuids[lc_id]),
2438 fwd_lcores[lc_id]->stream_nb);
2439 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
2440 fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
2441 printf("\n RX P=%d/Q=%d (socket %u) -> TX "
2442 "P=%d/Q=%d (socket %u) ",
2443 fs->rx_port, fs->rx_queue,
2444 ports[fs->rx_port].socket_id,
2445 fs->tx_port, fs->tx_queue,
2446 ports[fs->tx_port].socket_id);
2447 print_ethaddr("peer=",
2448 &peer_eth_addrs[fs->peer_addr]);
2456 set_fwd_eth_peer(portid_t port_id, char *peer_addr)
2458 uint8_t c, new_peer_addr[6];
2459 if (!rte_eth_dev_is_valid_port(port_id)) {
2460 printf("Error: Invalid port number %i\n", port_id);
2463 if (cmdline_parse_etheraddr(NULL, peer_addr, &new_peer_addr,
2464 sizeof(new_peer_addr)) < 0) {
2465 printf("Error: Invalid ethernet address: %s\n", peer_addr);
2468 for (c = 0; c < 6; c++)
2469 peer_eth_addrs[port_id].addr_bytes[c] =
2474 set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc)
2477 unsigned int lcore_cpuid;
2482 for (i = 0; i < nb_lc; i++) {
2483 lcore_cpuid = lcorelist[i];
2484 if (! rte_lcore_is_enabled(lcore_cpuid)) {
2485 printf("lcore %u not enabled\n", lcore_cpuid);
2488 if (lcore_cpuid == rte_get_master_lcore()) {
2489 printf("lcore %u cannot be masked on for running "
2490 "packet forwarding, which is the master lcore "
2491 "and reserved for command line parsing only\n",
2496 fwd_lcores_cpuids[i] = lcore_cpuid;
2498 if (record_now == 0) {
2502 nb_cfg_lcores = (lcoreid_t) nb_lc;
2503 if (nb_fwd_lcores != (lcoreid_t) nb_lc) {
2504 printf("previous number of forwarding cores %u - changed to "
2505 "number of configured cores %u\n",
2506 (unsigned int) nb_fwd_lcores, nb_lc);
2507 nb_fwd_lcores = (lcoreid_t) nb_lc;
2514 set_fwd_lcores_mask(uint64_t lcoremask)
2516 unsigned int lcorelist[64];
2520 if (lcoremask == 0) {
2521 printf("Invalid NULL mask of cores\n");
2525 for (i = 0; i < 64; i++) {
2526 if (! ((uint64_t)(1ULL << i) & lcoremask))
2528 lcorelist[nb_lc++] = i;
2530 return set_fwd_lcores_list(lcorelist, nb_lc);
2534 set_fwd_lcores_number(uint16_t nb_lc)
2536 if (nb_lc > nb_cfg_lcores) {
2537 printf("nb fwd cores %u > %u (max. number of configured "
2538 "lcores) - ignored\n",
2539 (unsigned int) nb_lc, (unsigned int) nb_cfg_lcores);
2542 nb_fwd_lcores = (lcoreid_t) nb_lc;
2543 printf("Number of forwarding cores set to %u\n",
2544 (unsigned int) nb_fwd_lcores);
2548 set_fwd_ports_list(unsigned int *portlist, unsigned int nb_pt)
2556 for (i = 0; i < nb_pt; i++) {
2557 port_id = (portid_t) portlist[i];
2558 if (port_id_is_invalid(port_id, ENABLED_WARN))
2561 fwd_ports_ids[i] = port_id;
2563 if (record_now == 0) {
2567 nb_cfg_ports = (portid_t) nb_pt;
2568 if (nb_fwd_ports != (portid_t) nb_pt) {
2569 printf("previous number of forwarding ports %u - changed to "
2570 "number of configured ports %u\n",
2571 (unsigned int) nb_fwd_ports, nb_pt);
2572 nb_fwd_ports = (portid_t) nb_pt;
2577 set_fwd_ports_mask(uint64_t portmask)
2579 unsigned int portlist[64];
2583 if (portmask == 0) {
2584 printf("Invalid NULL mask of ports\n");
2588 RTE_ETH_FOREACH_DEV(i) {
2589 if (! ((uint64_t)(1ULL << i) & portmask))
2591 portlist[nb_pt++] = i;
2593 set_fwd_ports_list(portlist, nb_pt);
2597 set_fwd_ports_number(uint16_t nb_pt)
2599 if (nb_pt > nb_cfg_ports) {
2600 printf("nb fwd ports %u > %u (number of configured "
2601 "ports) - ignored\n",
2602 (unsigned int) nb_pt, (unsigned int) nb_cfg_ports);
2605 nb_fwd_ports = (portid_t) nb_pt;
2606 printf("Number of forwarding ports set to %u\n",
2607 (unsigned int) nb_fwd_ports);
2611 port_is_forwarding(portid_t port_id)
2615 if (port_id_is_invalid(port_id, ENABLED_WARN))
2618 for (i = 0; i < nb_fwd_ports; i++) {
2619 if (fwd_ports_ids[i] == port_id)
2627 set_nb_pkt_per_burst(uint16_t nb)
2629 if (nb > MAX_PKT_BURST) {
2630 printf("nb pkt per burst: %u > %u (maximum packet per burst) "
2632 (unsigned int) nb, (unsigned int) MAX_PKT_BURST);
2635 nb_pkt_per_burst = nb;
2636 printf("Number of packets per burst set to %u\n",
2637 (unsigned int) nb_pkt_per_burst);
2641 tx_split_get_name(enum tx_pkt_split split)
2645 for (i = 0; i != RTE_DIM(tx_split_name); i++) {
2646 if (tx_split_name[i].split == split)
2647 return tx_split_name[i].name;
2653 set_tx_pkt_split(const char *name)
2657 for (i = 0; i != RTE_DIM(tx_split_name); i++) {
2658 if (strcmp(tx_split_name[i].name, name) == 0) {
2659 tx_pkt_split = tx_split_name[i].split;
2663 printf("unknown value: \"%s\"\n", name);
2667 show_tx_pkt_segments(void)
2673 split = tx_split_get_name(tx_pkt_split);
2675 printf("Number of segments: %u\n", n);
2676 printf("Segment sizes: ");
2677 for (i = 0; i != n - 1; i++)
2678 printf("%hu,", tx_pkt_seg_lengths[i]);
2679 printf("%hu\n", tx_pkt_seg_lengths[i]);
2680 printf("Split packet: %s\n", split);
2684 set_tx_pkt_segments(unsigned *seg_lengths, unsigned nb_segs)
2686 uint16_t tx_pkt_len;
2689 if (nb_segs >= (unsigned) nb_txd) {
2690 printf("nb segments per TX packets=%u >= nb_txd=%u - ignored\n",
2691 nb_segs, (unsigned int) nb_txd);
2696 * Check that each segment length is greater or equal than
2697 * the mbuf data sise.
2698 * Check also that the total packet length is greater or equal than the
2699 * size of an empty UDP/IP packet (sizeof(struct ether_hdr) + 20 + 8).
2702 for (i = 0; i < nb_segs; i++) {
2703 if (seg_lengths[i] > (unsigned) mbuf_data_size) {
2704 printf("length[%u]=%u > mbuf_data_size=%u - give up\n",
2705 i, seg_lengths[i], (unsigned) mbuf_data_size);
2708 tx_pkt_len = (uint16_t)(tx_pkt_len + seg_lengths[i]);
2710 if (tx_pkt_len < (sizeof(struct ether_hdr) + 20 + 8)) {
2711 printf("total packet length=%u < %d - give up\n",
2712 (unsigned) tx_pkt_len,
2713 (int)(sizeof(struct ether_hdr) + 20 + 8));
2717 for (i = 0; i < nb_segs; i++)
2718 tx_pkt_seg_lengths[i] = (uint16_t) seg_lengths[i];
2720 tx_pkt_length = tx_pkt_len;
2721 tx_pkt_nb_segs = (uint8_t) nb_segs;
2725 setup_gro(const char *onoff, portid_t port_id)
2727 if (!rte_eth_dev_is_valid_port(port_id)) {
2728 printf("invalid port id %u\n", port_id);
2731 if (test_done == 0) {
2732 printf("Before enable/disable GRO,"
2733 " please stop forwarding first\n");
2736 if (strcmp(onoff, "on") == 0) {
2737 if (gro_ports[port_id].enable != 0) {
2738 printf("Port %u has enabled GRO. Please"
2739 " disable GRO first\n", port_id);
2742 if (gro_flush_cycles == GRO_DEFAULT_FLUSH_CYCLES) {
2743 gro_ports[port_id].param.gro_types = RTE_GRO_TCP_IPV4;
2744 gro_ports[port_id].param.max_flow_num =
2745 GRO_DEFAULT_FLOW_NUM;
2746 gro_ports[port_id].param.max_item_per_flow =
2747 GRO_DEFAULT_ITEM_NUM_PER_FLOW;
2749 gro_ports[port_id].enable = 1;
2751 if (gro_ports[port_id].enable == 0) {
2752 printf("Port %u has disabled GRO\n", port_id);
2755 gro_ports[port_id].enable = 0;
2760 setup_gro_flush_cycles(uint8_t cycles)
2762 if (test_done == 0) {
2763 printf("Before change flush interval for GRO,"
2764 " please stop forwarding first.\n");
2768 if (cycles > GRO_MAX_FLUSH_CYCLES || cycles <
2769 GRO_DEFAULT_FLUSH_CYCLES) {
2770 printf("The flushing cycle be in the range"
2771 " of 1 to %u. Revert to the default"
2773 GRO_MAX_FLUSH_CYCLES,
2774 GRO_DEFAULT_FLUSH_CYCLES);
2775 cycles = GRO_DEFAULT_FLUSH_CYCLES;
2778 gro_flush_cycles = cycles;
2782 show_gro(portid_t port_id)
2784 struct rte_gro_param *param;
2785 uint32_t max_pkts_num;
2787 param = &gro_ports[port_id].param;
2789 if (!rte_eth_dev_is_valid_port(port_id)) {
2790 printf("Invalid port id %u.\n", port_id);
2793 if (gro_ports[port_id].enable) {
2794 printf("GRO type: TCP/IPv4\n");
2795 if (gro_flush_cycles == GRO_DEFAULT_FLUSH_CYCLES) {
2796 max_pkts_num = param->max_flow_num *
2797 param->max_item_per_flow;
2799 max_pkts_num = MAX_PKT_BURST * GRO_MAX_FLUSH_CYCLES;
2800 printf("Max number of packets to perform GRO: %u\n",
2802 printf("Flushing cycles: %u\n", gro_flush_cycles);
2804 printf("Port %u doesn't enable GRO.\n", port_id);
2808 setup_gso(const char *mode, portid_t port_id)
2810 if (!rte_eth_dev_is_valid_port(port_id)) {
2811 printf("invalid port id %u\n", port_id);
2814 if (strcmp(mode, "on") == 0) {
2815 if (test_done == 0) {
2816 printf("before enabling GSO,"
2817 " please stop forwarding first\n");
2820 gso_ports[port_id].enable = 1;
2821 } else if (strcmp(mode, "off") == 0) {
2822 if (test_done == 0) {
2823 printf("before disabling GSO,"
2824 " please stop forwarding first\n");
2827 gso_ports[port_id].enable = 0;
2832 list_pkt_forwarding_modes(void)
2834 static char fwd_modes[128] = "";
2835 const char *separator = "|";
2836 struct fwd_engine *fwd_eng;
2839 if (strlen (fwd_modes) == 0) {
2840 while ((fwd_eng = fwd_engines[i++]) != NULL) {
2841 strncat(fwd_modes, fwd_eng->fwd_mode_name,
2842 sizeof(fwd_modes) - strlen(fwd_modes) - 1);
2843 strncat(fwd_modes, separator,
2844 sizeof(fwd_modes) - strlen(fwd_modes) - 1);
2846 fwd_modes[strlen(fwd_modes) - strlen(separator)] = '\0';
2853 list_pkt_forwarding_retry_modes(void)
2855 static char fwd_modes[128] = "";
2856 const char *separator = "|";
2857 struct fwd_engine *fwd_eng;
2860 if (strlen(fwd_modes) == 0) {
2861 while ((fwd_eng = fwd_engines[i++]) != NULL) {
2862 if (fwd_eng == &rx_only_engine)
2864 strncat(fwd_modes, fwd_eng->fwd_mode_name,
2866 strlen(fwd_modes) - 1);
2867 strncat(fwd_modes, separator,
2869 strlen(fwd_modes) - 1);
2871 fwd_modes[strlen(fwd_modes) - strlen(separator)] = '\0';
2878 set_pkt_forwarding_mode(const char *fwd_mode_name)
2880 struct fwd_engine *fwd_eng;
2884 while ((fwd_eng = fwd_engines[i]) != NULL) {
2885 if (! strcmp(fwd_eng->fwd_mode_name, fwd_mode_name)) {
2886 printf("Set %s packet forwarding mode%s\n",
2888 retry_enabled == 0 ? "" : " with retry");
2889 cur_fwd_eng = fwd_eng;
2894 printf("Invalid %s packet forwarding mode\n", fwd_mode_name);
2898 set_verbose_level(uint16_t vb_level)
2900 printf("Change verbose level from %u to %u\n",
2901 (unsigned int) verbose_level, (unsigned int) vb_level);
2902 verbose_level = vb_level;
2906 vlan_extend_set(portid_t port_id, int on)
2910 uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
2912 if (port_id_is_invalid(port_id, ENABLED_WARN))
2915 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2918 vlan_offload |= ETH_VLAN_EXTEND_OFFLOAD;
2919 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_EXTEND;
2921 vlan_offload &= ~ETH_VLAN_EXTEND_OFFLOAD;
2922 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_EXTEND;
2925 diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
2927 printf("rx_vlan_extend_set(port_pi=%d, on=%d) failed "
2928 "diag=%d\n", port_id, on, diag);
2929 ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
2933 rx_vlan_strip_set(portid_t port_id, int on)
2937 uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
2939 if (port_id_is_invalid(port_id, ENABLED_WARN))
2942 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2945 vlan_offload |= ETH_VLAN_STRIP_OFFLOAD;
2946 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
2948 vlan_offload &= ~ETH_VLAN_STRIP_OFFLOAD;
2949 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
2952 diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
2954 printf("rx_vlan_strip_set(port_pi=%d, on=%d) failed "
2955 "diag=%d\n", port_id, on, diag);
2956 ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
2960 rx_vlan_strip_set_on_queue(portid_t port_id, uint16_t queue_id, int on)
2964 if (port_id_is_invalid(port_id, ENABLED_WARN))
2967 diag = rte_eth_dev_set_vlan_strip_on_queue(port_id, queue_id, on);
2969 printf("rx_vlan_strip_set_on_queue(port_pi=%d, queue_id=%d, on=%d) failed "
2970 "diag=%d\n", port_id, queue_id, on, diag);
2974 rx_vlan_filter_set(portid_t port_id, int on)
2978 uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
2980 if (port_id_is_invalid(port_id, ENABLED_WARN))
2983 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2986 vlan_offload |= ETH_VLAN_FILTER_OFFLOAD;
2987 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_FILTER;
2989 vlan_offload &= ~ETH_VLAN_FILTER_OFFLOAD;
2990 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_FILTER;
2993 diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
2995 printf("rx_vlan_filter_set(port_pi=%d, on=%d) failed "
2996 "diag=%d\n", port_id, on, diag);
2997 ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
3001 rx_vft_set(portid_t port_id, uint16_t vlan_id, int on)
3005 if (port_id_is_invalid(port_id, ENABLED_WARN))
3007 if (vlan_id_is_invalid(vlan_id))
3009 diag = rte_eth_dev_vlan_filter(port_id, vlan_id, on);
3012 printf("rte_eth_dev_vlan_filter(port_pi=%d, vlan_id=%d, on=%d) failed "
3014 port_id, vlan_id, on, diag);
3019 rx_vlan_all_filter_set(portid_t port_id, int on)
3023 if (port_id_is_invalid(port_id, ENABLED_WARN))
3025 for (vlan_id = 0; vlan_id < 4096; vlan_id++) {
3026 if (rx_vft_set(port_id, vlan_id, on))
3032 vlan_tpid_set(portid_t port_id, enum rte_vlan_type vlan_type, uint16_t tp_id)
3036 if (port_id_is_invalid(port_id, ENABLED_WARN))
3039 diag = rte_eth_dev_set_vlan_ether_type(port_id, vlan_type, tp_id);
3043 printf("tx_vlan_tpid_set(port_pi=%d, vlan_type=%d, tpid=%d) failed "
3045 port_id, vlan_type, tp_id, diag);
3049 tx_vlan_set(portid_t port_id, uint16_t vlan_id)
3052 struct rte_eth_dev_info dev_info;
3054 if (port_id_is_invalid(port_id, ENABLED_WARN))
3056 if (vlan_id_is_invalid(vlan_id))
3059 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
3060 if (vlan_offload & ETH_VLAN_EXTEND_OFFLOAD) {
3061 printf("Error, as QinQ has been enabled.\n");
3064 rte_eth_dev_info_get(port_id, &dev_info);
3065 if ((dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VLAN_INSERT) == 0) {
3066 printf("Error: vlan insert is not supported by port %d\n",
3071 tx_vlan_reset(port_id);
3072 ports[port_id].dev_conf.txmode.offloads |= DEV_TX_OFFLOAD_VLAN_INSERT;
3073 ports[port_id].tx_vlan_id = vlan_id;
3077 tx_qinq_set(portid_t port_id, uint16_t vlan_id, uint16_t vlan_id_outer)
3080 struct rte_eth_dev_info dev_info;
3082 if (port_id_is_invalid(port_id, ENABLED_WARN))
3084 if (vlan_id_is_invalid(vlan_id))
3086 if (vlan_id_is_invalid(vlan_id_outer))
3089 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
3090 if (!(vlan_offload & ETH_VLAN_EXTEND_OFFLOAD)) {
3091 printf("Error, as QinQ hasn't been enabled.\n");
3094 rte_eth_dev_info_get(port_id, &dev_info);
3095 if ((dev_info.tx_offload_capa & DEV_TX_OFFLOAD_QINQ_INSERT) == 0) {
3096 printf("Error: qinq insert not supported by port %d\n",
3101 tx_vlan_reset(port_id);
3102 ports[port_id].dev_conf.txmode.offloads |= DEV_TX_OFFLOAD_QINQ_INSERT;
3103 ports[port_id].tx_vlan_id = vlan_id;
3104 ports[port_id].tx_vlan_id_outer = vlan_id_outer;
3108 tx_vlan_reset(portid_t port_id)
3110 if (port_id_is_invalid(port_id, ENABLED_WARN))
3112 ports[port_id].dev_conf.txmode.offloads &=
3113 ~(DEV_TX_OFFLOAD_VLAN_INSERT |
3114 DEV_TX_OFFLOAD_QINQ_INSERT);
3115 ports[port_id].tx_vlan_id = 0;
3116 ports[port_id].tx_vlan_id_outer = 0;
3120 tx_vlan_pvid_set(portid_t port_id, uint16_t vlan_id, int on)
3122 if (port_id_is_invalid(port_id, ENABLED_WARN))
3125 rte_eth_dev_set_vlan_pvid(port_id, vlan_id, on);
3129 set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value)
3132 uint8_t existing_mapping_found = 0;
3134 if (port_id_is_invalid(port_id, ENABLED_WARN))
3137 if (is_rx ? (rx_queue_id_is_invalid(queue_id)) : (tx_queue_id_is_invalid(queue_id)))
3140 if (map_value >= RTE_ETHDEV_QUEUE_STAT_CNTRS) {
3141 printf("map_value not in required range 0..%d\n",
3142 RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
3146 if (!is_rx) { /*then tx*/
3147 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
3148 if ((tx_queue_stats_mappings[i].port_id == port_id) &&
3149 (tx_queue_stats_mappings[i].queue_id == queue_id)) {
3150 tx_queue_stats_mappings[i].stats_counter_id = map_value;
3151 existing_mapping_found = 1;
3155 if (!existing_mapping_found) { /* A new additional mapping... */
3156 tx_queue_stats_mappings[nb_tx_queue_stats_mappings].port_id = port_id;
3157 tx_queue_stats_mappings[nb_tx_queue_stats_mappings].queue_id = queue_id;
3158 tx_queue_stats_mappings[nb_tx_queue_stats_mappings].stats_counter_id = map_value;
3159 nb_tx_queue_stats_mappings++;
3163 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
3164 if ((rx_queue_stats_mappings[i].port_id == port_id) &&
3165 (rx_queue_stats_mappings[i].queue_id == queue_id)) {
3166 rx_queue_stats_mappings[i].stats_counter_id = map_value;
3167 existing_mapping_found = 1;
3171 if (!existing_mapping_found) { /* A new additional mapping... */
3172 rx_queue_stats_mappings[nb_rx_queue_stats_mappings].port_id = port_id;
3173 rx_queue_stats_mappings[nb_rx_queue_stats_mappings].queue_id = queue_id;
3174 rx_queue_stats_mappings[nb_rx_queue_stats_mappings].stats_counter_id = map_value;
3175 nb_rx_queue_stats_mappings++;
3181 set_xstats_hide_zero(uint8_t on_off)
3183 xstats_hide_zero = on_off;
3187 print_fdir_mask(struct rte_eth_fdir_masks *mask)
3189 printf("\n vlan_tci: 0x%04x", rte_be_to_cpu_16(mask->vlan_tci_mask));
3191 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL)
3192 printf(", mac_addr: 0x%02x, tunnel_type: 0x%01x,"
3193 " tunnel_id: 0x%08x",
3194 mask->mac_addr_byte_mask, mask->tunnel_type_mask,
3195 rte_be_to_cpu_32(mask->tunnel_id_mask));
3196 else if (fdir_conf.mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
3197 printf(", src_ipv4: 0x%08x, dst_ipv4: 0x%08x",
3198 rte_be_to_cpu_32(mask->ipv4_mask.src_ip),
3199 rte_be_to_cpu_32(mask->ipv4_mask.dst_ip));
3201 printf("\n src_port: 0x%04x, dst_port: 0x%04x",
3202 rte_be_to_cpu_16(mask->src_port_mask),
3203 rte_be_to_cpu_16(mask->dst_port_mask));
3205 printf("\n src_ipv6: 0x%08x,0x%08x,0x%08x,0x%08x",
3206 rte_be_to_cpu_32(mask->ipv6_mask.src_ip[0]),
3207 rte_be_to_cpu_32(mask->ipv6_mask.src_ip[1]),
3208 rte_be_to_cpu_32(mask->ipv6_mask.src_ip[2]),
3209 rte_be_to_cpu_32(mask->ipv6_mask.src_ip[3]));
3211 printf("\n dst_ipv6: 0x%08x,0x%08x,0x%08x,0x%08x",
3212 rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[0]),
3213 rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[1]),
3214 rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[2]),
3215 rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[3]));
3222 print_fdir_flex_payload(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
3224 struct rte_eth_flex_payload_cfg *cfg;
3227 for (i = 0; i < flex_conf->nb_payloads; i++) {
3228 cfg = &flex_conf->flex_set[i];
3229 if (cfg->type == RTE_ETH_RAW_PAYLOAD)
3231 else if (cfg->type == RTE_ETH_L2_PAYLOAD)
3232 printf("\n L2_PAYLOAD: ");
3233 else if (cfg->type == RTE_ETH_L3_PAYLOAD)
3234 printf("\n L3_PAYLOAD: ");
3235 else if (cfg->type == RTE_ETH_L4_PAYLOAD)
3236 printf("\n L4_PAYLOAD: ");
3238 printf("\n UNKNOWN PAYLOAD(%u): ", cfg->type);
3239 for (j = 0; j < num; j++)
3240 printf(" %-5u", cfg->src_offset[j]);
3246 flowtype_to_str(uint16_t flow_type)
3248 struct flow_type_info {
3254 static struct flow_type_info flowtype_str_table[] = {
3255 {"raw", RTE_ETH_FLOW_RAW},
3256 {"ipv4", RTE_ETH_FLOW_IPV4},
3257 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
3258 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
3259 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
3260 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
3261 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
3262 {"ipv6", RTE_ETH_FLOW_IPV6},
3263 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
3264 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
3265 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
3266 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
3267 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
3268 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
3269 {"port", RTE_ETH_FLOW_PORT},
3270 {"vxlan", RTE_ETH_FLOW_VXLAN},
3271 {"geneve", RTE_ETH_FLOW_GENEVE},
3272 {"nvgre", RTE_ETH_FLOW_NVGRE},
3273 {"vxlan-gpe", RTE_ETH_FLOW_VXLAN_GPE},
3276 for (i = 0; i < RTE_DIM(flowtype_str_table); i++) {
3277 if (flowtype_str_table[i].ftype == flow_type)
3278 return flowtype_str_table[i].str;
3285 print_fdir_flex_mask(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
3287 struct rte_eth_fdir_flex_mask *mask;
3291 for (i = 0; i < flex_conf->nb_flexmasks; i++) {
3292 mask = &flex_conf->flex_mask[i];
3293 p = flowtype_to_str(mask->flow_type);
3294 printf("\n %s:\t", p ? p : "unknown");
3295 for (j = 0; j < num; j++)
3296 printf(" %02x", mask->mask[j]);
3302 print_fdir_flow_type(uint32_t flow_types_mask)
3307 for (i = RTE_ETH_FLOW_UNKNOWN; i < RTE_ETH_FLOW_MAX; i++) {
3308 if (!(flow_types_mask & (1 << i)))
3310 p = flowtype_to_str(i);
3320 fdir_get_infos(portid_t port_id)
3322 struct rte_eth_fdir_stats fdir_stat;
3323 struct rte_eth_fdir_info fdir_info;
3326 static const char *fdir_stats_border = "########################";
3328 if (port_id_is_invalid(port_id, ENABLED_WARN))
3330 ret = rte_eth_dev_filter_supported(port_id, RTE_ETH_FILTER_FDIR);
3332 printf("\n FDIR is not supported on port %-2d\n",
3337 memset(&fdir_info, 0, sizeof(fdir_info));
3338 rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
3339 RTE_ETH_FILTER_INFO, &fdir_info);
3340 memset(&fdir_stat, 0, sizeof(fdir_stat));
3341 rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
3342 RTE_ETH_FILTER_STATS, &fdir_stat);
3343 printf("\n %s FDIR infos for port %-2d %s\n",
3344 fdir_stats_border, port_id, fdir_stats_border);
3346 if (fdir_info.mode == RTE_FDIR_MODE_PERFECT)
3347 printf(" PERFECT\n");
3348 else if (fdir_info.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN)
3349 printf(" PERFECT-MAC-VLAN\n");
3350 else if (fdir_info.mode == RTE_FDIR_MODE_PERFECT_TUNNEL)
3351 printf(" PERFECT-TUNNEL\n");
3352 else if (fdir_info.mode == RTE_FDIR_MODE_SIGNATURE)
3353 printf(" SIGNATURE\n");
3355 printf(" DISABLE\n");
3356 if (fdir_info.mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN
3357 && fdir_info.mode != RTE_FDIR_MODE_PERFECT_TUNNEL) {
3358 printf(" SUPPORTED FLOW TYPE: ");
3359 print_fdir_flow_type(fdir_info.flow_types_mask[0]);
3361 printf(" FLEX PAYLOAD INFO:\n");
3362 printf(" max_len: %-10"PRIu32" payload_limit: %-10"PRIu32"\n"
3363 " payload_unit: %-10"PRIu32" payload_seg: %-10"PRIu32"\n"
3364 " bitmask_unit: %-10"PRIu32" bitmask_num: %-10"PRIu32"\n",
3365 fdir_info.max_flexpayload, fdir_info.flex_payload_limit,
3366 fdir_info.flex_payload_unit,
3367 fdir_info.max_flex_payload_segment_num,
3368 fdir_info.flex_bitmask_unit, fdir_info.max_flex_bitmask_num);
3370 print_fdir_mask(&fdir_info.mask);
3371 if (fdir_info.flex_conf.nb_payloads > 0) {
3372 printf(" FLEX PAYLOAD SRC OFFSET:");
3373 print_fdir_flex_payload(&fdir_info.flex_conf, fdir_info.max_flexpayload);
3375 if (fdir_info.flex_conf.nb_flexmasks > 0) {
3376 printf(" FLEX MASK CFG:");
3377 print_fdir_flex_mask(&fdir_info.flex_conf, fdir_info.max_flexpayload);
3379 printf(" guarant_count: %-10"PRIu32" best_count: %"PRIu32"\n",
3380 fdir_stat.guarant_cnt, fdir_stat.best_cnt);
3381 printf(" guarant_space: %-10"PRIu32" best_space: %"PRIu32"\n",
3382 fdir_info.guarant_spc, fdir_info.best_spc);
3383 printf(" collision: %-10"PRIu32" free: %"PRIu32"\n"
3384 " maxhash: %-10"PRIu32" maxlen: %"PRIu32"\n"
3385 " add: %-10"PRIu64" remove: %"PRIu64"\n"
3386 " f_add: %-10"PRIu64" f_remove: %"PRIu64"\n",
3387 fdir_stat.collision, fdir_stat.free,
3388 fdir_stat.maxhash, fdir_stat.maxlen,
3389 fdir_stat.add, fdir_stat.remove,
3390 fdir_stat.f_add, fdir_stat.f_remove);
3391 printf(" %s############################%s\n",
3392 fdir_stats_border, fdir_stats_border);
3396 fdir_set_flex_mask(portid_t port_id, struct rte_eth_fdir_flex_mask *cfg)
3398 struct rte_port *port;
3399 struct rte_eth_fdir_flex_conf *flex_conf;
3402 port = &ports[port_id];
3403 flex_conf = &port->dev_conf.fdir_conf.flex_conf;
3404 for (i = 0; i < RTE_ETH_FLOW_MAX; i++) {
3405 if (cfg->flow_type == flex_conf->flex_mask[i].flow_type) {
3410 if (i >= RTE_ETH_FLOW_MAX) {
3411 if (flex_conf->nb_flexmasks < RTE_DIM(flex_conf->flex_mask)) {
3412 idx = flex_conf->nb_flexmasks;
3413 flex_conf->nb_flexmasks++;
3415 printf("The flex mask table is full. Can not set flex"
3416 " mask for flow_type(%u).", cfg->flow_type);
3420 rte_memcpy(&flex_conf->flex_mask[idx],
3422 sizeof(struct rte_eth_fdir_flex_mask));
3426 fdir_set_flex_payload(portid_t port_id, struct rte_eth_flex_payload_cfg *cfg)
3428 struct rte_port *port;
3429 struct rte_eth_fdir_flex_conf *flex_conf;
3432 port = &ports[port_id];
3433 flex_conf = &port->dev_conf.fdir_conf.flex_conf;
3434 for (i = 0; i < RTE_ETH_PAYLOAD_MAX; i++) {
3435 if (cfg->type == flex_conf->flex_set[i].type) {
3440 if (i >= RTE_ETH_PAYLOAD_MAX) {
3441 if (flex_conf->nb_payloads < RTE_DIM(flex_conf->flex_set)) {
3442 idx = flex_conf->nb_payloads;
3443 flex_conf->nb_payloads++;
3445 printf("The flex payload table is full. Can not set"
3446 " flex payload for type(%u).", cfg->type);
3450 rte_memcpy(&flex_conf->flex_set[idx],
3452 sizeof(struct rte_eth_flex_payload_cfg));
3457 set_vf_traffic(portid_t port_id, uint8_t is_rx, uint16_t vf, uint8_t on)
3459 #ifdef RTE_LIBRTE_IXGBE_PMD
3463 diag = rte_pmd_ixgbe_set_vf_rx(port_id, vf, on);
3465 diag = rte_pmd_ixgbe_set_vf_tx(port_id, vf, on);
3469 printf("rte_pmd_ixgbe_set_vf_%s for port_id=%d failed diag=%d\n",
3470 is_rx ? "rx" : "tx", port_id, diag);
3473 printf("VF %s setting not supported for port %d\n",
3474 is_rx ? "Rx" : "Tx", port_id);
3480 set_queue_rate_limit(portid_t port_id, uint16_t queue_idx, uint16_t rate)
3483 struct rte_eth_link link;
3485 if (port_id_is_invalid(port_id, ENABLED_WARN))
3487 rte_eth_link_get_nowait(port_id, &link);
3488 if (rate > link.link_speed) {
3489 printf("Invalid rate value:%u bigger than link speed: %u\n",
3490 rate, link.link_speed);
3493 diag = rte_eth_set_queue_rate_limit(port_id, queue_idx, rate);
3496 printf("rte_eth_set_queue_rate_limit for port_id=%d failed diag=%d\n",
3502 set_vf_rate_limit(portid_t port_id, uint16_t vf, uint16_t rate, uint64_t q_msk)
3504 int diag = -ENOTSUP;
3508 RTE_SET_USED(q_msk);
3510 #ifdef RTE_LIBRTE_IXGBE_PMD
3511 if (diag == -ENOTSUP)
3512 diag = rte_pmd_ixgbe_set_vf_rate_limit(port_id, vf, rate,
3515 #ifdef RTE_LIBRTE_BNXT_PMD
3516 if (diag == -ENOTSUP)
3517 diag = rte_pmd_bnxt_set_vf_rate_limit(port_id, vf, rate, q_msk);
3522 printf("set_vf_rate_limit for port_id=%d failed diag=%d\n",
3528 * Functions to manage the set of filtered Multicast MAC addresses.
3530 * A pool of filtered multicast MAC addresses is associated with each port.
3531 * The pool is allocated in chunks of MCAST_POOL_INC multicast addresses.
3532 * The address of the pool and the number of valid multicast MAC addresses
3533 * recorded in the pool are stored in the fields "mc_addr_pool" and
3534 * "mc_addr_nb" of the "rte_port" data structure.
3536 * The function "rte_eth_dev_set_mc_addr_list" of the PMDs API imposes
3537 * to be supplied a contiguous array of multicast MAC addresses.
3538 * To comply with this constraint, the set of multicast addresses recorded
3539 * into the pool are systematically compacted at the beginning of the pool.
3540 * Hence, when a multicast address is removed from the pool, all following
3541 * addresses, if any, are copied back to keep the set contiguous.
3543 #define MCAST_POOL_INC 32
3546 mcast_addr_pool_extend(struct rte_port *port)
3548 struct ether_addr *mc_pool;
3549 size_t mc_pool_size;
3552 * If a free entry is available at the end of the pool, just
3553 * increment the number of recorded multicast addresses.
3555 if ((port->mc_addr_nb % MCAST_POOL_INC) != 0) {
3561 * [re]allocate a pool with MCAST_POOL_INC more entries.
3562 * The previous test guarantees that port->mc_addr_nb is a multiple
3563 * of MCAST_POOL_INC.
3565 mc_pool_size = sizeof(struct ether_addr) * (port->mc_addr_nb +
3567 mc_pool = (struct ether_addr *) realloc(port->mc_addr_pool,
3569 if (mc_pool == NULL) {
3570 printf("allocation of pool of %u multicast addresses failed\n",
3571 port->mc_addr_nb + MCAST_POOL_INC);
3575 port->mc_addr_pool = mc_pool;
3582 mcast_addr_pool_remove(struct rte_port *port, uint32_t addr_idx)
3585 if (addr_idx == port->mc_addr_nb) {
3586 /* No need to recompact the set of multicast addressses. */
3587 if (port->mc_addr_nb == 0) {
3588 /* free the pool of multicast addresses. */
3589 free(port->mc_addr_pool);
3590 port->mc_addr_pool = NULL;
3594 memmove(&port->mc_addr_pool[addr_idx],
3595 &port->mc_addr_pool[addr_idx + 1],
3596 sizeof(struct ether_addr) * (port->mc_addr_nb - addr_idx));
3600 eth_port_multicast_addr_list_set(portid_t port_id)
3602 struct rte_port *port;
3605 port = &ports[port_id];
3606 diag = rte_eth_dev_set_mc_addr_list(port_id, port->mc_addr_pool,
3610 printf("rte_eth_dev_set_mc_addr_list(port=%d, nb=%u) failed. diag=%d\n",
3611 port->mc_addr_nb, port_id, -diag);
3615 mcast_addr_add(portid_t port_id, struct ether_addr *mc_addr)
3617 struct rte_port *port;
3620 if (port_id_is_invalid(port_id, ENABLED_WARN))
3623 port = &ports[port_id];
3626 * Check that the added multicast MAC address is not already recorded
3627 * in the pool of multicast addresses.
3629 for (i = 0; i < port->mc_addr_nb; i++) {
3630 if (is_same_ether_addr(mc_addr, &port->mc_addr_pool[i])) {
3631 printf("multicast address already filtered by port\n");
3636 if (mcast_addr_pool_extend(port) != 0)
3638 ether_addr_copy(mc_addr, &port->mc_addr_pool[i]);
3639 eth_port_multicast_addr_list_set(port_id);
3643 mcast_addr_remove(portid_t port_id, struct ether_addr *mc_addr)
3645 struct rte_port *port;
3648 if (port_id_is_invalid(port_id, ENABLED_WARN))
3651 port = &ports[port_id];
3654 * Search the pool of multicast MAC addresses for the removed address.
3656 for (i = 0; i < port->mc_addr_nb; i++) {
3657 if (is_same_ether_addr(mc_addr, &port->mc_addr_pool[i]))
3660 if (i == port->mc_addr_nb) {
3661 printf("multicast address not filtered by port %d\n", port_id);
3665 mcast_addr_pool_remove(port, i);
3666 eth_port_multicast_addr_list_set(port_id);
3670 port_dcb_info_display(portid_t port_id)
3672 struct rte_eth_dcb_info dcb_info;
3675 static const char *border = "================";
3677 if (port_id_is_invalid(port_id, ENABLED_WARN))
3680 ret = rte_eth_dev_get_dcb_info(port_id, &dcb_info);
3682 printf("\n Failed to get dcb infos on port %-2d\n",
3686 printf("\n %s DCB infos for port %-2d %s\n", border, port_id, border);
3687 printf(" TC NUMBER: %d\n", dcb_info.nb_tcs);
3689 for (i = 0; i < dcb_info.nb_tcs; i++)
3691 printf("\n Priority : ");
3692 for (i = 0; i < dcb_info.nb_tcs; i++)
3693 printf("\t%4d", dcb_info.prio_tc[i]);
3694 printf("\n BW percent :");
3695 for (i = 0; i < dcb_info.nb_tcs; i++)
3696 printf("\t%4d%%", dcb_info.tc_bws[i]);
3697 printf("\n RXQ base : ");
3698 for (i = 0; i < dcb_info.nb_tcs; i++)
3699 printf("\t%4d", dcb_info.tc_queue.tc_rxq[0][i].base);
3700 printf("\n RXQ number :");
3701 for (i = 0; i < dcb_info.nb_tcs; i++)
3702 printf("\t%4d", dcb_info.tc_queue.tc_rxq[0][i].nb_queue);
3703 printf("\n TXQ base : ");
3704 for (i = 0; i < dcb_info.nb_tcs; i++)
3705 printf("\t%4d", dcb_info.tc_queue.tc_txq[0][i].base);
3706 printf("\n TXQ number :");
3707 for (i = 0; i < dcb_info.nb_tcs; i++)
3708 printf("\t%4d", dcb_info.tc_queue.tc_txq[0][i].nb_queue);
3713 open_file(const char *file_path, uint32_t *size)
3715 int fd = open(file_path, O_RDONLY);
3717 uint8_t *buf = NULL;
3725 printf("%s: Failed to open %s\n", __func__, file_path);
3729 if ((fstat(fd, &st_buf) != 0) || (!S_ISREG(st_buf.st_mode))) {
3731 printf("%s: File operations failed\n", __func__);
3735 pkg_size = st_buf.st_size;
3738 printf("%s: File operations failed\n", __func__);
3742 buf = (uint8_t *)malloc(pkg_size);
3745 printf("%s: Failed to malloc memory\n", __func__);
3749 ret = read(fd, buf, pkg_size);
3752 printf("%s: File read operation failed\n", __func__);
3766 save_file(const char *file_path, uint8_t *buf, uint32_t size)
3768 FILE *fh = fopen(file_path, "wb");
3771 printf("%s: Failed to open %s\n", __func__, file_path);
3775 if (fwrite(buf, 1, size, fh) != size) {
3777 printf("%s: File write operation failed\n", __func__);
3787 close_file(uint8_t *buf)
3798 port_queue_region_info_display(portid_t port_id, void *buf)
3800 #ifdef RTE_LIBRTE_I40E_PMD
3802 struct rte_pmd_i40e_queue_regions *info =
3803 (struct rte_pmd_i40e_queue_regions *)buf;
3804 static const char *queue_region_info_stats_border = "-------";
3806 if (!info->queue_region_number)
3807 printf("there is no region has been set before");
3809 printf("\n %s All queue region info for port=%2d %s",
3810 queue_region_info_stats_border, port_id,
3811 queue_region_info_stats_border);
3812 printf("\n queue_region_number: %-14u \n",
3813 info->queue_region_number);
3815 for (i = 0; i < info->queue_region_number; i++) {
3816 printf("\n region_id: %-14u queue_number: %-14u "
3817 "queue_start_index: %-14u \n",
3818 info->region[i].region_id,
3819 info->region[i].queue_num,
3820 info->region[i].queue_start_index);
3822 printf(" user_priority_num is %-14u :",
3823 info->region[i].user_priority_num);
3824 for (j = 0; j < info->region[i].user_priority_num; j++)
3825 printf(" %-14u ", info->region[i].user_priority[j]);
3827 printf("\n flowtype_num is %-14u :",
3828 info->region[i].flowtype_num);
3829 for (j = 0; j < info->region[i].flowtype_num; j++)
3830 printf(" %-14u ", info->region[i].hw_flowtype[j]);
3833 RTE_SET_USED(port_id);