1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation.
3 * Copyright(c) 2014 6WIND S.A.
15 #include <sys/socket.h>
17 #include <netinet/in.h>
19 #include <sys/queue.h>
21 #include <rte_common.h>
22 #include <rte_byteorder.h>
24 #include <rte_debug.h>
25 #include <rte_cycles.h>
26 #include <rte_memory.h>
27 #include <rte_memzone.h>
28 #include <rte_malloc.h>
29 #include <rte_launch.h>
31 #include <rte_per_lcore.h>
32 #include <rte_lcore.h>
33 #include <rte_atomic.h>
34 #include <rte_branch_prediction.h>
36 #include <rte_mempool.h>
37 #include <rte_interrupts.h>
39 #include <rte_ether.h>
40 #include <rte_ethdev.h>
41 #include <rte_string_fns.h>
42 #include <rte_devargs.h>
46 #include <cmdline_rdline.h>
47 #include <cmdline_parse.h>
48 #include <cmdline_parse_num.h>
49 #include <cmdline_parse_string.h>
50 #include <cmdline_parse_ipaddr.h>
51 #include <cmdline_parse_etheraddr.h>
52 #include <cmdline_socket.h>
54 #ifdef RTE_LIBRTE_PMD_BOND
55 #include <rte_eth_bond.h>
56 #include <rte_eth_bond_8023ad.h>
58 #if defined RTE_LIBRTE_DPAA_BUS && defined RTE_LIBRTE_DPAA_PMD
59 #include <rte_pmd_dpaa.h>
61 #ifdef RTE_LIBRTE_IXGBE_PMD
62 #include <rte_pmd_ixgbe.h>
64 #ifdef RTE_LIBRTE_I40E_PMD
65 #include <rte_pmd_i40e.h>
67 #ifdef RTE_LIBRTE_BNXT_PMD
68 #include <rte_pmd_bnxt.h>
71 #include "cmdline_mtr.h"
72 #include "cmdline_tm.h"
75 static struct cmdline *testpmd_cl;
77 static void cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue);
79 /* *** Help command with introduction. *** */
80 struct cmd_help_brief_result {
81 cmdline_fixed_string_t help;
84 static void cmd_help_brief_parsed(__attribute__((unused)) void *parsed_result,
86 __attribute__((unused)) void *data)
91 "Help is available for the following sections:\n\n"
92 " help control : Start and stop forwarding.\n"
93 " help display : Displaying port, stats and config "
95 " help config : Configuration information.\n"
96 " help ports : Configuring ports.\n"
97 " help registers : Reading and setting port registers.\n"
98 " help filters : Filters configuration help.\n"
99 " help traffic_management : Traffic Management commmands.\n"
100 " help devices : Device related cmds.\n"
101 " help all : All of the above sections.\n\n"
106 cmdline_parse_token_string_t cmd_help_brief_help =
107 TOKEN_STRING_INITIALIZER(struct cmd_help_brief_result, help, "help");
109 cmdline_parse_inst_t cmd_help_brief = {
110 .f = cmd_help_brief_parsed,
112 .help_str = "help: Show help",
114 (void *)&cmd_help_brief_help,
119 /* *** Help command with help sections. *** */
120 struct cmd_help_long_result {
121 cmdline_fixed_string_t help;
122 cmdline_fixed_string_t section;
125 static void cmd_help_long_parsed(void *parsed_result,
127 __attribute__((unused)) void *data)
130 struct cmd_help_long_result *res = parsed_result;
132 if (!strcmp(res->section, "all"))
135 if (show_all || !strcmp(res->section, "control")) {
140 "Control forwarding:\n"
141 "-------------------\n\n"
144 " Start packet forwarding with current configuration.\n\n"
147 " Start packet forwarding with current config"
148 " after sending one burst of packets.\n\n"
151 " Stop packet forwarding, and display accumulated"
155 " Quit to prompt.\n\n"
159 if (show_all || !strcmp(res->section, "display")) {
167 "show port (info|stats|summary|xstats|fdir|stat_qmap|dcb_tc|cap) (port_id|all)\n"
168 " Display information for port_id, or all.\n\n"
170 "show port X rss reta (size) (mask0,mask1,...)\n"
171 " Display the rss redirection table entry indicated"
172 " by masks on port X. size is used to indicate the"
173 " hardware supported reta size\n\n"
175 "show port (port_id) rss-hash [key]\n"
176 " Display the RSS hash functions and RSS hash key of port\n\n"
178 "clear port (info|stats|xstats|fdir|stat_qmap) (port_id|all)\n"
179 " Clear information for port_id, or all.\n\n"
181 "show (rxq|txq) info (port_id) (queue_id)\n"
182 " Display information for configured RX/TX queue.\n\n"
184 "show config (rxtx|cores|fwd|txpkts)\n"
185 " Display the given configuration.\n\n"
187 "read rxd (port_id) (queue_id) (rxd_id)\n"
188 " Display an RX descriptor of a port RX queue.\n\n"
190 "read txd (port_id) (queue_id) (txd_id)\n"
191 " Display a TX descriptor of a port TX queue.\n\n"
193 "ddp get list (port_id)\n"
194 " Get ddp profile info list\n\n"
196 "ddp get info (profile_path)\n"
197 " Get ddp profile information.\n\n"
199 "show vf stats (port_id) (vf_id)\n"
200 " Display a VF's statistics.\n\n"
202 "clear vf stats (port_id) (vf_id)\n"
203 " Reset a VF's statistics.\n\n"
205 "show port (port_id) pctype mapping\n"
206 " Get flow ptype to pctype mapping on a port\n\n"
208 "show port meter stats (port_id) (meter_id) (clear)\n"
209 " Get meter stats on a port\n\n"
211 "show fwd stats all\n"
212 " Display statistics for all fwd engines.\n\n"
214 "clear fwd stats all\n"
215 " Clear statistics for all fwd engines.\n\n"
217 "show port (port_id) rx_offload capabilities\n"
218 " List all per queue and per port Rx offloading"
219 " capabilities of a port\n\n"
221 "show port (port_id) rx_offload configuration\n"
222 " List port level and all queue level"
223 " Rx offloading configuration\n\n"
225 "show port (port_id) tx_offload capabilities\n"
226 " List all per queue and per port"
227 " Tx offloading capabilities of a port\n\n"
229 "show port (port_id) tx_offload configuration\n"
230 " List port level and all queue level"
231 " Tx offloading configuration\n\n"
233 "show port (port_id) tx_metadata\n"
234 " Show Tx metadata value set"
235 " for a specific port\n\n"
237 "show port (port_id) ptypes\n"
238 " Show port supported ptypes"
239 " for a specific port\n\n"
241 "show device info (<identifier>|all)"
242 " Show general information about devices probed.\n\n"
246 if (show_all || !strcmp(res->section, "config")) {
252 "Configuration changes only become active when"
253 " forwarding is started/restarted.\n\n"
256 " Reset forwarding to the default configuration.\n\n"
258 "set verbose (level)\n"
259 " Set the debug verbosity level X.\n\n"
261 "set log global|(type) (level)\n"
262 " Set the log level.\n\n"
265 " Set number of ports.\n\n"
268 " Set number of cores.\n\n"
270 "set coremask (mask)\n"
271 " Set the forwarding cores hexadecimal mask.\n\n"
273 "set portmask (mask)\n"
274 " Set the forwarding ports hexadecimal mask.\n\n"
277 " Set number of packets per burst.\n\n"
279 "set burst tx delay (microseconds) retry (num)\n"
280 " Set the transmit delay time and number of retries,"
281 " effective when retry is enabled.\n\n"
283 "set txpkts (x[,y]*)\n"
284 " Set the length of each segment of TXONLY"
285 " and optionally CSUM packets.\n\n"
287 "set txsplit (off|on|rand)\n"
288 " Set the split policy for the TX packets."
289 " Right now only applicable for CSUM and TXONLY"
292 "set corelist (x[,y]*)\n"
293 " Set the list of forwarding cores.\n\n"
295 "set portlist (x[,y]*)\n"
296 " Set the list of forwarding ports.\n\n"
298 "set port setup on (iterator|event)\n"
299 " Select how attached port is retrieved for setup.\n\n"
301 "set tx loopback (port_id) (on|off)\n"
302 " Enable or disable tx loopback.\n\n"
304 "set all queues drop (port_id) (on|off)\n"
305 " Set drop enable bit for all queues.\n\n"
307 "set vf split drop (port_id) (vf_id) (on|off)\n"
308 " Set split drop enable bit for a VF from the PF.\n\n"
310 "set vf mac antispoof (port_id) (vf_id) (on|off).\n"
311 " Set MAC antispoof for a VF from the PF.\n\n"
313 "set macsec offload (port_id) on encrypt (on|off) replay-protect (on|off)\n"
314 " Enable MACsec offload.\n\n"
316 "set macsec offload (port_id) off\n"
317 " Disable MACsec offload.\n\n"
319 "set macsec sc (tx|rx) (port_id) (mac) (pi)\n"
320 " Configure MACsec secure connection (SC).\n\n"
322 "set macsec sa (tx|rx) (port_id) (idx) (an) (pn) (key)\n"
323 " Configure MACsec secure association (SA).\n\n"
325 "set vf broadcast (port_id) (vf_id) (on|off)\n"
326 " Set VF broadcast for a VF from the PF.\n\n"
328 "vlan set strip (on|off) (port_id)\n"
329 " Set the VLAN strip on a port.\n\n"
331 "vlan set stripq (on|off) (port_id,queue_id)\n"
332 " Set the VLAN strip for a queue on a port.\n\n"
334 "set vf vlan stripq (port_id) (vf_id) (on|off)\n"
335 " Set the VLAN strip for all queues in a pool for a VF from the PF.\n\n"
337 "set vf vlan insert (port_id) (vf_id) (vlan_id)\n"
338 " Set VLAN insert for a VF from the PF.\n\n"
340 "set vf vlan antispoof (port_id) (vf_id) (on|off)\n"
341 " Set VLAN antispoof for a VF from the PF.\n\n"
343 "set vf vlan tag (port_id) (vf_id) (on|off)\n"
344 " Set VLAN tag for a VF from the PF.\n\n"
346 "set vf tx max-bandwidth (port_id) (vf_id) (bandwidth)\n"
347 " Set a VF's max bandwidth(Mbps).\n\n"
349 "set vf tc tx min-bandwidth (port_id) (vf_id) (bw1, bw2, ...)\n"
350 " Set all TCs' min bandwidth(%%) on a VF.\n\n"
352 "set vf tc tx max-bandwidth (port_id) (vf_id) (tc_no) (bandwidth)\n"
353 " Set a TC's max bandwidth(Mbps) on a VF.\n\n"
355 "set tx strict-link-priority (port_id) (tc_bitmap)\n"
356 " Set some TCs' strict link priority mode on a physical port.\n\n"
358 "set tc tx min-bandwidth (port_id) (bw1, bw2, ...)\n"
359 " Set all TCs' min bandwidth(%%) for all PF and VFs.\n\n"
361 "vlan set filter (on|off) (port_id)\n"
362 " Set the VLAN filter on a port.\n\n"
364 "vlan set qinq (on|off) (port_id)\n"
365 " Set the VLAN QinQ (extended queue in queue)"
368 "vlan set (inner|outer) tpid (value) (port_id)\n"
369 " Set the VLAN TPID for Packet Filtering on"
372 "rx_vlan add (vlan_id|all) (port_id)\n"
373 " Add a vlan_id, or all identifiers, to the set"
374 " of VLAN identifiers filtered by port_id.\n\n"
376 "rx_vlan rm (vlan_id|all) (port_id)\n"
377 " Remove a vlan_id, or all identifiers, from the set"
378 " of VLAN identifiers filtered by port_id.\n\n"
380 "rx_vlan add (vlan_id) port (port_id) vf (vf_mask)\n"
381 " Add a vlan_id, to the set of VLAN identifiers"
382 "filtered for VF(s) from port_id.\n\n"
384 "rx_vlan rm (vlan_id) port (port_id) vf (vf_mask)\n"
385 " Remove a vlan_id, to the set of VLAN identifiers"
386 "filtered for VF(s) from port_id.\n\n"
388 "tunnel_filter add (port_id) (outer_mac) (inner_mac) (ip_addr) "
389 "(inner_vlan) (vxlan|nvgre|ipingre|vxlan-gpe) (imac-ivlan|imac-ivlan-tenid|"
390 "imac-tenid|imac|omac-imac-tenid|oip|iip) (tenant_id) (queue_id)\n"
391 " add a tunnel filter of a port.\n\n"
393 "tunnel_filter rm (port_id) (outer_mac) (inner_mac) (ip_addr) "
394 "(inner_vlan) (vxlan|nvgre|ipingre|vxlan-gpe) (imac-ivlan|imac-ivlan-tenid|"
395 "imac-tenid|imac|omac-imac-tenid|oip|iip) (tenant_id) (queue_id)\n"
396 " remove a tunnel filter of a port.\n\n"
398 "rx_vxlan_port add (udp_port) (port_id)\n"
399 " Add an UDP port for VXLAN packet filter on a port\n\n"
401 "rx_vxlan_port rm (udp_port) (port_id)\n"
402 " Remove an UDP port for VXLAN packet filter on a port\n\n"
404 "tx_vlan set (port_id) vlan_id[, vlan_id_outer]\n"
405 " Set hardware insertion of VLAN IDs (single or double VLAN "
406 "depends on the number of VLAN IDs) in packets sent on a port.\n\n"
408 "tx_vlan set pvid port_id vlan_id (on|off)\n"
409 " Set port based TX VLAN insertion.\n\n"
411 "tx_vlan reset (port_id)\n"
412 " Disable hardware insertion of a VLAN header in"
413 " packets sent on a port.\n\n"
415 "csum set (ip|udp|tcp|sctp|outer-ip|outer-udp) (hw|sw) (port_id)\n"
416 " Select hardware or software calculation of the"
417 " checksum when transmitting a packet using the"
418 " csum forward engine.\n"
419 " ip|udp|tcp|sctp always concern the inner layer.\n"
420 " outer-ip concerns the outer IP layer in"
421 " outer-udp concerns the outer UDP layer in"
422 " case the packet is recognized as a tunnel packet by"
423 " the forward engine (vxlan, gre and ipip are supported)\n"
424 " Please check the NIC datasheet for HW limits.\n\n"
426 "csum parse-tunnel (on|off) (tx_port_id)\n"
427 " If disabled, treat tunnel packets as non-tunneled"
428 " packets (treat inner headers as payload). The port\n"
429 " argument is the port used for TX in csum forward"
432 "csum show (port_id)\n"
433 " Display tx checksum offload configuration\n\n"
435 "tso set (segsize) (portid)\n"
436 " Enable TCP Segmentation Offload in csum forward"
438 " Please check the NIC datasheet for HW limits.\n\n"
441 " Display the status of TCP Segmentation Offload.\n\n"
443 "set port (port_id) gro on|off\n"
444 " Enable or disable Generic Receive Offload in"
445 " csum forwarding engine.\n\n"
447 "show port (port_id) gro\n"
448 " Display GRO configuration.\n\n"
450 "set gro flush (cycles)\n"
451 " Set the cycle to flush GROed packets from"
452 " reassembly tables.\n\n"
454 "set port (port_id) gso (on|off)"
455 " Enable or disable Generic Segmentation Offload in"
456 " csum forwarding engine.\n\n"
458 "set gso segsz (length)\n"
459 " Set max packet length for output GSO segments,"
460 " including packet header and payload.\n\n"
462 "show port (port_id) gso\n"
463 " Show GSO configuration.\n\n"
466 " Set packet forwarding mode.\n\n"
468 "mac_addr add (port_id) (XX:XX:XX:XX:XX:XX)\n"
469 " Add a MAC address on port_id.\n\n"
471 "mac_addr remove (port_id) (XX:XX:XX:XX:XX:XX)\n"
472 " Remove a MAC address from port_id.\n\n"
474 "mac_addr set (port_id) (XX:XX:XX:XX:XX:XX)\n"
475 " Set the default MAC address for port_id.\n\n"
477 "mac_addr add port (port_id) vf (vf_id) (mac_address)\n"
478 " Add a MAC address for a VF on the port.\n\n"
480 "set vf mac addr (port_id) (vf_id) (XX:XX:XX:XX:XX:XX)\n"
481 " Set the MAC address for a VF from the PF.\n\n"
483 "set eth-peer (port_id) (peer_addr)\n"
484 " set the peer address for certain port.\n\n"
486 "set port (port_id) uta (mac_address|all) (on|off)\n"
487 " Add/Remove a or all unicast hash filter(s)"
490 "set promisc (port_id|all) (on|off)\n"
491 " Set the promiscuous mode on port_id, or all.\n\n"
493 "set allmulti (port_id|all) (on|off)\n"
494 " Set the allmulti mode on port_id, or all.\n\n"
496 "set vf promisc (port_id) (vf_id) (on|off)\n"
497 " Set unicast promiscuous mode for a VF from the PF.\n\n"
499 "set vf allmulti (port_id) (vf_id) (on|off)\n"
500 " Set multicast promiscuous mode for a VF from the PF.\n\n"
502 "set flow_ctrl rx (on|off) tx (on|off) (high_water)"
503 " (low_water) (pause_time) (send_xon) mac_ctrl_frame_fwd"
504 " (on|off) autoneg (on|off) (port_id)\n"
505 "set flow_ctrl rx (on|off) (portid)\n"
506 "set flow_ctrl tx (on|off) (portid)\n"
507 "set flow_ctrl high_water (high_water) (portid)\n"
508 "set flow_ctrl low_water (low_water) (portid)\n"
509 "set flow_ctrl pause_time (pause_time) (portid)\n"
510 "set flow_ctrl send_xon (send_xon) (portid)\n"
511 "set flow_ctrl mac_ctrl_frame_fwd (on|off) (portid)\n"
512 "set flow_ctrl autoneg (on|off) (port_id)\n"
513 " Set the link flow control parameter on a port.\n\n"
515 "set pfc_ctrl rx (on|off) tx (on|off) (high_water)"
516 " (low_water) (pause_time) (priority) (port_id)\n"
517 " Set the priority flow control parameter on a"
520 "set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)\n"
521 " Set statistics mapping (qmapping 0..15) for RX/TX"
523 " e.g., 'set stat_qmap rx 0 2 5' sets rx queue 2"
524 " on port 0 to mapping 5.\n\n"
526 "set xstats-hide-zero on|off\n"
527 " Set the option to hide the zero values"
528 " for xstats display.\n"
530 "set port (port_id) vf (vf_id) rx|tx on|off\n"
531 " Enable/Disable a VF receive/tranmit from a port\n\n"
533 "set port (port_id) vf (vf_id) (mac_addr)"
534 " (exact-mac#exact-mac-vlan#hashmac|hashmac-vlan) on|off\n"
535 " Add/Remove unicast or multicast MAC addr filter"
538 "set port (port_id) vf (vf_id) rxmode (AUPE|ROPE|BAM"
540 " AUPE:accepts untagged VLAN;"
541 "ROPE:accept unicast hash\n\n"
542 " BAM:accepts broadcast packets;"
543 "MPE:accepts all multicast packets\n\n"
544 " Enable/Disable a VF receive mode of a port\n\n"
546 "set port (port_id) queue (queue_id) rate (rate_num)\n"
547 " Set rate limit for a queue of a port\n\n"
549 "set port (port_id) vf (vf_id) rate (rate_num) "
550 "queue_mask (queue_mask_value)\n"
551 " Set rate limit for queues in VF of a port\n\n"
553 "set port (port_id) mirror-rule (rule_id)"
554 " (pool-mirror-up|pool-mirror-down|vlan-mirror)"
555 " (poolmask|vlanid[,vlanid]*) dst-pool (pool_id) (on|off)\n"
556 " Set pool or vlan type mirror rule on a port.\n"
557 " e.g., 'set port 0 mirror-rule 0 vlan-mirror 0,1"
558 " dst-pool 0 on' enable mirror traffic with vlan 0,1"
561 "set port (port_id) mirror-rule (rule_id)"
562 " (uplink-mirror|downlink-mirror) dst-pool"
563 " (pool_id) (on|off)\n"
564 " Set uplink or downlink type mirror rule on a port.\n"
565 " e.g., 'set port 0 mirror-rule 0 uplink-mirror dst-pool"
566 " 0 on' enable mirror income traffic to pool 0.\n\n"
568 "reset port (port_id) mirror-rule (rule_id)\n"
569 " Reset a mirror rule.\n\n"
571 "set flush_rx (on|off)\n"
572 " Flush (default) or don't flush RX streams before"
573 " forwarding. Mainly used with PCAP drivers.\n\n"
575 "set bypass mode (normal|bypass|isolate) (port_id)\n"
576 " Set the bypass mode for the lowest port on bypass enabled"
579 "set bypass event (timeout|os_on|os_off|power_on|power_off) "
580 "mode (normal|bypass|isolate) (port_id)\n"
581 " Set the event required to initiate specified bypass mode for"
582 " the lowest port on a bypass enabled NIC where:\n"
583 " timeout = enable bypass after watchdog timeout.\n"
584 " os_on = enable bypass when OS/board is powered on.\n"
585 " os_off = enable bypass when OS/board is powered off.\n"
586 " power_on = enable bypass when power supply is turned on.\n"
587 " power_off = enable bypass when power supply is turned off."
590 "set bypass timeout (0|1.5|2|3|4|8|16|32)\n"
591 " Set the bypass watchdog timeout to 'n' seconds"
592 " where 0 = instant.\n\n"
594 "show bypass config (port_id)\n"
595 " Show the bypass configuration for a bypass enabled NIC"
596 " using the lowest port on the NIC.\n\n"
598 #ifdef RTE_LIBRTE_PMD_BOND
599 "create bonded device (mode) (socket)\n"
600 " Create a new bonded device with specific bonding mode and socket.\n\n"
602 "add bonding slave (slave_id) (port_id)\n"
603 " Add a slave device to a bonded device.\n\n"
605 "remove bonding slave (slave_id) (port_id)\n"
606 " Remove a slave device from a bonded device.\n\n"
608 "set bonding mode (value) (port_id)\n"
609 " Set the bonding mode on a bonded device.\n\n"
611 "set bonding primary (slave_id) (port_id)\n"
612 " Set the primary slave for a bonded device.\n\n"
614 "show bonding config (port_id)\n"
615 " Show the bonding config for port_id.\n\n"
617 "set bonding mac_addr (port_id) (address)\n"
618 " Set the MAC address of a bonded device.\n\n"
620 "set bonding mode IEEE802.3AD aggregator policy (port_id) (agg_name)"
621 " Set Aggregation mode for IEEE802.3AD (mode 4)"
623 "set bonding xmit_balance_policy (port_id) (l2|l23|l34)\n"
624 " Set the transmit balance policy for bonded device running in balance mode.\n\n"
626 "set bonding mon_period (port_id) (value)\n"
627 " Set the bonding link status monitoring polling period in ms.\n\n"
629 "set bonding lacp dedicated_queues <port_id> (enable|disable)\n"
630 " Enable/disable dedicated queues for LACP control traffic.\n\n"
633 "set link-up port (port_id)\n"
634 " Set link up for a port.\n\n"
636 "set link-down port (port_id)\n"
637 " Set link down for a port.\n\n"
639 "E-tag set insertion on port-tag-id (value)"
640 " port (port_id) vf (vf_id)\n"
641 " Enable E-tag insertion for a VF on a port\n\n"
643 "E-tag set insertion off port (port_id) vf (vf_id)\n"
644 " Disable E-tag insertion for a VF on a port\n\n"
646 "E-tag set stripping (on|off) port (port_id)\n"
647 " Enable/disable E-tag stripping on a port\n\n"
649 "E-tag set forwarding (on|off) port (port_id)\n"
650 " Enable/disable E-tag based forwarding"
653 "E-tag set filter add e-tag-id (value) dst-pool"
654 " (pool_id) port (port_id)\n"
655 " Add an E-tag forwarding filter on a port\n\n"
657 "E-tag set filter del e-tag-id (value) port (port_id)\n"
658 " Delete an E-tag forwarding filter on a port\n\n"
660 "ddp add (port_id) (profile_path[,backup_profile_path])\n"
661 " Load a profile package on a port\n\n"
663 "ddp del (port_id) (backup_profile_path)\n"
664 " Delete a profile package from a port\n\n"
666 "ptype mapping get (port_id) (valid_only)\n"
667 " Get ptype mapping on a port\n\n"
669 "ptype mapping replace (port_id) (target) (mask) (pky_type)\n"
670 " Replace target with the pkt_type in ptype mapping\n\n"
672 "ptype mapping reset (port_id)\n"
673 " Reset ptype mapping on a port\n\n"
675 "ptype mapping update (port_id) (hw_ptype) (sw_ptype)\n"
676 " Update a ptype mapping item on a port\n\n"
678 "set port (port_id) queue-region region_id (value) "
679 "queue_start_index (value) queue_num (value)\n"
680 " Set a queue region on a port\n\n"
682 "set port (port_id) queue-region region_id (value) "
684 " Set a flowtype region index on a port\n\n"
686 "set port (port_id) queue-region UP (value) region_id (value)\n"
687 " Set the mapping of User Priority to "
688 "queue region on a port\n\n"
690 "set port (port_id) queue-region flush (on|off)\n"
691 " flush all queue region related configuration\n\n"
693 "show port meter cap (port_id)\n"
694 " Show port meter capability information\n\n"
696 "add port meter profile srtcm_rfc2697 (port_id) (profile_id) (cir) (cbs) (ebs)\n"
697 " meter profile add - srtcm rfc 2697\n\n"
699 "add port meter profile trtcm_rfc2698 (port_id) (profile_id) (cir) (pir) (cbs) (pbs)\n"
700 " meter profile add - trtcm rfc 2698\n\n"
702 "add port meter profile trtcm_rfc4115 (port_id) (profile_id) (cir) (eir) (cbs) (ebs)\n"
703 " meter profile add - trtcm rfc 4115\n\n"
705 "del port meter profile (port_id) (profile_id)\n"
706 " meter profile delete\n\n"
708 "create port meter (port_id) (mtr_id) (profile_id) (meter_enable)\n"
709 "(g_action) (y_action) (r_action) (stats_mask) (shared)\n"
710 "(use_pre_meter_color) [(dscp_tbl_entry0) (dscp_tbl_entry1)...\n"
711 "(dscp_tbl_entry63)]\n"
714 "enable port meter (port_id) (mtr_id)\n"
717 "disable port meter (port_id) (mtr_id)\n"
720 "del port meter (port_id) (mtr_id)\n"
723 "set port meter profile (port_id) (mtr_id) (profile_id)\n"
724 " meter update meter profile\n\n"
726 "set port meter dscp table (port_id) (mtr_id) [(dscp_tbl_entry0)\n"
727 "(dscp_tbl_entry1)...(dscp_tbl_entry63)]\n"
728 " update meter dscp table entries\n\n"
730 "set port meter policer action (port_id) (mtr_id) (action_mask)\n"
731 "(action0) [(action1) (action2)]\n"
732 " meter update policer action\n\n"
734 "set port meter stats mask (port_id) (mtr_id) (stats_mask)\n"
735 " meter update stats\n\n"
737 "show port (port_id) queue-region\n"
738 " show all queue region related configuration info\n\n"
740 , list_pkt_forwarding_modes()
744 if (show_all || !strcmp(res->section, "ports")) {
750 "----------------\n\n"
752 "port start (port_id|all)\n"
753 " Start all ports or port_id.\n\n"
755 "port stop (port_id|all)\n"
756 " Stop all ports or port_id.\n\n"
758 "port close (port_id|all)\n"
759 " Close all ports or port_id.\n\n"
761 "port reset (port_id|all)\n"
762 " Reset all ports or port_id.\n\n"
764 "port attach (ident)\n"
765 " Attach physical or virtual dev by pci address or virtual device name\n\n"
767 "port detach (port_id)\n"
768 " Detach physical or virtual dev by port_id\n\n"
770 "port config (port_id|all)"
771 " speed (10|100|1000|10000|25000|40000|50000|100000|auto)"
772 " duplex (half|full|auto)\n"
773 " Set speed and duplex for all ports or port_id\n\n"
775 "port config (port_id|all) loopback (mode)\n"
776 " Set loopback mode for all ports or port_id\n\n"
778 "port config all (rxq|txq|rxd|txd) (value)\n"
779 " Set number for rxq/txq/rxd/txd.\n\n"
781 "port config all max-pkt-len (value)\n"
782 " Set the max packet length.\n\n"
784 "port config all drop-en (on|off)\n"
785 " Enable or disable packet drop on all RX queues of all ports when no "
786 "receive buffers available.\n\n"
788 "port config all rss (all|default|ip|tcp|udp|sctp|"
789 "ether|port|vxlan|geneve|nvgre|vxlan-gpe|none|<flowtype_id>)\n"
790 " Set the RSS mode.\n\n"
792 "port config port-id rss reta (hash,queue)[,(hash,queue)]\n"
793 " Set the RSS redirection table.\n\n"
795 "port config (port_id) dcb vt (on|off) (traffic_class)"
797 " Set the DCB mode.\n\n"
799 "port config all burst (value)\n"
800 " Set the number of packets per burst.\n\n"
802 "port config all (txpt|txht|txwt|rxpt|rxht|rxwt)"
804 " Set the ring prefetch/host/writeback threshold"
805 " for tx/rx queue.\n\n"
807 "port config all (txfreet|txrst|rxfreet) (value)\n"
808 " Set free threshold for rx/tx, or set"
809 " tx rs bit threshold.\n\n"
810 "port config mtu X value\n"
811 " Set the MTU of port X to a given value\n\n"
813 "port config (port_id) (rxq|txq) (queue_id) ring_size (value)\n"
814 " Set a rx/tx queue's ring size configuration, the new"
815 " value will take effect after command that (re-)start the port"
816 " or command that setup the specific queue\n\n"
818 "port (port_id) (rxq|txq) (queue_id) (start|stop)\n"
819 " Start/stop a rx/tx queue of port X. Only take effect"
820 " when port X is started\n\n"
822 "port (port_id) (rxq|txq) (queue_id) deferred_start (on|off)\n"
823 " Switch on/off a deferred start of port X rx/tx queue. Only"
824 " take effect when port X is stopped.\n\n"
826 "port (port_id) (rxq|txq) (queue_id) setup\n"
827 " Setup a rx/tx queue of port X.\n\n"
829 "port config (port_id|all) l2-tunnel E-tag ether-type"
831 " Set the value of E-tag ether-type.\n\n"
833 "port config (port_id|all) l2-tunnel E-tag"
834 " (enable|disable)\n"
835 " Enable/disable the E-tag support.\n\n"
837 "port config (port_id) pctype mapping reset\n"
838 " Reset flow type to pctype mapping on a port\n\n"
840 "port config (port_id) pctype mapping update"
841 " (pctype_id_0[,pctype_id_1]*) (flow_type_id)\n"
842 " Update a flow type to pctype mapping item on a port\n\n"
844 "port config (port_id) pctype (pctype_id) hash_inset|"
845 "fdir_inset|fdir_flx_inset get|set|clear field\n"
847 " Configure RSS|FDIR|FDIR_FLX input set for some pctype\n\n"
849 "port config (port_id) pctype (pctype_id) hash_inset|"
850 "fdir_inset|fdir_flx_inset clear all"
851 " Clear RSS|FDIR|FDIR_FLX input set completely for some pctype\n\n"
853 "port config (port_id) udp_tunnel_port add|rm vxlan|geneve (udp_port)\n\n"
854 " Add/remove UDP tunnel port for tunneling offload\n\n"
856 "port config <port_id> rx_offload vlan_strip|"
857 "ipv4_cksum|udp_cksum|tcp_cksum|tcp_lro|qinq_strip|"
858 "outer_ipv4_cksum|macsec_strip|header_split|"
859 "vlan_filter|vlan_extend|jumbo_frame|crc_strip|"
860 "scatter|timestamp|security|keep_crc on|off\n"
861 " Enable or disable a per port Rx offloading"
862 " on all Rx queues of a port\n\n"
864 "port (port_id) rxq (queue_id) rx_offload vlan_strip|"
865 "ipv4_cksum|udp_cksum|tcp_cksum|tcp_lro|qinq_strip|"
866 "outer_ipv4_cksum|macsec_strip|header_split|"
867 "vlan_filter|vlan_extend|jumbo_frame|crc_strip|"
868 "scatter|timestamp|security|keep_crc on|off\n"
869 " Enable or disable a per queue Rx offloading"
870 " only on a specific Rx queue\n\n"
872 "port config (port_id) tx_offload vlan_insert|"
873 "ipv4_cksum|udp_cksum|tcp_cksum|sctp_cksum|tcp_tso|"
874 "udp_tso|outer_ipv4_cksum|qinq_insert|vxlan_tnl_tso|"
875 "gre_tnl_tso|ipip_tnl_tso|geneve_tnl_tso|"
876 "macsec_insert|mt_lockfree|multi_segs|mbuf_fast_free|"
877 "security|match_metadata on|off\n"
878 " Enable or disable a per port Tx offloading"
879 " on all Tx queues of a port\n\n"
881 "port (port_id) txq (queue_id) tx_offload vlan_insert|"
882 "ipv4_cksum|udp_cksum|tcp_cksum|sctp_cksum|tcp_tso|"
883 "udp_tso|outer_ipv4_cksum|qinq_insert|vxlan_tnl_tso|"
884 "gre_tnl_tso|ipip_tnl_tso|geneve_tnl_tso|macsec_insert"
885 "|mt_lockfree|multi_segs|mbuf_fast_free|security"
887 " Enable or disable a per queue Tx offloading"
888 " only on a specific Tx queue\n\n"
890 "bpf-load rx|tx (port) (queue) (J|M|B) (file_name)\n"
891 " Load an eBPF program as a callback"
892 " for particular RX/TX queue\n\n"
894 "bpf-unload rx|tx (port) (queue)\n"
895 " Unload previously loaded eBPF program"
896 " for particular RX/TX queue\n\n"
898 "port config (port_id) tx_metadata (value)\n"
899 " Set Tx metadata value per port. Testpmd will add this value"
900 " to any Tx packet sent from this port\n\n"
904 if (show_all || !strcmp(res->section, "registers")) {
912 "read reg (port_id) (address)\n"
913 " Display value of a port register.\n\n"
915 "read regfield (port_id) (address) (bit_x) (bit_y)\n"
916 " Display a port register bit field.\n\n"
918 "read regbit (port_id) (address) (bit_x)\n"
919 " Display a single port register bit.\n\n"
921 "write reg (port_id) (address) (value)\n"
922 " Set value of a port register.\n\n"
924 "write regfield (port_id) (address) (bit_x) (bit_y)"
926 " Set bit field of a port register.\n\n"
928 "write regbit (port_id) (address) (bit_x) (value)\n"
929 " Set single bit value of a port register.\n\n"
932 if (show_all || !strcmp(res->section, "filters")) {
940 "ethertype_filter (port_id) (add|del)"
941 " (mac_addr|mac_ignr) (mac_address) ethertype"
942 " (ether_type) (drop|fwd) queue (queue_id)\n"
943 " Add/Del an ethertype filter.\n\n"
945 "2tuple_filter (port_id) (add|del)"
946 " dst_port (dst_port_value) protocol (protocol_value)"
947 " mask (mask_value) tcp_flags (tcp_flags_value)"
948 " priority (prio_value) queue (queue_id)\n"
949 " Add/Del a 2tuple filter.\n\n"
951 "5tuple_filter (port_id) (add|del)"
952 " dst_ip (dst_address) src_ip (src_address)"
953 " dst_port (dst_port_value) src_port (src_port_value)"
954 " protocol (protocol_value)"
955 " mask (mask_value) tcp_flags (tcp_flags_value)"
956 " priority (prio_value) queue (queue_id)\n"
957 " Add/Del a 5tuple filter.\n\n"
959 "syn_filter (port_id) (add|del) priority (high|low) queue (queue_id)"
960 " Add/Del syn filter.\n\n"
962 "flex_filter (port_id) (add|del) len (len_value)"
963 " bytes (bytes_value) mask (mask_value)"
964 " priority (prio_value) queue (queue_id)\n"
965 " Add/Del a flex filter.\n\n"
967 "flow_director_filter (port_id) mode IP (add|del|update)"
968 " flow (ipv4-other|ipv4-frag|ipv6-other|ipv6-frag)"
969 " src (src_ip_address) dst (dst_ip_address)"
970 " tos (tos_value) proto (proto_value) ttl (ttl_value)"
971 " vlan (vlan_value) flexbytes (flexbytes_value)"
972 " (drop|fwd) pf|vf(vf_id) queue (queue_id)"
973 " fd_id (fd_id_value)\n"
974 " Add/Del an IP type flow director filter.\n\n"
976 "flow_director_filter (port_id) mode IP (add|del|update)"
977 " flow (ipv4-tcp|ipv4-udp|ipv6-tcp|ipv6-udp)"
978 " src (src_ip_address) (src_port)"
979 " dst (dst_ip_address) (dst_port)"
980 " tos (tos_value) ttl (ttl_value)"
981 " vlan (vlan_value) flexbytes (flexbytes_value)"
982 " (drop|fwd) pf|vf(vf_id) queue (queue_id)"
983 " fd_id (fd_id_value)\n"
984 " Add/Del an UDP/TCP type flow director filter.\n\n"
986 "flow_director_filter (port_id) mode IP (add|del|update)"
987 " flow (ipv4-sctp|ipv6-sctp)"
988 " src (src_ip_address) (src_port)"
989 " dst (dst_ip_address) (dst_port)"
990 " tag (verification_tag) "
991 " tos (tos_value) ttl (ttl_value)"
993 " flexbytes (flexbytes_value) (drop|fwd)"
994 " pf|vf(vf_id) queue (queue_id) fd_id (fd_id_value)\n"
995 " Add/Del a SCTP type flow director filter.\n\n"
997 "flow_director_filter (port_id) mode IP (add|del|update)"
998 " flow l2_payload ether (ethertype)"
999 " flexbytes (flexbytes_value) (drop|fwd)"
1000 " pf|vf(vf_id) queue (queue_id) fd_id (fd_id_value)\n"
1001 " Add/Del a l2 payload type flow director filter.\n\n"
1003 "flow_director_filter (port_id) mode MAC-VLAN (add|del|update)"
1004 " mac (mac_address) vlan (vlan_value)"
1005 " flexbytes (flexbytes_value) (drop|fwd)"
1006 " queue (queue_id) fd_id (fd_id_value)\n"
1007 " Add/Del a MAC-VLAN flow director filter.\n\n"
1009 "flow_director_filter (port_id) mode Tunnel (add|del|update)"
1010 " mac (mac_address) vlan (vlan_value)"
1011 " tunnel (NVGRE|VxLAN) tunnel-id (tunnel_id_value)"
1012 " flexbytes (flexbytes_value) (drop|fwd)"
1013 " queue (queue_id) fd_id (fd_id_value)\n"
1014 " Add/Del a Tunnel flow director filter.\n\n"
1016 "flow_director_filter (port_id) mode raw (add|del|update)"
1017 " flow (flow_id) (drop|fwd) queue (queue_id)"
1018 " fd_id (fd_id_value) packet (packet file name)\n"
1019 " Add/Del a raw type flow director filter.\n\n"
1021 "flush_flow_director (port_id)\n"
1022 " Flush all flow director entries of a device.\n\n"
1024 "flow_director_mask (port_id) mode IP vlan (vlan_value)"
1025 " src_mask (ipv4_src) (ipv6_src) (src_port)"
1026 " dst_mask (ipv4_dst) (ipv6_dst) (dst_port)\n"
1027 " Set flow director IP mask.\n\n"
1029 "flow_director_mask (port_id) mode MAC-VLAN"
1030 " vlan (vlan_value)\n"
1031 " Set flow director MAC-VLAN mask.\n\n"
1033 "flow_director_mask (port_id) mode Tunnel"
1034 " vlan (vlan_value) mac (mac_value)"
1035 " tunnel-type (tunnel_type_value)"
1036 " tunnel-id (tunnel_id_value)\n"
1037 " Set flow director Tunnel mask.\n\n"
1039 "flow_director_flex_mask (port_id)"
1040 " flow (none|ipv4-other|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|"
1041 "ipv6-other|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|l2_payload|all)"
1043 " Configure mask of flex payload.\n\n"
1045 "flow_director_flex_payload (port_id)"
1046 " (raw|l2|l3|l4) (config)\n"
1047 " Configure flex payload selection.\n\n"
1049 "get_sym_hash_ena_per_port (port_id)\n"
1050 " get symmetric hash enable configuration per port.\n\n"
1052 "set_sym_hash_ena_per_port (port_id) (enable|disable)\n"
1053 " set symmetric hash enable configuration per port"
1054 " to enable or disable.\n\n"
1056 "get_hash_global_config (port_id)\n"
1057 " Get the global configurations of hash filters.\n\n"
1059 "set_hash_global_config (port_id) (toeplitz|simple_xor|symmetric_toeplitz|default)"
1060 " (ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|ipv6|"
1061 "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload)"
1062 " (enable|disable)\n"
1063 " Set the global configurations of hash filters.\n\n"
1065 "set_hash_input_set (port_id) (ipv4|ipv4-frag|"
1066 "ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|ipv6|"
1067 "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
1068 "l2_payload|<flowtype_id>) (ovlan|ivlan|src-ipv4|dst-ipv4|"
1069 "src-ipv6|dst-ipv6|ipv4-tos|ipv4-proto|ipv6-tc|"
1070 "ipv6-next-header|udp-src-port|udp-dst-port|"
1071 "tcp-src-port|tcp-dst-port|sctp-src-port|"
1072 "sctp-dst-port|sctp-veri-tag|udp-key|gre-key|fld-1st|"
1073 "fld-2nd|fld-3rd|fld-4th|fld-5th|fld-6th|fld-7th|"
1074 "fld-8th|none) (select|add)\n"
1075 " Set the input set for hash.\n\n"
1077 "set_fdir_input_set (port_id) "
1078 "(ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
1079 "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
1080 "l2_payload) (ivlan|ethertype|src-ipv4|dst-ipv4|src-ipv6|"
1081 "dst-ipv6|ipv4-tos|ipv4-proto|ipv4-ttl|ipv6-tc|"
1082 "ipv6-next-header|ipv6-hop-limits|udp-src-port|"
1083 "udp-dst-port|tcp-src-port|tcp-dst-port|"
1084 "sctp-src-port|sctp-dst-port|sctp-veri-tag|none)"
1086 " Set the input set for FDir.\n\n"
1088 "flow validate {port_id}"
1089 " [group {group_id}] [priority {level}]"
1090 " [ingress] [egress]"
1091 " pattern {item} [/ {item} [...]] / end"
1092 " actions {action} [/ {action} [...]] / end\n"
1093 " Check whether a flow rule can be created.\n\n"
1095 "flow create {port_id}"
1096 " [group {group_id}] [priority {level}]"
1097 " [ingress] [egress]"
1098 " pattern {item} [/ {item} [...]] / end"
1099 " actions {action} [/ {action} [...]] / end\n"
1100 " Create a flow rule.\n\n"
1102 "flow destroy {port_id} rule {rule_id} [...]\n"
1103 " Destroy specific flow rules.\n\n"
1105 "flow flush {port_id}\n"
1106 " Destroy all flow rules.\n\n"
1108 "flow query {port_id} {rule_id} {action}\n"
1109 " Query an existing flow rule.\n\n"
1111 "flow list {port_id} [group {group_id}] [...]\n"
1112 " List existing flow rules sorted by priority,"
1113 " filtered by group identifiers.\n\n"
1115 "flow isolate {port_id} {boolean}\n"
1116 " Restrict ingress traffic to the defined"
1119 "set vxlan ip-version (ipv4|ipv6) vni (vni) udp-src"
1120 " (udp-src) udp-dst (udp-dst) ip-src (ip-src) ip-dst"
1121 " (ip-dst) eth-src (eth-src) eth-dst (eth-dst)\n"
1122 " Configure the VXLAN encapsulation for flows.\n\n"
1124 "set vxlan-with-vlan ip-version (ipv4|ipv6) vni (vni)"
1125 " udp-src (udp-src) udp-dst (udp-dst) ip-src (ip-src)"
1126 " ip-dst (ip-dst) vlan-tci (vlan-tci) eth-src (eth-src)"
1127 " eth-dst (eth-dst)\n"
1128 " Configure the VXLAN encapsulation for flows.\n\n"
1130 "set vxlan-tos-ttl ip-version (ipv4|ipv6) vni (vni) udp-src"
1131 " (udp-src) udp-dst (udp-dst) ip-tos (ip-tos) ip-ttl (ip-ttl)"
1132 " ip-src (ip-src) ip-dst (ip-dst) eth-src (eth-src)"
1133 " eth-dst (eth-dst)\n"
1134 " Configure the VXLAN encapsulation for flows.\n\n"
1136 "set nvgre ip-version (ipv4|ipv6) tni (tni) ip-src"
1137 " (ip-src) ip-dst (ip-dst) eth-src (eth-src) eth-dst"
1139 " Configure the NVGRE encapsulation for flows.\n\n"
1141 "set nvgre-with-vlan ip-version (ipv4|ipv6) tni (tni)"
1142 " ip-src (ip-src) ip-dst (ip-dst) vlan-tci (vlan-tci)"
1143 " eth-src (eth-src) eth-dst (eth-dst)\n"
1144 " Configure the NVGRE encapsulation for flows.\n\n"
1146 "set raw_encap {flow items}\n"
1147 " Configure the encapsulation with raw data.\n\n"
1149 "set raw_decap {flow items}\n"
1150 " Configure the decapsulation with raw data.\n\n"
1155 if (show_all || !strcmp(res->section, "traffic_management")) {
1159 "Traffic Management:\n"
1161 "show port tm cap (port_id)\n"
1162 " Display the port TM capability.\n\n"
1164 "show port tm level cap (port_id) (level_id)\n"
1165 " Display the port TM hierarchical level capability.\n\n"
1167 "show port tm node cap (port_id) (node_id)\n"
1168 " Display the port TM node capability.\n\n"
1170 "show port tm node type (port_id) (node_id)\n"
1171 " Display the port TM node type.\n\n"
1173 "show port tm node stats (port_id) (node_id) (clear)\n"
1174 " Display the port TM node stats.\n\n"
1176 #if defined RTE_LIBRTE_PMD_SOFTNIC && defined RTE_LIBRTE_SCHED
1177 "set port tm hierarchy default (port_id)\n"
1178 " Set default traffic Management hierarchy on a port\n\n"
1181 "add port tm node shaper profile (port_id) (shaper_profile_id)"
1182 " (cmit_tb_rate) (cmit_tb_size) (peak_tb_rate) (peak_tb_size)"
1183 " (packet_length_adjust)\n"
1184 " Add port tm node private shaper profile.\n\n"
1186 "del port tm node shaper profile (port_id) (shaper_profile_id)\n"
1187 " Delete port tm node private shaper profile.\n\n"
1189 "add port tm node shared shaper (port_id) (shared_shaper_id)"
1190 " (shaper_profile_id)\n"
1191 " Add/update port tm node shared shaper.\n\n"
1193 "del port tm node shared shaper (port_id) (shared_shaper_id)\n"
1194 " Delete port tm node shared shaper.\n\n"
1196 "set port tm node shaper profile (port_id) (node_id)"
1197 " (shaper_profile_id)\n"
1198 " Set port tm node shaper profile.\n\n"
1200 "add port tm node wred profile (port_id) (wred_profile_id)"
1201 " (color_g) (min_th_g) (max_th_g) (maxp_inv_g) (wq_log2_g)"
1202 " (color_y) (min_th_y) (max_th_y) (maxp_inv_y) (wq_log2_y)"
1203 " (color_r) (min_th_r) (max_th_r) (maxp_inv_r) (wq_log2_r)\n"
1204 " Add port tm node wred profile.\n\n"
1206 "del port tm node wred profile (port_id) (wred_profile_id)\n"
1207 " Delete port tm node wred profile.\n\n"
1209 "add port tm nonleaf node (port_id) (node_id) (parent_node_id)"
1210 " (priority) (weight) (level_id) (shaper_profile_id)"
1211 " (n_sp_priorities) (stats_mask) (n_shared_shapers)"
1212 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n"
1213 " Add port tm nonleaf node.\n\n"
1215 "add port tm leaf node (port_id) (node_id) (parent_node_id)"
1216 " (priority) (weight) (level_id) (shaper_profile_id)"
1217 " (cman_mode) (wred_profile_id) (stats_mask) (n_shared_shapers)"
1218 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n"
1219 " Add port tm leaf node.\n\n"
1221 "del port tm node (port_id) (node_id)\n"
1222 " Delete port tm node.\n\n"
1224 "set port tm node parent (port_id) (node_id) (parent_node_id)"
1225 " (priority) (weight)\n"
1226 " Set port tm node parent.\n\n"
1228 "suspend port tm node (port_id) (node_id)"
1229 " Suspend tm node.\n\n"
1231 "resume port tm node (port_id) (node_id)"
1232 " Resume tm node.\n\n"
1234 "port tm hierarchy commit (port_id) (clean_on_fail)\n"
1235 " Commit tm hierarchy.\n\n"
1237 "set port tm mark ip_ecn (port) (green) (yellow)"
1239 " Enables/Disables the traffic management marking"
1240 " for IP ECN (Explicit Congestion Notification)"
1241 " packets on a given port\n\n"
1243 "set port tm mark ip_dscp (port) (green) (yellow)"
1245 " Enables/Disables the traffic management marking"
1246 " on the port for IP dscp packets\n\n"
1248 "set port tm mark vlan_dei (port) (green) (yellow)"
1250 " Enables/Disables the traffic management marking"
1251 " on the port for VLAN packets with DEI enabled\n\n"
1255 if (show_all || !strcmp(res->section, "devices")) {
1259 "Device Operations:\n"
1261 "device detach (identifier)\n"
1262 " Detach device by identifier.\n\n"
1268 cmdline_parse_token_string_t cmd_help_long_help =
1269 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, help, "help");
1271 cmdline_parse_token_string_t cmd_help_long_section =
1272 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, section,
1273 "all#control#display#config#"
1274 "ports#registers#filters#traffic_management#devices");
1276 cmdline_parse_inst_t cmd_help_long = {
1277 .f = cmd_help_long_parsed,
1279 .help_str = "help all|control|display|config|ports|register|"
1280 "filters|traffic_management|devices: "
1283 (void *)&cmd_help_long_help,
1284 (void *)&cmd_help_long_section,
1290 /* *** start/stop/close all ports *** */
1291 struct cmd_operate_port_result {
1292 cmdline_fixed_string_t keyword;
1293 cmdline_fixed_string_t name;
1294 cmdline_fixed_string_t value;
1297 static void cmd_operate_port_parsed(void *parsed_result,
1298 __attribute__((unused)) struct cmdline *cl,
1299 __attribute__((unused)) void *data)
1301 struct cmd_operate_port_result *res = parsed_result;
1303 if (!strcmp(res->name, "start"))
1304 start_port(RTE_PORT_ALL);
1305 else if (!strcmp(res->name, "stop"))
1306 stop_port(RTE_PORT_ALL);
1307 else if (!strcmp(res->name, "close"))
1308 close_port(RTE_PORT_ALL);
1309 else if (!strcmp(res->name, "reset"))
1310 reset_port(RTE_PORT_ALL);
1312 printf("Unknown parameter\n");
1315 cmdline_parse_token_string_t cmd_operate_port_all_cmd =
1316 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, keyword,
1318 cmdline_parse_token_string_t cmd_operate_port_all_port =
1319 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, name,
1320 "start#stop#close#reset");
1321 cmdline_parse_token_string_t cmd_operate_port_all_all =
1322 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, value, "all");
1324 cmdline_parse_inst_t cmd_operate_port = {
1325 .f = cmd_operate_port_parsed,
1327 .help_str = "port start|stop|close all: Start/Stop/Close/Reset all ports",
1329 (void *)&cmd_operate_port_all_cmd,
1330 (void *)&cmd_operate_port_all_port,
1331 (void *)&cmd_operate_port_all_all,
1336 /* *** start/stop/close specific port *** */
1337 struct cmd_operate_specific_port_result {
1338 cmdline_fixed_string_t keyword;
1339 cmdline_fixed_string_t name;
1343 static void cmd_operate_specific_port_parsed(void *parsed_result,
1344 __attribute__((unused)) struct cmdline *cl,
1345 __attribute__((unused)) void *data)
1347 struct cmd_operate_specific_port_result *res = parsed_result;
1349 if (!strcmp(res->name, "start"))
1350 start_port(res->value);
1351 else if (!strcmp(res->name, "stop"))
1352 stop_port(res->value);
1353 else if (!strcmp(res->name, "close"))
1354 close_port(res->value);
1355 else if (!strcmp(res->name, "reset"))
1356 reset_port(res->value);
1358 printf("Unknown parameter\n");
1361 cmdline_parse_token_string_t cmd_operate_specific_port_cmd =
1362 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
1364 cmdline_parse_token_string_t cmd_operate_specific_port_port =
1365 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
1366 name, "start#stop#close#reset");
1367 cmdline_parse_token_num_t cmd_operate_specific_port_id =
1368 TOKEN_NUM_INITIALIZER(struct cmd_operate_specific_port_result,
1371 cmdline_parse_inst_t cmd_operate_specific_port = {
1372 .f = cmd_operate_specific_port_parsed,
1374 .help_str = "port start|stop|close <port_id>: Start/Stop/Close/Reset port_id",
1376 (void *)&cmd_operate_specific_port_cmd,
1377 (void *)&cmd_operate_specific_port_port,
1378 (void *)&cmd_operate_specific_port_id,
1383 /* *** enable port setup (after attach) via iterator or event *** */
1384 struct cmd_set_port_setup_on_result {
1385 cmdline_fixed_string_t set;
1386 cmdline_fixed_string_t port;
1387 cmdline_fixed_string_t setup;
1388 cmdline_fixed_string_t on;
1389 cmdline_fixed_string_t mode;
1392 static void cmd_set_port_setup_on_parsed(void *parsed_result,
1393 __attribute__((unused)) struct cmdline *cl,
1394 __attribute__((unused)) void *data)
1396 struct cmd_set_port_setup_on_result *res = parsed_result;
1398 if (strcmp(res->mode, "event") == 0)
1399 setup_on_probe_event = true;
1400 else if (strcmp(res->mode, "iterator") == 0)
1401 setup_on_probe_event = false;
1403 printf("Unknown mode\n");
1406 cmdline_parse_token_string_t cmd_set_port_setup_on_set =
1407 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1409 cmdline_parse_token_string_t cmd_set_port_setup_on_port =
1410 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1412 cmdline_parse_token_string_t cmd_set_port_setup_on_setup =
1413 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1415 cmdline_parse_token_string_t cmd_set_port_setup_on_on =
1416 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1418 cmdline_parse_token_string_t cmd_set_port_setup_on_mode =
1419 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1420 mode, "iterator#event");
1422 cmdline_parse_inst_t cmd_set_port_setup_on = {
1423 .f = cmd_set_port_setup_on_parsed,
1425 .help_str = "set port setup on iterator|event",
1427 (void *)&cmd_set_port_setup_on_set,
1428 (void *)&cmd_set_port_setup_on_port,
1429 (void *)&cmd_set_port_setup_on_setup,
1430 (void *)&cmd_set_port_setup_on_on,
1431 (void *)&cmd_set_port_setup_on_mode,
1436 /* *** attach a specified port *** */
1437 struct cmd_operate_attach_port_result {
1438 cmdline_fixed_string_t port;
1439 cmdline_fixed_string_t keyword;
1440 cmdline_fixed_string_t identifier;
1443 static void cmd_operate_attach_port_parsed(void *parsed_result,
1444 __attribute__((unused)) struct cmdline *cl,
1445 __attribute__((unused)) void *data)
1447 struct cmd_operate_attach_port_result *res = parsed_result;
1449 if (!strcmp(res->keyword, "attach"))
1450 attach_port(res->identifier);
1452 printf("Unknown parameter\n");
1455 cmdline_parse_token_string_t cmd_operate_attach_port_port =
1456 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1458 cmdline_parse_token_string_t cmd_operate_attach_port_keyword =
1459 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1461 cmdline_parse_token_string_t cmd_operate_attach_port_identifier =
1462 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1465 cmdline_parse_inst_t cmd_operate_attach_port = {
1466 .f = cmd_operate_attach_port_parsed,
1468 .help_str = "port attach <identifier>: "
1469 "(identifier: pci address or virtual dev name)",
1471 (void *)&cmd_operate_attach_port_port,
1472 (void *)&cmd_operate_attach_port_keyword,
1473 (void *)&cmd_operate_attach_port_identifier,
1478 /* *** detach a specified port *** */
1479 struct cmd_operate_detach_port_result {
1480 cmdline_fixed_string_t port;
1481 cmdline_fixed_string_t keyword;
1485 static void cmd_operate_detach_port_parsed(void *parsed_result,
1486 __attribute__((unused)) struct cmdline *cl,
1487 __attribute__((unused)) void *data)
1489 struct cmd_operate_detach_port_result *res = parsed_result;
1491 if (!strcmp(res->keyword, "detach"))
1492 detach_port_device(res->port_id);
1494 printf("Unknown parameter\n");
1497 cmdline_parse_token_string_t cmd_operate_detach_port_port =
1498 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
1500 cmdline_parse_token_string_t cmd_operate_detach_port_keyword =
1501 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
1503 cmdline_parse_token_num_t cmd_operate_detach_port_port_id =
1504 TOKEN_NUM_INITIALIZER(struct cmd_operate_detach_port_result,
1507 cmdline_parse_inst_t cmd_operate_detach_port = {
1508 .f = cmd_operate_detach_port_parsed,
1510 .help_str = "port detach <port_id>",
1512 (void *)&cmd_operate_detach_port_port,
1513 (void *)&cmd_operate_detach_port_keyword,
1514 (void *)&cmd_operate_detach_port_port_id,
1519 /* *** detach device by identifier *** */
1520 struct cmd_operate_detach_device_result {
1521 cmdline_fixed_string_t device;
1522 cmdline_fixed_string_t keyword;
1523 cmdline_fixed_string_t identifier;
1526 static void cmd_operate_detach_device_parsed(void *parsed_result,
1527 __attribute__((unused)) struct cmdline *cl,
1528 __attribute__((unused)) void *data)
1530 struct cmd_operate_detach_device_result *res = parsed_result;
1532 if (!strcmp(res->keyword, "detach"))
1533 detach_device(res->identifier);
1535 printf("Unknown parameter\n");
1538 cmdline_parse_token_string_t cmd_operate_detach_device_device =
1539 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result,
1541 cmdline_parse_token_string_t cmd_operate_detach_device_keyword =
1542 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result,
1544 cmdline_parse_token_string_t cmd_operate_detach_device_identifier =
1545 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result,
1548 cmdline_parse_inst_t cmd_operate_detach_device = {
1549 .f = cmd_operate_detach_device_parsed,
1551 .help_str = "device detach <identifier>:"
1552 "(identifier: pci address or virtual dev name)",
1554 (void *)&cmd_operate_detach_device_device,
1555 (void *)&cmd_operate_detach_device_keyword,
1556 (void *)&cmd_operate_detach_device_identifier,
1560 /* *** configure speed for all ports *** */
1561 struct cmd_config_speed_all {
1562 cmdline_fixed_string_t port;
1563 cmdline_fixed_string_t keyword;
1564 cmdline_fixed_string_t all;
1565 cmdline_fixed_string_t item1;
1566 cmdline_fixed_string_t item2;
1567 cmdline_fixed_string_t value1;
1568 cmdline_fixed_string_t value2;
1572 parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed)
1577 if (!strcmp(duplexstr, "half")) {
1578 duplex = ETH_LINK_HALF_DUPLEX;
1579 } else if (!strcmp(duplexstr, "full")) {
1580 duplex = ETH_LINK_FULL_DUPLEX;
1581 } else if (!strcmp(duplexstr, "auto")) {
1582 duplex = ETH_LINK_FULL_DUPLEX;
1584 printf("Unknown duplex parameter\n");
1588 if (!strcmp(speedstr, "10")) {
1589 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1590 ETH_LINK_SPEED_10M_HD : ETH_LINK_SPEED_10M;
1591 } else if (!strcmp(speedstr, "100")) {
1592 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1593 ETH_LINK_SPEED_100M_HD : ETH_LINK_SPEED_100M;
1595 if (duplex != ETH_LINK_FULL_DUPLEX) {
1596 printf("Invalid speed/duplex parameters\n");
1599 if (!strcmp(speedstr, "1000")) {
1600 *speed = ETH_LINK_SPEED_1G;
1601 } else if (!strcmp(speedstr, "10000")) {
1602 *speed = ETH_LINK_SPEED_10G;
1603 } else if (!strcmp(speedstr, "25000")) {
1604 *speed = ETH_LINK_SPEED_25G;
1605 } else if (!strcmp(speedstr, "40000")) {
1606 *speed = ETH_LINK_SPEED_40G;
1607 } else if (!strcmp(speedstr, "50000")) {
1608 *speed = ETH_LINK_SPEED_50G;
1609 } else if (!strcmp(speedstr, "100000")) {
1610 *speed = ETH_LINK_SPEED_100G;
1611 } else if (!strcmp(speedstr, "auto")) {
1612 *speed = ETH_LINK_SPEED_AUTONEG;
1614 printf("Unknown speed parameter\n");
1623 cmd_config_speed_all_parsed(void *parsed_result,
1624 __attribute__((unused)) struct cmdline *cl,
1625 __attribute__((unused)) void *data)
1627 struct cmd_config_speed_all *res = parsed_result;
1628 uint32_t link_speed;
1631 if (!all_ports_stopped()) {
1632 printf("Please stop all ports first\n");
1636 if (parse_and_check_speed_duplex(res->value1, res->value2,
1640 RTE_ETH_FOREACH_DEV(pid) {
1641 ports[pid].dev_conf.link_speeds = link_speed;
1644 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1647 cmdline_parse_token_string_t cmd_config_speed_all_port =
1648 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, port, "port");
1649 cmdline_parse_token_string_t cmd_config_speed_all_keyword =
1650 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, keyword,
1652 cmdline_parse_token_string_t cmd_config_speed_all_all =
1653 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, all, "all");
1654 cmdline_parse_token_string_t cmd_config_speed_all_item1 =
1655 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item1, "speed");
1656 cmdline_parse_token_string_t cmd_config_speed_all_value1 =
1657 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value1,
1658 "10#100#1000#10000#25000#40000#50000#100000#auto");
1659 cmdline_parse_token_string_t cmd_config_speed_all_item2 =
1660 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item2, "duplex");
1661 cmdline_parse_token_string_t cmd_config_speed_all_value2 =
1662 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value2,
1665 cmdline_parse_inst_t cmd_config_speed_all = {
1666 .f = cmd_config_speed_all_parsed,
1668 .help_str = "port config all speed "
1669 "10|100|1000|10000|25000|40000|50000|100000|auto duplex "
1672 (void *)&cmd_config_speed_all_port,
1673 (void *)&cmd_config_speed_all_keyword,
1674 (void *)&cmd_config_speed_all_all,
1675 (void *)&cmd_config_speed_all_item1,
1676 (void *)&cmd_config_speed_all_value1,
1677 (void *)&cmd_config_speed_all_item2,
1678 (void *)&cmd_config_speed_all_value2,
1683 /* *** configure speed for specific port *** */
1684 struct cmd_config_speed_specific {
1685 cmdline_fixed_string_t port;
1686 cmdline_fixed_string_t keyword;
1688 cmdline_fixed_string_t item1;
1689 cmdline_fixed_string_t item2;
1690 cmdline_fixed_string_t value1;
1691 cmdline_fixed_string_t value2;
1695 cmd_config_speed_specific_parsed(void *parsed_result,
1696 __attribute__((unused)) struct cmdline *cl,
1697 __attribute__((unused)) void *data)
1699 struct cmd_config_speed_specific *res = parsed_result;
1700 uint32_t link_speed;
1702 if (!all_ports_stopped()) {
1703 printf("Please stop all ports first\n");
1707 if (port_id_is_invalid(res->id, ENABLED_WARN))
1710 if (parse_and_check_speed_duplex(res->value1, res->value2,
1714 ports[res->id].dev_conf.link_speeds = link_speed;
1716 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1720 cmdline_parse_token_string_t cmd_config_speed_specific_port =
1721 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, port,
1723 cmdline_parse_token_string_t cmd_config_speed_specific_keyword =
1724 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, keyword,
1726 cmdline_parse_token_num_t cmd_config_speed_specific_id =
1727 TOKEN_NUM_INITIALIZER(struct cmd_config_speed_specific, id, UINT16);
1728 cmdline_parse_token_string_t cmd_config_speed_specific_item1 =
1729 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item1,
1731 cmdline_parse_token_string_t cmd_config_speed_specific_value1 =
1732 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value1,
1733 "10#100#1000#10000#25000#40000#50000#100000#auto");
1734 cmdline_parse_token_string_t cmd_config_speed_specific_item2 =
1735 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item2,
1737 cmdline_parse_token_string_t cmd_config_speed_specific_value2 =
1738 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value2,
1741 cmdline_parse_inst_t cmd_config_speed_specific = {
1742 .f = cmd_config_speed_specific_parsed,
1744 .help_str = "port config <port_id> speed "
1745 "10|100|1000|10000|25000|40000|50000|100000|auto duplex "
1748 (void *)&cmd_config_speed_specific_port,
1749 (void *)&cmd_config_speed_specific_keyword,
1750 (void *)&cmd_config_speed_specific_id,
1751 (void *)&cmd_config_speed_specific_item1,
1752 (void *)&cmd_config_speed_specific_value1,
1753 (void *)&cmd_config_speed_specific_item2,
1754 (void *)&cmd_config_speed_specific_value2,
1759 /* *** configure loopback for all ports *** */
1760 struct cmd_config_loopback_all {
1761 cmdline_fixed_string_t port;
1762 cmdline_fixed_string_t keyword;
1763 cmdline_fixed_string_t all;
1764 cmdline_fixed_string_t item;
1769 cmd_config_loopback_all_parsed(void *parsed_result,
1770 __attribute__((unused)) struct cmdline *cl,
1771 __attribute__((unused)) void *data)
1773 struct cmd_config_loopback_all *res = parsed_result;
1776 if (!all_ports_stopped()) {
1777 printf("Please stop all ports first\n");
1781 RTE_ETH_FOREACH_DEV(pid) {
1782 ports[pid].dev_conf.lpbk_mode = res->mode;
1785 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1788 cmdline_parse_token_string_t cmd_config_loopback_all_port =
1789 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, port, "port");
1790 cmdline_parse_token_string_t cmd_config_loopback_all_keyword =
1791 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, keyword,
1793 cmdline_parse_token_string_t cmd_config_loopback_all_all =
1794 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, all, "all");
1795 cmdline_parse_token_string_t cmd_config_loopback_all_item =
1796 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, item,
1798 cmdline_parse_token_num_t cmd_config_loopback_all_mode =
1799 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_all, mode, UINT32);
1801 cmdline_parse_inst_t cmd_config_loopback_all = {
1802 .f = cmd_config_loopback_all_parsed,
1804 .help_str = "port config all loopback <mode>",
1806 (void *)&cmd_config_loopback_all_port,
1807 (void *)&cmd_config_loopback_all_keyword,
1808 (void *)&cmd_config_loopback_all_all,
1809 (void *)&cmd_config_loopback_all_item,
1810 (void *)&cmd_config_loopback_all_mode,
1815 /* *** configure loopback for specific port *** */
1816 struct cmd_config_loopback_specific {
1817 cmdline_fixed_string_t port;
1818 cmdline_fixed_string_t keyword;
1820 cmdline_fixed_string_t item;
1825 cmd_config_loopback_specific_parsed(void *parsed_result,
1826 __attribute__((unused)) struct cmdline *cl,
1827 __attribute__((unused)) void *data)
1829 struct cmd_config_loopback_specific *res = parsed_result;
1831 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
1834 if (!port_is_stopped(res->port_id)) {
1835 printf("Please stop port %u first\n", res->port_id);
1839 ports[res->port_id].dev_conf.lpbk_mode = res->mode;
1841 cmd_reconfig_device_queue(res->port_id, 1, 1);
1845 cmdline_parse_token_string_t cmd_config_loopback_specific_port =
1846 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, port,
1848 cmdline_parse_token_string_t cmd_config_loopback_specific_keyword =
1849 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, keyword,
1851 cmdline_parse_token_num_t cmd_config_loopback_specific_id =
1852 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, port_id,
1854 cmdline_parse_token_string_t cmd_config_loopback_specific_item =
1855 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, item,
1857 cmdline_parse_token_num_t cmd_config_loopback_specific_mode =
1858 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, mode,
1861 cmdline_parse_inst_t cmd_config_loopback_specific = {
1862 .f = cmd_config_loopback_specific_parsed,
1864 .help_str = "port config <port_id> loopback <mode>",
1866 (void *)&cmd_config_loopback_specific_port,
1867 (void *)&cmd_config_loopback_specific_keyword,
1868 (void *)&cmd_config_loopback_specific_id,
1869 (void *)&cmd_config_loopback_specific_item,
1870 (void *)&cmd_config_loopback_specific_mode,
1875 /* *** configure txq/rxq, txd/rxd *** */
1876 struct cmd_config_rx_tx {
1877 cmdline_fixed_string_t port;
1878 cmdline_fixed_string_t keyword;
1879 cmdline_fixed_string_t all;
1880 cmdline_fixed_string_t name;
1885 cmd_config_rx_tx_parsed(void *parsed_result,
1886 __attribute__((unused)) struct cmdline *cl,
1887 __attribute__((unused)) void *data)
1889 struct cmd_config_rx_tx *res = parsed_result;
1891 if (!all_ports_stopped()) {
1892 printf("Please stop all ports first\n");
1895 if (!strcmp(res->name, "rxq")) {
1896 if (!res->value && !nb_txq) {
1897 printf("Warning: Either rx or tx queues should be non zero\n");
1900 if (check_nb_rxq(res->value) != 0)
1902 nb_rxq = res->value;
1904 else if (!strcmp(res->name, "txq")) {
1905 if (!res->value && !nb_rxq) {
1906 printf("Warning: Either rx or tx queues should be non zero\n");
1909 if (check_nb_txq(res->value) != 0)
1911 nb_txq = res->value;
1913 else if (!strcmp(res->name, "rxd")) {
1914 if (res->value <= 0 || res->value > RTE_TEST_RX_DESC_MAX) {
1915 printf("rxd %d invalid - must be > 0 && <= %d\n",
1916 res->value, RTE_TEST_RX_DESC_MAX);
1919 nb_rxd = res->value;
1920 } else if (!strcmp(res->name, "txd")) {
1921 if (res->value <= 0 || res->value > RTE_TEST_TX_DESC_MAX) {
1922 printf("txd %d invalid - must be > 0 && <= %d\n",
1923 res->value, RTE_TEST_TX_DESC_MAX);
1926 nb_txd = res->value;
1928 printf("Unknown parameter\n");
1936 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1939 cmdline_parse_token_string_t cmd_config_rx_tx_port =
1940 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, port, "port");
1941 cmdline_parse_token_string_t cmd_config_rx_tx_keyword =
1942 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, keyword, "config");
1943 cmdline_parse_token_string_t cmd_config_rx_tx_all =
1944 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, all, "all");
1945 cmdline_parse_token_string_t cmd_config_rx_tx_name =
1946 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, name,
1948 cmdline_parse_token_num_t cmd_config_rx_tx_value =
1949 TOKEN_NUM_INITIALIZER(struct cmd_config_rx_tx, value, UINT16);
1951 cmdline_parse_inst_t cmd_config_rx_tx = {
1952 .f = cmd_config_rx_tx_parsed,
1954 .help_str = "port config all rxq|txq|rxd|txd <value>",
1956 (void *)&cmd_config_rx_tx_port,
1957 (void *)&cmd_config_rx_tx_keyword,
1958 (void *)&cmd_config_rx_tx_all,
1959 (void *)&cmd_config_rx_tx_name,
1960 (void *)&cmd_config_rx_tx_value,
1965 /* *** config max packet length *** */
1966 struct cmd_config_max_pkt_len_result {
1967 cmdline_fixed_string_t port;
1968 cmdline_fixed_string_t keyword;
1969 cmdline_fixed_string_t all;
1970 cmdline_fixed_string_t name;
1975 cmd_config_max_pkt_len_parsed(void *parsed_result,
1976 __attribute__((unused)) struct cmdline *cl,
1977 __attribute__((unused)) void *data)
1979 struct cmd_config_max_pkt_len_result *res = parsed_result;
1982 if (!all_ports_stopped()) {
1983 printf("Please stop all ports first\n");
1987 RTE_ETH_FOREACH_DEV(pid) {
1988 struct rte_port *port = &ports[pid];
1989 uint64_t rx_offloads = port->dev_conf.rxmode.offloads;
1991 if (!strcmp(res->name, "max-pkt-len")) {
1992 if (res->value < RTE_ETHER_MIN_LEN) {
1993 printf("max-pkt-len can not be less than %d\n",
1997 if (res->value == port->dev_conf.rxmode.max_rx_pkt_len)
2000 port->dev_conf.rxmode.max_rx_pkt_len = res->value;
2001 if (res->value > RTE_ETHER_MAX_LEN)
2002 rx_offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
2004 rx_offloads &= ~DEV_RX_OFFLOAD_JUMBO_FRAME;
2005 port->dev_conf.rxmode.offloads = rx_offloads;
2007 printf("Unknown parameter\n");
2014 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2017 cmdline_parse_token_string_t cmd_config_max_pkt_len_port =
2018 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, port,
2020 cmdline_parse_token_string_t cmd_config_max_pkt_len_keyword =
2021 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, keyword,
2023 cmdline_parse_token_string_t cmd_config_max_pkt_len_all =
2024 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, all,
2026 cmdline_parse_token_string_t cmd_config_max_pkt_len_name =
2027 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, name,
2029 cmdline_parse_token_num_t cmd_config_max_pkt_len_value =
2030 TOKEN_NUM_INITIALIZER(struct cmd_config_max_pkt_len_result, value,
2033 cmdline_parse_inst_t cmd_config_max_pkt_len = {
2034 .f = cmd_config_max_pkt_len_parsed,
2036 .help_str = "port config all max-pkt-len <value>",
2038 (void *)&cmd_config_max_pkt_len_port,
2039 (void *)&cmd_config_max_pkt_len_keyword,
2040 (void *)&cmd_config_max_pkt_len_all,
2041 (void *)&cmd_config_max_pkt_len_name,
2042 (void *)&cmd_config_max_pkt_len_value,
2047 /* *** configure port MTU *** */
2048 struct cmd_config_mtu_result {
2049 cmdline_fixed_string_t port;
2050 cmdline_fixed_string_t keyword;
2051 cmdline_fixed_string_t mtu;
2057 cmd_config_mtu_parsed(void *parsed_result,
2058 __attribute__((unused)) struct cmdline *cl,
2059 __attribute__((unused)) void *data)
2061 struct cmd_config_mtu_result *res = parsed_result;
2063 if (res->value < RTE_ETHER_MIN_LEN) {
2064 printf("mtu cannot be less than %d\n", RTE_ETHER_MIN_LEN);
2067 port_mtu_set(res->port_id, res->value);
2070 cmdline_parse_token_string_t cmd_config_mtu_port =
2071 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, port,
2073 cmdline_parse_token_string_t cmd_config_mtu_keyword =
2074 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
2076 cmdline_parse_token_string_t cmd_config_mtu_mtu =
2077 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
2079 cmdline_parse_token_num_t cmd_config_mtu_port_id =
2080 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, port_id, UINT16);
2081 cmdline_parse_token_num_t cmd_config_mtu_value =
2082 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, value, UINT16);
2084 cmdline_parse_inst_t cmd_config_mtu = {
2085 .f = cmd_config_mtu_parsed,
2087 .help_str = "port config mtu <port_id> <value>",
2089 (void *)&cmd_config_mtu_port,
2090 (void *)&cmd_config_mtu_keyword,
2091 (void *)&cmd_config_mtu_mtu,
2092 (void *)&cmd_config_mtu_port_id,
2093 (void *)&cmd_config_mtu_value,
2098 /* *** configure rx mode *** */
2099 struct cmd_config_rx_mode_flag {
2100 cmdline_fixed_string_t port;
2101 cmdline_fixed_string_t keyword;
2102 cmdline_fixed_string_t all;
2103 cmdline_fixed_string_t name;
2104 cmdline_fixed_string_t value;
2108 cmd_config_rx_mode_flag_parsed(void *parsed_result,
2109 __attribute__((unused)) struct cmdline *cl,
2110 __attribute__((unused)) void *data)
2112 struct cmd_config_rx_mode_flag *res = parsed_result;
2114 if (!all_ports_stopped()) {
2115 printf("Please stop all ports first\n");
2119 if (!strcmp(res->name, "drop-en")) {
2120 if (!strcmp(res->value, "on"))
2122 else if (!strcmp(res->value, "off"))
2125 printf("Unknown parameter\n");
2129 printf("Unknown parameter\n");
2135 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2138 cmdline_parse_token_string_t cmd_config_rx_mode_flag_port =
2139 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, port, "port");
2140 cmdline_parse_token_string_t cmd_config_rx_mode_flag_keyword =
2141 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, keyword,
2143 cmdline_parse_token_string_t cmd_config_rx_mode_flag_all =
2144 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, all, "all");
2145 cmdline_parse_token_string_t cmd_config_rx_mode_flag_name =
2146 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, name,
2148 cmdline_parse_token_string_t cmd_config_rx_mode_flag_value =
2149 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, value,
2152 cmdline_parse_inst_t cmd_config_rx_mode_flag = {
2153 .f = cmd_config_rx_mode_flag_parsed,
2155 .help_str = "port config all drop-en on|off",
2157 (void *)&cmd_config_rx_mode_flag_port,
2158 (void *)&cmd_config_rx_mode_flag_keyword,
2159 (void *)&cmd_config_rx_mode_flag_all,
2160 (void *)&cmd_config_rx_mode_flag_name,
2161 (void *)&cmd_config_rx_mode_flag_value,
2166 /* *** configure rss *** */
2167 struct cmd_config_rss {
2168 cmdline_fixed_string_t port;
2169 cmdline_fixed_string_t keyword;
2170 cmdline_fixed_string_t all;
2171 cmdline_fixed_string_t name;
2172 cmdline_fixed_string_t value;
2176 cmd_config_rss_parsed(void *parsed_result,
2177 __attribute__((unused)) struct cmdline *cl,
2178 __attribute__((unused)) void *data)
2180 struct cmd_config_rss *res = parsed_result;
2181 struct rte_eth_rss_conf rss_conf = { .rss_key_len = 0, };
2182 struct rte_eth_dev_info dev_info = { .flow_type_rss_offloads = 0, };
2183 int use_default = 0;
2184 int all_updated = 1;
2189 if (!strcmp(res->value, "all"))
2190 rss_conf.rss_hf = ETH_RSS_IP | ETH_RSS_TCP |
2191 ETH_RSS_UDP | ETH_RSS_SCTP |
2193 else if (!strcmp(res->value, "ip"))
2194 rss_conf.rss_hf = ETH_RSS_IP;
2195 else if (!strcmp(res->value, "udp"))
2196 rss_conf.rss_hf = ETH_RSS_UDP;
2197 else if (!strcmp(res->value, "tcp"))
2198 rss_conf.rss_hf = ETH_RSS_TCP;
2199 else if (!strcmp(res->value, "sctp"))
2200 rss_conf.rss_hf = ETH_RSS_SCTP;
2201 else if (!strcmp(res->value, "ether"))
2202 rss_conf.rss_hf = ETH_RSS_L2_PAYLOAD;
2203 else if (!strcmp(res->value, "port"))
2204 rss_conf.rss_hf = ETH_RSS_PORT;
2205 else if (!strcmp(res->value, "vxlan"))
2206 rss_conf.rss_hf = ETH_RSS_VXLAN;
2207 else if (!strcmp(res->value, "geneve"))
2208 rss_conf.rss_hf = ETH_RSS_GENEVE;
2209 else if (!strcmp(res->value, "nvgre"))
2210 rss_conf.rss_hf = ETH_RSS_NVGRE;
2211 else if (!strcmp(res->value, "none"))
2212 rss_conf.rss_hf = 0;
2213 else if (!strcmp(res->value, "default"))
2215 else if (isdigit(res->value[0]) && atoi(res->value) > 0 &&
2216 atoi(res->value) < 64)
2217 rss_conf.rss_hf = 1ULL << atoi(res->value);
2219 printf("Unknown parameter\n");
2222 rss_conf.rss_key = NULL;
2223 /* Update global configuration for RSS types. */
2224 RTE_ETH_FOREACH_DEV(i) {
2225 struct rte_eth_rss_conf local_rss_conf;
2227 ret = eth_dev_info_get_print_err(i, &dev_info);
2232 rss_conf.rss_hf = dev_info.flow_type_rss_offloads;
2234 local_rss_conf = rss_conf;
2235 local_rss_conf.rss_hf = rss_conf.rss_hf &
2236 dev_info.flow_type_rss_offloads;
2237 if (local_rss_conf.rss_hf != rss_conf.rss_hf) {
2238 printf("Port %u modified RSS hash function based on hardware support,"
2239 "requested:%#"PRIx64" configured:%#"PRIx64"\n",
2240 i, rss_conf.rss_hf, local_rss_conf.rss_hf);
2242 diag = rte_eth_dev_rss_hash_update(i, &local_rss_conf);
2245 printf("Configuration of RSS hash at ethernet port %d "
2246 "failed with error (%d): %s.\n",
2247 i, -diag, strerror(-diag));
2250 if (all_updated && !use_default)
2251 rss_hf = rss_conf.rss_hf;
2254 cmdline_parse_token_string_t cmd_config_rss_port =
2255 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, port, "port");
2256 cmdline_parse_token_string_t cmd_config_rss_keyword =
2257 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, keyword, "config");
2258 cmdline_parse_token_string_t cmd_config_rss_all =
2259 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, all, "all");
2260 cmdline_parse_token_string_t cmd_config_rss_name =
2261 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, name, "rss");
2262 cmdline_parse_token_string_t cmd_config_rss_value =
2263 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, value, NULL);
2265 cmdline_parse_inst_t cmd_config_rss = {
2266 .f = cmd_config_rss_parsed,
2268 .help_str = "port config all rss "
2269 "all|default|ip|tcp|udp|sctp|ether|port|vxlan|geneve|nvgre|vxlan-gpe|none|<flowtype_id>",
2271 (void *)&cmd_config_rss_port,
2272 (void *)&cmd_config_rss_keyword,
2273 (void *)&cmd_config_rss_all,
2274 (void *)&cmd_config_rss_name,
2275 (void *)&cmd_config_rss_value,
2280 /* *** configure rss hash key *** */
2281 struct cmd_config_rss_hash_key {
2282 cmdline_fixed_string_t port;
2283 cmdline_fixed_string_t config;
2285 cmdline_fixed_string_t rss_hash_key;
2286 cmdline_fixed_string_t rss_type;
2287 cmdline_fixed_string_t key;
2291 hexa_digit_to_value(char hexa_digit)
2293 if ((hexa_digit >= '0') && (hexa_digit <= '9'))
2294 return (uint8_t) (hexa_digit - '0');
2295 if ((hexa_digit >= 'a') && (hexa_digit <= 'f'))
2296 return (uint8_t) ((hexa_digit - 'a') + 10);
2297 if ((hexa_digit >= 'A') && (hexa_digit <= 'F'))
2298 return (uint8_t) ((hexa_digit - 'A') + 10);
2299 /* Invalid hexa digit */
2304 parse_and_check_key_hexa_digit(char *key, int idx)
2308 hexa_v = hexa_digit_to_value(key[idx]);
2310 printf("invalid key: character %c at position %d is not a "
2311 "valid hexa digit\n", key[idx], idx);
2316 cmd_config_rss_hash_key_parsed(void *parsed_result,
2317 __attribute__((unused)) struct cmdline *cl,
2318 __attribute__((unused)) void *data)
2320 struct cmd_config_rss_hash_key *res = parsed_result;
2321 uint8_t hash_key[RSS_HASH_KEY_LENGTH];
2325 struct rte_eth_dev_info dev_info;
2326 uint8_t hash_key_size;
2330 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
2334 if (dev_info.hash_key_size > 0 &&
2335 dev_info.hash_key_size <= sizeof(hash_key))
2336 hash_key_size = dev_info.hash_key_size;
2338 printf("dev_info did not provide a valid hash key size\n");
2341 /* Check the length of the RSS hash key */
2342 key_len = strlen(res->key);
2343 if (key_len != (hash_key_size * 2)) {
2344 printf("key length: %d invalid - key must be a string of %d"
2345 " hexa-decimal numbers\n",
2346 (int) key_len, hash_key_size * 2);
2349 /* Translate RSS hash key into binary representation */
2350 for (i = 0; i < hash_key_size; i++) {
2351 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
2354 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
2357 hash_key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
2359 port_rss_hash_key_update(res->port_id, res->rss_type, hash_key,
2363 cmdline_parse_token_string_t cmd_config_rss_hash_key_port =
2364 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, port, "port");
2365 cmdline_parse_token_string_t cmd_config_rss_hash_key_config =
2366 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, config,
2368 cmdline_parse_token_num_t cmd_config_rss_hash_key_port_id =
2369 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_hash_key, port_id, UINT16);
2370 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_hash_key =
2371 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key,
2372 rss_hash_key, "rss-hash-key");
2373 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_type =
2374 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, rss_type,
2375 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
2376 "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#"
2377 "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#"
2378 "ipv6-tcp-ex#ipv6-udp-ex");
2379 cmdline_parse_token_string_t cmd_config_rss_hash_key_value =
2380 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, key, NULL);
2382 cmdline_parse_inst_t cmd_config_rss_hash_key = {
2383 .f = cmd_config_rss_hash_key_parsed,
2385 .help_str = "port config <port_id> rss-hash-key "
2386 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
2387 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
2388 "l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex "
2389 "<string of hex digits (variable length, NIC dependent)>",
2391 (void *)&cmd_config_rss_hash_key_port,
2392 (void *)&cmd_config_rss_hash_key_config,
2393 (void *)&cmd_config_rss_hash_key_port_id,
2394 (void *)&cmd_config_rss_hash_key_rss_hash_key,
2395 (void *)&cmd_config_rss_hash_key_rss_type,
2396 (void *)&cmd_config_rss_hash_key_value,
2401 /* *** configure port rxq/txq ring size *** */
2402 struct cmd_config_rxtx_ring_size {
2403 cmdline_fixed_string_t port;
2404 cmdline_fixed_string_t config;
2406 cmdline_fixed_string_t rxtxq;
2408 cmdline_fixed_string_t rsize;
2413 cmd_config_rxtx_ring_size_parsed(void *parsed_result,
2414 __attribute__((unused)) struct cmdline *cl,
2415 __attribute__((unused)) void *data)
2417 struct cmd_config_rxtx_ring_size *res = parsed_result;
2418 struct rte_port *port;
2421 if (port_id_is_invalid(res->portid, ENABLED_WARN))
2424 if (res->portid == (portid_t)RTE_PORT_ALL) {
2425 printf("Invalid port id\n");
2429 port = &ports[res->portid];
2431 if (!strcmp(res->rxtxq, "rxq"))
2433 else if (!strcmp(res->rxtxq, "txq"))
2436 printf("Unknown parameter\n");
2440 if (isrx && rx_queue_id_is_invalid(res->qid))
2442 else if (!isrx && tx_queue_id_is_invalid(res->qid))
2445 if (isrx && res->size != 0 && res->size <= rx_free_thresh) {
2446 printf("Invalid rx ring_size, must > rx_free_thresh: %d\n",
2452 port->nb_rx_desc[res->qid] = res->size;
2454 port->nb_tx_desc[res->qid] = res->size;
2456 cmd_reconfig_device_queue(res->portid, 0, 1);
2459 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_port =
2460 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2462 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_config =
2463 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2465 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_portid =
2466 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size,
2468 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rxtxq =
2469 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2471 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_qid =
2472 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size,
2474 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rsize =
2475 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2476 rsize, "ring_size");
2477 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_size =
2478 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size,
2481 cmdline_parse_inst_t cmd_config_rxtx_ring_size = {
2482 .f = cmd_config_rxtx_ring_size_parsed,
2484 .help_str = "port config <port_id> rxq|txq <queue_id> ring_size <value>",
2486 (void *)&cmd_config_rxtx_ring_size_port,
2487 (void *)&cmd_config_rxtx_ring_size_config,
2488 (void *)&cmd_config_rxtx_ring_size_portid,
2489 (void *)&cmd_config_rxtx_ring_size_rxtxq,
2490 (void *)&cmd_config_rxtx_ring_size_qid,
2491 (void *)&cmd_config_rxtx_ring_size_rsize,
2492 (void *)&cmd_config_rxtx_ring_size_size,
2497 /* *** configure port rxq/txq start/stop *** */
2498 struct cmd_config_rxtx_queue {
2499 cmdline_fixed_string_t port;
2501 cmdline_fixed_string_t rxtxq;
2503 cmdline_fixed_string_t opname;
2507 cmd_config_rxtx_queue_parsed(void *parsed_result,
2508 __attribute__((unused)) struct cmdline *cl,
2509 __attribute__((unused)) void *data)
2511 struct cmd_config_rxtx_queue *res = parsed_result;
2516 if (test_done == 0) {
2517 printf("Please stop forwarding first\n");
2521 if (port_id_is_invalid(res->portid, ENABLED_WARN))
2524 if (port_is_started(res->portid) != 1) {
2525 printf("Please start port %u first\n", res->portid);
2529 if (!strcmp(res->rxtxq, "rxq"))
2531 else if (!strcmp(res->rxtxq, "txq"))
2534 printf("Unknown parameter\n");
2538 if (isrx && rx_queue_id_is_invalid(res->qid))
2540 else if (!isrx && tx_queue_id_is_invalid(res->qid))
2543 if (!strcmp(res->opname, "start"))
2545 else if (!strcmp(res->opname, "stop"))
2548 printf("Unknown parameter\n");
2552 if (isstart && isrx)
2553 ret = rte_eth_dev_rx_queue_start(res->portid, res->qid);
2554 else if (!isstart && isrx)
2555 ret = rte_eth_dev_rx_queue_stop(res->portid, res->qid);
2556 else if (isstart && !isrx)
2557 ret = rte_eth_dev_tx_queue_start(res->portid, res->qid);
2559 ret = rte_eth_dev_tx_queue_stop(res->portid, res->qid);
2561 if (ret == -ENOTSUP)
2562 printf("Function not supported in PMD driver\n");
2565 cmdline_parse_token_string_t cmd_config_rxtx_queue_port =
2566 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, port, "port");
2567 cmdline_parse_token_num_t cmd_config_rxtx_queue_portid =
2568 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, portid, UINT16);
2569 cmdline_parse_token_string_t cmd_config_rxtx_queue_rxtxq =
2570 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, rxtxq, "rxq#txq");
2571 cmdline_parse_token_num_t cmd_config_rxtx_queue_qid =
2572 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, qid, UINT16);
2573 cmdline_parse_token_string_t cmd_config_rxtx_queue_opname =
2574 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, opname,
2577 cmdline_parse_inst_t cmd_config_rxtx_queue = {
2578 .f = cmd_config_rxtx_queue_parsed,
2580 .help_str = "port <port_id> rxq|txq <queue_id> start|stop",
2582 (void *)&cmd_config_rxtx_queue_port,
2583 (void *)&cmd_config_rxtx_queue_portid,
2584 (void *)&cmd_config_rxtx_queue_rxtxq,
2585 (void *)&cmd_config_rxtx_queue_qid,
2586 (void *)&cmd_config_rxtx_queue_opname,
2591 /* *** configure port rxq/txq deferred start on/off *** */
2592 struct cmd_config_deferred_start_rxtx_queue {
2593 cmdline_fixed_string_t port;
2595 cmdline_fixed_string_t rxtxq;
2597 cmdline_fixed_string_t opname;
2598 cmdline_fixed_string_t state;
2602 cmd_config_deferred_start_rxtx_queue_parsed(void *parsed_result,
2603 __attribute__((unused)) struct cmdline *cl,
2604 __attribute__((unused)) void *data)
2606 struct cmd_config_deferred_start_rxtx_queue *res = parsed_result;
2607 struct rte_port *port;
2610 uint8_t needreconfig = 0;
2612 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
2615 if (port_is_started(res->port_id) != 0) {
2616 printf("Please stop port %u first\n", res->port_id);
2620 port = &ports[res->port_id];
2622 isrx = !strcmp(res->rxtxq, "rxq");
2624 if (isrx && rx_queue_id_is_invalid(res->qid))
2626 else if (!isrx && tx_queue_id_is_invalid(res->qid))
2629 ison = !strcmp(res->state, "on");
2631 if (isrx && port->rx_conf[res->qid].rx_deferred_start != ison) {
2632 port->rx_conf[res->qid].rx_deferred_start = ison;
2634 } else if (!isrx && port->tx_conf[res->qid].tx_deferred_start != ison) {
2635 port->tx_conf[res->qid].tx_deferred_start = ison;
2640 cmd_reconfig_device_queue(res->port_id, 0, 1);
2643 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_port =
2644 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2646 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_port_id =
2647 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2649 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_rxtxq =
2650 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2652 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_qid =
2653 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2655 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_opname =
2656 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2657 opname, "deferred_start");
2658 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_state =
2659 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2662 cmdline_parse_inst_t cmd_config_deferred_start_rxtx_queue = {
2663 .f = cmd_config_deferred_start_rxtx_queue_parsed,
2665 .help_str = "port <port_id> rxq|txq <queue_id> deferred_start on|off",
2667 (void *)&cmd_config_deferred_start_rxtx_queue_port,
2668 (void *)&cmd_config_deferred_start_rxtx_queue_port_id,
2669 (void *)&cmd_config_deferred_start_rxtx_queue_rxtxq,
2670 (void *)&cmd_config_deferred_start_rxtx_queue_qid,
2671 (void *)&cmd_config_deferred_start_rxtx_queue_opname,
2672 (void *)&cmd_config_deferred_start_rxtx_queue_state,
2677 /* *** configure port rxq/txq setup *** */
2678 struct cmd_setup_rxtx_queue {
2679 cmdline_fixed_string_t port;
2681 cmdline_fixed_string_t rxtxq;
2683 cmdline_fixed_string_t setup;
2686 /* Common CLI fields for queue setup */
2687 cmdline_parse_token_string_t cmd_setup_rxtx_queue_port =
2688 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, port, "port");
2689 cmdline_parse_token_num_t cmd_setup_rxtx_queue_portid =
2690 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, portid, UINT16);
2691 cmdline_parse_token_string_t cmd_setup_rxtx_queue_rxtxq =
2692 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, rxtxq, "rxq#txq");
2693 cmdline_parse_token_num_t cmd_setup_rxtx_queue_qid =
2694 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, qid, UINT16);
2695 cmdline_parse_token_string_t cmd_setup_rxtx_queue_setup =
2696 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, setup, "setup");
2699 cmd_setup_rxtx_queue_parsed(
2700 void *parsed_result,
2701 __attribute__((unused)) struct cmdline *cl,
2702 __attribute__((unused)) void *data)
2704 struct cmd_setup_rxtx_queue *res = parsed_result;
2705 struct rte_port *port;
2706 struct rte_mempool *mp;
2707 unsigned int socket_id;
2711 if (port_id_is_invalid(res->portid, ENABLED_WARN))
2714 if (res->portid == (portid_t)RTE_PORT_ALL) {
2715 printf("Invalid port id\n");
2719 if (!strcmp(res->rxtxq, "rxq"))
2721 else if (!strcmp(res->rxtxq, "txq"))
2724 printf("Unknown parameter\n");
2728 if (isrx && rx_queue_id_is_invalid(res->qid)) {
2729 printf("Invalid rx queue\n");
2731 } else if (!isrx && tx_queue_id_is_invalid(res->qid)) {
2732 printf("Invalid tx queue\n");
2736 port = &ports[res->portid];
2738 socket_id = rxring_numa[res->portid];
2739 if (!numa_support || socket_id == NUMA_NO_CONFIG)
2740 socket_id = port->socket_id;
2742 mp = mbuf_pool_find(socket_id);
2744 printf("Failed to setup RX queue: "
2745 "No mempool allocation"
2746 " on the socket %d\n",
2747 rxring_numa[res->portid]);
2750 ret = rte_eth_rx_queue_setup(res->portid,
2752 port->nb_rx_desc[res->qid],
2754 &port->rx_conf[res->qid],
2757 printf("Failed to setup RX queue\n");
2759 socket_id = txring_numa[res->portid];
2760 if (!numa_support || socket_id == NUMA_NO_CONFIG)
2761 socket_id = port->socket_id;
2763 ret = rte_eth_tx_queue_setup(res->portid,
2765 port->nb_tx_desc[res->qid],
2767 &port->tx_conf[res->qid]);
2769 printf("Failed to setup TX queue\n");
2773 cmdline_parse_inst_t cmd_setup_rxtx_queue = {
2774 .f = cmd_setup_rxtx_queue_parsed,
2776 .help_str = "port <port_id> rxq|txq <queue_idx> setup",
2778 (void *)&cmd_setup_rxtx_queue_port,
2779 (void *)&cmd_setup_rxtx_queue_portid,
2780 (void *)&cmd_setup_rxtx_queue_rxtxq,
2781 (void *)&cmd_setup_rxtx_queue_qid,
2782 (void *)&cmd_setup_rxtx_queue_setup,
2788 /* *** Configure RSS RETA *** */
2789 struct cmd_config_rss_reta {
2790 cmdline_fixed_string_t port;
2791 cmdline_fixed_string_t keyword;
2793 cmdline_fixed_string_t name;
2794 cmdline_fixed_string_t list_name;
2795 cmdline_fixed_string_t list_of_items;
2799 parse_reta_config(const char *str,
2800 struct rte_eth_rss_reta_entry64 *reta_conf,
2801 uint16_t nb_entries)
2805 uint16_t hash_index, idx, shift;
2808 const char *p, *p0 = str;
2815 unsigned long int_fld[_NUM_FLD];
2816 char *str_fld[_NUM_FLD];
2818 while ((p = strchr(p0,'(')) != NULL) {
2820 if((p0 = strchr(p,')')) == NULL)
2824 if(size >= sizeof(s))
2827 snprintf(s, sizeof(s), "%.*s", size, p);
2828 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
2830 for (i = 0; i < _NUM_FLD; i++) {
2832 int_fld[i] = strtoul(str_fld[i], &end, 0);
2833 if (errno != 0 || end == str_fld[i] ||
2838 hash_index = (uint16_t)int_fld[FLD_HASH_INDEX];
2839 nb_queue = (uint16_t)int_fld[FLD_QUEUE];
2841 if (hash_index >= nb_entries) {
2842 printf("Invalid RETA hash index=%d\n", hash_index);
2846 idx = hash_index / RTE_RETA_GROUP_SIZE;
2847 shift = hash_index % RTE_RETA_GROUP_SIZE;
2848 reta_conf[idx].mask |= (1ULL << shift);
2849 reta_conf[idx].reta[shift] = nb_queue;
2856 cmd_set_rss_reta_parsed(void *parsed_result,
2857 __attribute__((unused)) struct cmdline *cl,
2858 __attribute__((unused)) void *data)
2861 struct rte_eth_dev_info dev_info;
2862 struct rte_eth_rss_reta_entry64 reta_conf[8];
2863 struct cmd_config_rss_reta *res = parsed_result;
2865 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
2869 if (dev_info.reta_size == 0) {
2870 printf("Redirection table size is 0 which is "
2871 "invalid for RSS\n");
2874 printf("The reta size of port %d is %u\n",
2875 res->port_id, dev_info.reta_size);
2876 if (dev_info.reta_size > ETH_RSS_RETA_SIZE_512) {
2877 printf("Currently do not support more than %u entries of "
2878 "redirection table\n", ETH_RSS_RETA_SIZE_512);
2882 memset(reta_conf, 0, sizeof(reta_conf));
2883 if (!strcmp(res->list_name, "reta")) {
2884 if (parse_reta_config(res->list_of_items, reta_conf,
2885 dev_info.reta_size)) {
2886 printf("Invalid RSS Redirection Table "
2887 "config entered\n");
2890 ret = rte_eth_dev_rss_reta_update(res->port_id,
2891 reta_conf, dev_info.reta_size);
2893 printf("Bad redirection table parameter, "
2894 "return code = %d \n", ret);
2898 cmdline_parse_token_string_t cmd_config_rss_reta_port =
2899 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, port, "port");
2900 cmdline_parse_token_string_t cmd_config_rss_reta_keyword =
2901 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, keyword, "config");
2902 cmdline_parse_token_num_t cmd_config_rss_reta_port_id =
2903 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_reta, port_id, UINT16);
2904 cmdline_parse_token_string_t cmd_config_rss_reta_name =
2905 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, name, "rss");
2906 cmdline_parse_token_string_t cmd_config_rss_reta_list_name =
2907 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_name, "reta");
2908 cmdline_parse_token_string_t cmd_config_rss_reta_list_of_items =
2909 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_of_items,
2911 cmdline_parse_inst_t cmd_config_rss_reta = {
2912 .f = cmd_set_rss_reta_parsed,
2914 .help_str = "port config <port_id> rss reta <hash,queue[,hash,queue]*>",
2916 (void *)&cmd_config_rss_reta_port,
2917 (void *)&cmd_config_rss_reta_keyword,
2918 (void *)&cmd_config_rss_reta_port_id,
2919 (void *)&cmd_config_rss_reta_name,
2920 (void *)&cmd_config_rss_reta_list_name,
2921 (void *)&cmd_config_rss_reta_list_of_items,
2926 /* *** SHOW PORT RETA INFO *** */
2927 struct cmd_showport_reta {
2928 cmdline_fixed_string_t show;
2929 cmdline_fixed_string_t port;
2931 cmdline_fixed_string_t rss;
2932 cmdline_fixed_string_t reta;
2934 cmdline_fixed_string_t list_of_items;
2938 showport_parse_reta_config(struct rte_eth_rss_reta_entry64 *conf,
2939 uint16_t nb_entries,
2943 const char *p, *p0 = str;
2948 uint16_t num = (nb_entries + RTE_RETA_GROUP_SIZE - 1) /
2949 RTE_RETA_GROUP_SIZE;
2952 p = strchr(p0, '(');
2956 p0 = strchr(p, ')');
2960 if (size >= sizeof(s)) {
2961 printf("The string size exceeds the internal buffer size\n");
2964 snprintf(s, sizeof(s), "%.*s", size, p);
2965 ret = rte_strsplit(s, sizeof(s), str_fld, num, ',');
2966 if (ret <= 0 || ret != num) {
2967 printf("The bits of masks do not match the number of "
2968 "reta entries: %u\n", num);
2971 for (i = 0; i < ret; i++)
2972 conf[i].mask = (uint64_t)strtoul(str_fld[i], &end, 0);
2978 cmd_showport_reta_parsed(void *parsed_result,
2979 __attribute__((unused)) struct cmdline *cl,
2980 __attribute__((unused)) void *data)
2982 struct cmd_showport_reta *res = parsed_result;
2983 struct rte_eth_rss_reta_entry64 reta_conf[8];
2984 struct rte_eth_dev_info dev_info;
2985 uint16_t max_reta_size;
2988 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
2992 max_reta_size = RTE_MIN(dev_info.reta_size, ETH_RSS_RETA_SIZE_512);
2993 if (res->size == 0 || res->size > max_reta_size) {
2994 printf("Invalid redirection table size: %u (1-%u)\n",
2995 res->size, max_reta_size);
2999 memset(reta_conf, 0, sizeof(reta_conf));
3000 if (showport_parse_reta_config(reta_conf, res->size,
3001 res->list_of_items) < 0) {
3002 printf("Invalid string: %s for reta masks\n",
3003 res->list_of_items);
3006 port_rss_reta_info(res->port_id, reta_conf, res->size);
3009 cmdline_parse_token_string_t cmd_showport_reta_show =
3010 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, show, "show");
3011 cmdline_parse_token_string_t cmd_showport_reta_port =
3012 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, port, "port");
3013 cmdline_parse_token_num_t cmd_showport_reta_port_id =
3014 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, port_id, UINT16);
3015 cmdline_parse_token_string_t cmd_showport_reta_rss =
3016 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, rss, "rss");
3017 cmdline_parse_token_string_t cmd_showport_reta_reta =
3018 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, reta, "reta");
3019 cmdline_parse_token_num_t cmd_showport_reta_size =
3020 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, size, UINT16);
3021 cmdline_parse_token_string_t cmd_showport_reta_list_of_items =
3022 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta,
3023 list_of_items, NULL);
3025 cmdline_parse_inst_t cmd_showport_reta = {
3026 .f = cmd_showport_reta_parsed,
3028 .help_str = "show port <port_id> rss reta <size> <mask0[,mask1]*>",
3030 (void *)&cmd_showport_reta_show,
3031 (void *)&cmd_showport_reta_port,
3032 (void *)&cmd_showport_reta_port_id,
3033 (void *)&cmd_showport_reta_rss,
3034 (void *)&cmd_showport_reta_reta,
3035 (void *)&cmd_showport_reta_size,
3036 (void *)&cmd_showport_reta_list_of_items,
3041 /* *** Show RSS hash configuration *** */
3042 struct cmd_showport_rss_hash {
3043 cmdline_fixed_string_t show;
3044 cmdline_fixed_string_t port;
3046 cmdline_fixed_string_t rss_hash;
3047 cmdline_fixed_string_t rss_type;
3048 cmdline_fixed_string_t key; /* optional argument */
3051 static void cmd_showport_rss_hash_parsed(void *parsed_result,
3052 __attribute__((unused)) struct cmdline *cl,
3055 struct cmd_showport_rss_hash *res = parsed_result;
3057 port_rss_hash_conf_show(res->port_id, show_rss_key != NULL);
3060 cmdline_parse_token_string_t cmd_showport_rss_hash_show =
3061 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, show, "show");
3062 cmdline_parse_token_string_t cmd_showport_rss_hash_port =
3063 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, port, "port");
3064 cmdline_parse_token_num_t cmd_showport_rss_hash_port_id =
3065 TOKEN_NUM_INITIALIZER(struct cmd_showport_rss_hash, port_id, UINT16);
3066 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash =
3067 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_hash,
3069 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_key =
3070 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, key, "key");
3072 cmdline_parse_inst_t cmd_showport_rss_hash = {
3073 .f = cmd_showport_rss_hash_parsed,
3075 .help_str = "show port <port_id> rss-hash",
3077 (void *)&cmd_showport_rss_hash_show,
3078 (void *)&cmd_showport_rss_hash_port,
3079 (void *)&cmd_showport_rss_hash_port_id,
3080 (void *)&cmd_showport_rss_hash_rss_hash,
3085 cmdline_parse_inst_t cmd_showport_rss_hash_key = {
3086 .f = cmd_showport_rss_hash_parsed,
3088 .help_str = "show port <port_id> rss-hash key",
3090 (void *)&cmd_showport_rss_hash_show,
3091 (void *)&cmd_showport_rss_hash_port,
3092 (void *)&cmd_showport_rss_hash_port_id,
3093 (void *)&cmd_showport_rss_hash_rss_hash,
3094 (void *)&cmd_showport_rss_hash_rss_key,
3099 /* *** Configure DCB *** */
3100 struct cmd_config_dcb {
3101 cmdline_fixed_string_t port;
3102 cmdline_fixed_string_t config;
3104 cmdline_fixed_string_t dcb;
3105 cmdline_fixed_string_t vt;
3106 cmdline_fixed_string_t vt_en;
3108 cmdline_fixed_string_t pfc;
3109 cmdline_fixed_string_t pfc_en;
3113 cmd_config_dcb_parsed(void *parsed_result,
3114 __attribute__((unused)) struct cmdline *cl,
3115 __attribute__((unused)) void *data)
3117 struct cmd_config_dcb *res = parsed_result;
3118 portid_t port_id = res->port_id;
3119 struct rte_port *port;
3123 port = &ports[port_id];
3124 /** Check if the port is not started **/
3125 if (port->port_status != RTE_PORT_STOPPED) {
3126 printf("Please stop port %d first\n", port_id);
3130 if ((res->num_tcs != ETH_4_TCS) && (res->num_tcs != ETH_8_TCS)) {
3131 printf("The invalid number of traffic class,"
3132 " only 4 or 8 allowed.\n");
3136 if (nb_fwd_lcores < res->num_tcs) {
3137 printf("nb_cores shouldn't be less than number of TCs.\n");
3140 if (!strncmp(res->pfc_en, "on", 2))
3145 /* DCB in VT mode */
3146 if (!strncmp(res->vt_en, "on", 2))
3147 ret = init_port_dcb_config(port_id, DCB_VT_ENABLED,
3148 (enum rte_eth_nb_tcs)res->num_tcs,
3151 ret = init_port_dcb_config(port_id, DCB_ENABLED,
3152 (enum rte_eth_nb_tcs)res->num_tcs,
3157 printf("Cannot initialize network ports.\n");
3161 cmd_reconfig_device_queue(port_id, 1, 1);
3164 cmdline_parse_token_string_t cmd_config_dcb_port =
3165 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, port, "port");
3166 cmdline_parse_token_string_t cmd_config_dcb_config =
3167 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, config, "config");
3168 cmdline_parse_token_num_t cmd_config_dcb_port_id =
3169 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, port_id, UINT16);
3170 cmdline_parse_token_string_t cmd_config_dcb_dcb =
3171 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, dcb, "dcb");
3172 cmdline_parse_token_string_t cmd_config_dcb_vt =
3173 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt, "vt");
3174 cmdline_parse_token_string_t cmd_config_dcb_vt_en =
3175 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt_en, "on#off");
3176 cmdline_parse_token_num_t cmd_config_dcb_num_tcs =
3177 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, num_tcs, UINT8);
3178 cmdline_parse_token_string_t cmd_config_dcb_pfc=
3179 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc, "pfc");
3180 cmdline_parse_token_string_t cmd_config_dcb_pfc_en =
3181 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc_en, "on#off");
3183 cmdline_parse_inst_t cmd_config_dcb = {
3184 .f = cmd_config_dcb_parsed,
3186 .help_str = "port config <port-id> dcb vt on|off <num_tcs> pfc on|off",
3188 (void *)&cmd_config_dcb_port,
3189 (void *)&cmd_config_dcb_config,
3190 (void *)&cmd_config_dcb_port_id,
3191 (void *)&cmd_config_dcb_dcb,
3192 (void *)&cmd_config_dcb_vt,
3193 (void *)&cmd_config_dcb_vt_en,
3194 (void *)&cmd_config_dcb_num_tcs,
3195 (void *)&cmd_config_dcb_pfc,
3196 (void *)&cmd_config_dcb_pfc_en,
3201 /* *** configure number of packets per burst *** */
3202 struct cmd_config_burst {
3203 cmdline_fixed_string_t port;
3204 cmdline_fixed_string_t keyword;
3205 cmdline_fixed_string_t all;
3206 cmdline_fixed_string_t name;
3211 cmd_config_burst_parsed(void *parsed_result,
3212 __attribute__((unused)) struct cmdline *cl,
3213 __attribute__((unused)) void *data)
3215 struct cmd_config_burst *res = parsed_result;
3216 struct rte_eth_dev_info dev_info;
3217 uint16_t rec_nb_pkts;
3220 if (!all_ports_stopped()) {
3221 printf("Please stop all ports first\n");
3225 if (!strcmp(res->name, "burst")) {
3226 if (res->value == 0) {
3227 /* If user gives a value of zero, query the PMD for
3228 * its recommended Rx burst size. Testpmd uses a single
3229 * size for all ports, so assume all ports are the same
3230 * NIC model and use the values from Port 0.
3232 ret = eth_dev_info_get_print_err(0, &dev_info);
3236 rec_nb_pkts = dev_info.default_rxportconf.burst_size;
3238 if (rec_nb_pkts == 0) {
3239 printf("PMD does not recommend a burst size.\n"
3240 "User provided value must be between"
3241 " 1 and %d\n", MAX_PKT_BURST);
3243 } else if (rec_nb_pkts > MAX_PKT_BURST) {
3244 printf("PMD recommended burst size of %d"
3245 " exceeds maximum value of %d\n",
3246 rec_nb_pkts, MAX_PKT_BURST);
3249 printf("Using PMD-provided burst value of %d\n",
3251 nb_pkt_per_burst = rec_nb_pkts;
3252 } else if (res->value > MAX_PKT_BURST) {
3253 printf("burst must be >= 1 && <= %d\n", MAX_PKT_BURST);
3256 nb_pkt_per_burst = res->value;
3258 printf("Unknown parameter\n");
3264 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3267 cmdline_parse_token_string_t cmd_config_burst_port =
3268 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, port, "port");
3269 cmdline_parse_token_string_t cmd_config_burst_keyword =
3270 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, keyword, "config");
3271 cmdline_parse_token_string_t cmd_config_burst_all =
3272 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, all, "all");
3273 cmdline_parse_token_string_t cmd_config_burst_name =
3274 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, name, "burst");
3275 cmdline_parse_token_num_t cmd_config_burst_value =
3276 TOKEN_NUM_INITIALIZER(struct cmd_config_burst, value, UINT16);
3278 cmdline_parse_inst_t cmd_config_burst = {
3279 .f = cmd_config_burst_parsed,
3281 .help_str = "port config all burst <value>",
3283 (void *)&cmd_config_burst_port,
3284 (void *)&cmd_config_burst_keyword,
3285 (void *)&cmd_config_burst_all,
3286 (void *)&cmd_config_burst_name,
3287 (void *)&cmd_config_burst_value,
3292 /* *** configure rx/tx queues *** */
3293 struct cmd_config_thresh {
3294 cmdline_fixed_string_t port;
3295 cmdline_fixed_string_t keyword;
3296 cmdline_fixed_string_t all;
3297 cmdline_fixed_string_t name;
3302 cmd_config_thresh_parsed(void *parsed_result,
3303 __attribute__((unused)) struct cmdline *cl,
3304 __attribute__((unused)) void *data)
3306 struct cmd_config_thresh *res = parsed_result;
3308 if (!all_ports_stopped()) {
3309 printf("Please stop all ports first\n");
3313 if (!strcmp(res->name, "txpt"))
3314 tx_pthresh = res->value;
3315 else if(!strcmp(res->name, "txht"))
3316 tx_hthresh = res->value;
3317 else if(!strcmp(res->name, "txwt"))
3318 tx_wthresh = res->value;
3319 else if(!strcmp(res->name, "rxpt"))
3320 rx_pthresh = res->value;
3321 else if(!strcmp(res->name, "rxht"))
3322 rx_hthresh = res->value;
3323 else if(!strcmp(res->name, "rxwt"))
3324 rx_wthresh = res->value;
3326 printf("Unknown parameter\n");
3332 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3335 cmdline_parse_token_string_t cmd_config_thresh_port =
3336 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, port, "port");
3337 cmdline_parse_token_string_t cmd_config_thresh_keyword =
3338 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, keyword, "config");
3339 cmdline_parse_token_string_t cmd_config_thresh_all =
3340 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, all, "all");
3341 cmdline_parse_token_string_t cmd_config_thresh_name =
3342 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, name,
3343 "txpt#txht#txwt#rxpt#rxht#rxwt");
3344 cmdline_parse_token_num_t cmd_config_thresh_value =
3345 TOKEN_NUM_INITIALIZER(struct cmd_config_thresh, value, UINT8);
3347 cmdline_parse_inst_t cmd_config_thresh = {
3348 .f = cmd_config_thresh_parsed,
3350 .help_str = "port config all txpt|txht|txwt|rxpt|rxht|rxwt <value>",
3352 (void *)&cmd_config_thresh_port,
3353 (void *)&cmd_config_thresh_keyword,
3354 (void *)&cmd_config_thresh_all,
3355 (void *)&cmd_config_thresh_name,
3356 (void *)&cmd_config_thresh_value,
3361 /* *** configure free/rs threshold *** */
3362 struct cmd_config_threshold {
3363 cmdline_fixed_string_t port;
3364 cmdline_fixed_string_t keyword;
3365 cmdline_fixed_string_t all;
3366 cmdline_fixed_string_t name;
3371 cmd_config_threshold_parsed(void *parsed_result,
3372 __attribute__((unused)) struct cmdline *cl,
3373 __attribute__((unused)) void *data)
3375 struct cmd_config_threshold *res = parsed_result;
3377 if (!all_ports_stopped()) {
3378 printf("Please stop all ports first\n");
3382 if (!strcmp(res->name, "txfreet"))
3383 tx_free_thresh = res->value;
3384 else if (!strcmp(res->name, "txrst"))
3385 tx_rs_thresh = res->value;
3386 else if (!strcmp(res->name, "rxfreet"))
3387 rx_free_thresh = res->value;
3389 printf("Unknown parameter\n");
3395 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3398 cmdline_parse_token_string_t cmd_config_threshold_port =
3399 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, port, "port");
3400 cmdline_parse_token_string_t cmd_config_threshold_keyword =
3401 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, keyword,
3403 cmdline_parse_token_string_t cmd_config_threshold_all =
3404 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, all, "all");
3405 cmdline_parse_token_string_t cmd_config_threshold_name =
3406 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, name,
3407 "txfreet#txrst#rxfreet");
3408 cmdline_parse_token_num_t cmd_config_threshold_value =
3409 TOKEN_NUM_INITIALIZER(struct cmd_config_threshold, value, UINT16);
3411 cmdline_parse_inst_t cmd_config_threshold = {
3412 .f = cmd_config_threshold_parsed,
3414 .help_str = "port config all txfreet|txrst|rxfreet <value>",
3416 (void *)&cmd_config_threshold_port,
3417 (void *)&cmd_config_threshold_keyword,
3418 (void *)&cmd_config_threshold_all,
3419 (void *)&cmd_config_threshold_name,
3420 (void *)&cmd_config_threshold_value,
3426 struct cmd_stop_result {
3427 cmdline_fixed_string_t stop;
3430 static void cmd_stop_parsed(__attribute__((unused)) void *parsed_result,
3431 __attribute__((unused)) struct cmdline *cl,
3432 __attribute__((unused)) void *data)
3434 stop_packet_forwarding();
3437 cmdline_parse_token_string_t cmd_stop_stop =
3438 TOKEN_STRING_INITIALIZER(struct cmd_stop_result, stop, "stop");
3440 cmdline_parse_inst_t cmd_stop = {
3441 .f = cmd_stop_parsed,
3443 .help_str = "stop: Stop packet forwarding",
3445 (void *)&cmd_stop_stop,
3450 /* *** SET CORELIST and PORTLIST CONFIGURATION *** */
3453 parse_item_list(char* str, const char* item_name, unsigned int max_items,
3454 unsigned int *parsed_items, int check_unique_values)
3456 unsigned int nb_item;
3464 * First parse all items in the list and store their value.
3469 for (i = 0; i < strnlen(str, STR_TOKEN_SIZE); i++) {
3471 if ((c >= '0') && (c <= '9')) {
3472 value = (unsigned int) (value * 10 + (c - '0'));
3477 printf("character %c is not a decimal digit\n", c);
3481 printf("No valid value before comma\n");
3484 if (nb_item < max_items) {
3485 parsed_items[nb_item] = value;
3491 if (nb_item >= max_items) {
3492 printf("Number of %s = %u > %u (maximum items)\n",
3493 item_name, nb_item + 1, max_items);
3496 parsed_items[nb_item++] = value;
3497 if (! check_unique_values)
3501 * Then, check that all values in the list are differents.
3502 * No optimization here...
3504 for (i = 0; i < nb_item; i++) {
3505 for (j = i + 1; j < nb_item; j++) {
3506 if (parsed_items[j] == parsed_items[i]) {
3507 printf("duplicated %s %u at index %u and %u\n",
3508 item_name, parsed_items[i], i, j);
3516 struct cmd_set_list_result {
3517 cmdline_fixed_string_t cmd_keyword;
3518 cmdline_fixed_string_t list_name;
3519 cmdline_fixed_string_t list_of_items;
3522 static void cmd_set_list_parsed(void *parsed_result,
3523 __attribute__((unused)) struct cmdline *cl,
3524 __attribute__((unused)) void *data)
3526 struct cmd_set_list_result *res;
3528 unsigned int lcorelist[RTE_MAX_LCORE];
3529 unsigned int portlist[RTE_MAX_ETHPORTS];
3531 unsigned int nb_item;
3533 if (test_done == 0) {
3534 printf("Please stop forwarding first\n");
3538 res = parsed_result;
3539 if (!strcmp(res->list_name, "corelist")) {
3540 nb_item = parse_item_list(res->list_of_items, "core",
3542 parsed_items.lcorelist, 1);
3544 set_fwd_lcores_list(parsed_items.lcorelist, nb_item);
3549 if (!strcmp(res->list_name, "portlist")) {
3550 nb_item = parse_item_list(res->list_of_items, "port",
3552 parsed_items.portlist, 1);
3554 set_fwd_ports_list(parsed_items.portlist, nb_item);
3560 cmdline_parse_token_string_t cmd_set_list_keyword =
3561 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, cmd_keyword,
3563 cmdline_parse_token_string_t cmd_set_list_name =
3564 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_name,
3565 "corelist#portlist");
3566 cmdline_parse_token_string_t cmd_set_list_of_items =
3567 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_of_items,
3570 cmdline_parse_inst_t cmd_set_fwd_list = {
3571 .f = cmd_set_list_parsed,
3573 .help_str = "set corelist|portlist <list0[,list1]*>",
3575 (void *)&cmd_set_list_keyword,
3576 (void *)&cmd_set_list_name,
3577 (void *)&cmd_set_list_of_items,
3582 /* *** SET COREMASK and PORTMASK CONFIGURATION *** */
3584 struct cmd_setmask_result {
3585 cmdline_fixed_string_t set;
3586 cmdline_fixed_string_t mask;
3590 static void cmd_set_mask_parsed(void *parsed_result,
3591 __attribute__((unused)) struct cmdline *cl,
3592 __attribute__((unused)) void *data)
3594 struct cmd_setmask_result *res = parsed_result;
3596 if (test_done == 0) {
3597 printf("Please stop forwarding first\n");
3600 if (!strcmp(res->mask, "coremask")) {
3601 set_fwd_lcores_mask(res->hexavalue);
3603 } else if (!strcmp(res->mask, "portmask")) {
3604 set_fwd_ports_mask(res->hexavalue);
3609 cmdline_parse_token_string_t cmd_setmask_set =
3610 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, set, "set");
3611 cmdline_parse_token_string_t cmd_setmask_mask =
3612 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, mask,
3613 "coremask#portmask");
3614 cmdline_parse_token_num_t cmd_setmask_value =
3615 TOKEN_NUM_INITIALIZER(struct cmd_setmask_result, hexavalue, UINT64);
3617 cmdline_parse_inst_t cmd_set_fwd_mask = {
3618 .f = cmd_set_mask_parsed,
3620 .help_str = "set coremask|portmask <hexadecimal value>",
3622 (void *)&cmd_setmask_set,
3623 (void *)&cmd_setmask_mask,
3624 (void *)&cmd_setmask_value,
3630 * SET NBPORT, NBCORE, PACKET BURST, and VERBOSE LEVEL CONFIGURATION
3632 struct cmd_set_result {
3633 cmdline_fixed_string_t set;
3634 cmdline_fixed_string_t what;
3638 static void cmd_set_parsed(void *parsed_result,
3639 __attribute__((unused)) struct cmdline *cl,
3640 __attribute__((unused)) void *data)
3642 struct cmd_set_result *res = parsed_result;
3643 if (!strcmp(res->what, "nbport")) {
3644 set_fwd_ports_number(res->value);
3646 } else if (!strcmp(res->what, "nbcore")) {
3647 set_fwd_lcores_number(res->value);
3649 } else if (!strcmp(res->what, "burst"))
3650 set_nb_pkt_per_burst(res->value);
3651 else if (!strcmp(res->what, "verbose"))
3652 set_verbose_level(res->value);
3655 cmdline_parse_token_string_t cmd_set_set =
3656 TOKEN_STRING_INITIALIZER(struct cmd_set_result, set, "set");
3657 cmdline_parse_token_string_t cmd_set_what =
3658 TOKEN_STRING_INITIALIZER(struct cmd_set_result, what,
3659 "nbport#nbcore#burst#verbose");
3660 cmdline_parse_token_num_t cmd_set_value =
3661 TOKEN_NUM_INITIALIZER(struct cmd_set_result, value, UINT16);
3663 cmdline_parse_inst_t cmd_set_numbers = {
3664 .f = cmd_set_parsed,
3666 .help_str = "set nbport|nbcore|burst|verbose <value>",
3668 (void *)&cmd_set_set,
3669 (void *)&cmd_set_what,
3670 (void *)&cmd_set_value,
3675 /* *** SET LOG LEVEL CONFIGURATION *** */
3677 struct cmd_set_log_result {
3678 cmdline_fixed_string_t set;
3679 cmdline_fixed_string_t log;
3680 cmdline_fixed_string_t type;
3685 cmd_set_log_parsed(void *parsed_result,
3686 __attribute__((unused)) struct cmdline *cl,
3687 __attribute__((unused)) void *data)
3689 struct cmd_set_log_result *res;
3692 res = parsed_result;
3693 if (!strcmp(res->type, "global"))
3694 rte_log_set_global_level(res->level);
3696 ret = rte_log_set_level_regexp(res->type, res->level);
3698 printf("Unable to set log level\n");
3702 cmdline_parse_token_string_t cmd_set_log_set =
3703 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, set, "set");
3704 cmdline_parse_token_string_t cmd_set_log_log =
3705 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, log, "log");
3706 cmdline_parse_token_string_t cmd_set_log_type =
3707 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, type, NULL);
3708 cmdline_parse_token_num_t cmd_set_log_level =
3709 TOKEN_NUM_INITIALIZER(struct cmd_set_log_result, level, UINT32);
3711 cmdline_parse_inst_t cmd_set_log = {
3712 .f = cmd_set_log_parsed,
3714 .help_str = "set log global|<type> <level>",
3716 (void *)&cmd_set_log_set,
3717 (void *)&cmd_set_log_log,
3718 (void *)&cmd_set_log_type,
3719 (void *)&cmd_set_log_level,
3724 /* *** SET SEGMENT LENGTHS OF TXONLY PACKETS *** */
3726 struct cmd_set_txpkts_result {
3727 cmdline_fixed_string_t cmd_keyword;
3728 cmdline_fixed_string_t txpkts;
3729 cmdline_fixed_string_t seg_lengths;
3733 cmd_set_txpkts_parsed(void *parsed_result,
3734 __attribute__((unused)) struct cmdline *cl,
3735 __attribute__((unused)) void *data)
3737 struct cmd_set_txpkts_result *res;
3738 unsigned seg_lengths[RTE_MAX_SEGS_PER_PKT];
3739 unsigned int nb_segs;
3741 res = parsed_result;
3742 nb_segs = parse_item_list(res->seg_lengths, "segment lengths",
3743 RTE_MAX_SEGS_PER_PKT, seg_lengths, 0);
3745 set_tx_pkt_segments(seg_lengths, nb_segs);
3748 cmdline_parse_token_string_t cmd_set_txpkts_keyword =
3749 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
3750 cmd_keyword, "set");
3751 cmdline_parse_token_string_t cmd_set_txpkts_name =
3752 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
3754 cmdline_parse_token_string_t cmd_set_txpkts_lengths =
3755 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
3758 cmdline_parse_inst_t cmd_set_txpkts = {
3759 .f = cmd_set_txpkts_parsed,
3761 .help_str = "set txpkts <len0[,len1]*>",
3763 (void *)&cmd_set_txpkts_keyword,
3764 (void *)&cmd_set_txpkts_name,
3765 (void *)&cmd_set_txpkts_lengths,
3770 /* *** SET COPY AND SPLIT POLICY ON TX PACKETS *** */
3772 struct cmd_set_txsplit_result {
3773 cmdline_fixed_string_t cmd_keyword;
3774 cmdline_fixed_string_t txsplit;
3775 cmdline_fixed_string_t mode;
3779 cmd_set_txsplit_parsed(void *parsed_result,
3780 __attribute__((unused)) struct cmdline *cl,
3781 __attribute__((unused)) void *data)
3783 struct cmd_set_txsplit_result *res;
3785 res = parsed_result;
3786 set_tx_pkt_split(res->mode);
3789 cmdline_parse_token_string_t cmd_set_txsplit_keyword =
3790 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
3791 cmd_keyword, "set");
3792 cmdline_parse_token_string_t cmd_set_txsplit_name =
3793 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
3794 txsplit, "txsplit");
3795 cmdline_parse_token_string_t cmd_set_txsplit_mode =
3796 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
3799 cmdline_parse_inst_t cmd_set_txsplit = {
3800 .f = cmd_set_txsplit_parsed,
3802 .help_str = "set txsplit on|off|rand",
3804 (void *)&cmd_set_txsplit_keyword,
3805 (void *)&cmd_set_txsplit_name,
3806 (void *)&cmd_set_txsplit_mode,
3811 /* *** ADD/REMOVE ALL VLAN IDENTIFIERS TO/FROM A PORT VLAN RX FILTER *** */
3812 struct cmd_rx_vlan_filter_all_result {
3813 cmdline_fixed_string_t rx_vlan;
3814 cmdline_fixed_string_t what;
3815 cmdline_fixed_string_t all;
3820 cmd_rx_vlan_filter_all_parsed(void *parsed_result,
3821 __attribute__((unused)) struct cmdline *cl,
3822 __attribute__((unused)) void *data)
3824 struct cmd_rx_vlan_filter_all_result *res = parsed_result;
3826 if (!strcmp(res->what, "add"))
3827 rx_vlan_all_filter_set(res->port_id, 1);
3829 rx_vlan_all_filter_set(res->port_id, 0);
3832 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_rx_vlan =
3833 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
3834 rx_vlan, "rx_vlan");
3835 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_what =
3836 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
3838 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_all =
3839 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
3841 cmdline_parse_token_num_t cmd_rx_vlan_filter_all_portid =
3842 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
3845 cmdline_parse_inst_t cmd_rx_vlan_filter_all = {
3846 .f = cmd_rx_vlan_filter_all_parsed,
3848 .help_str = "rx_vlan add|rm all <port_id>: "
3849 "Add/Remove all identifiers to/from the set of VLAN "
3850 "identifiers filtered by a port",
3852 (void *)&cmd_rx_vlan_filter_all_rx_vlan,
3853 (void *)&cmd_rx_vlan_filter_all_what,
3854 (void *)&cmd_rx_vlan_filter_all_all,
3855 (void *)&cmd_rx_vlan_filter_all_portid,
3860 /* *** VLAN OFFLOAD SET ON A PORT *** */
3861 struct cmd_vlan_offload_result {
3862 cmdline_fixed_string_t vlan;
3863 cmdline_fixed_string_t set;
3864 cmdline_fixed_string_t vlan_type;
3865 cmdline_fixed_string_t what;
3866 cmdline_fixed_string_t on;
3867 cmdline_fixed_string_t port_id;
3871 cmd_vlan_offload_parsed(void *parsed_result,
3872 __attribute__((unused)) struct cmdline *cl,
3873 __attribute__((unused)) void *data)
3876 struct cmd_vlan_offload_result *res = parsed_result;
3879 portid_t port_id = 0;
3883 len = strnlen(str, STR_TOKEN_SIZE);
3885 /* Get port_id first */
3893 tmp = strtoul(str, NULL, 0);
3894 /* If port_id greater that what portid_t can represent, return */
3895 if(tmp >= RTE_MAX_ETHPORTS)
3897 port_id = (portid_t)tmp;
3899 if (!strcmp(res->on, "on"))
3904 if (!strcmp(res->what, "strip"))
3905 rx_vlan_strip_set(port_id, on);
3906 else if(!strcmp(res->what, "stripq")){
3907 uint16_t queue_id = 0;
3909 /* No queue_id, return */
3911 printf("must specify (port,queue_id)\n");
3914 tmp = strtoul(str + i + 1, NULL, 0);
3915 /* If queue_id greater that what 16-bits can represent, return */
3919 queue_id = (uint16_t)tmp;
3920 rx_vlan_strip_set_on_queue(port_id, queue_id, on);
3922 else if (!strcmp(res->what, "filter"))
3923 rx_vlan_filter_set(port_id, on);
3925 vlan_extend_set(port_id, on);
3930 cmdline_parse_token_string_t cmd_vlan_offload_vlan =
3931 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3933 cmdline_parse_token_string_t cmd_vlan_offload_set =
3934 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3936 cmdline_parse_token_string_t cmd_vlan_offload_what =
3937 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3938 what, "strip#filter#qinq#stripq");
3939 cmdline_parse_token_string_t cmd_vlan_offload_on =
3940 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3942 cmdline_parse_token_string_t cmd_vlan_offload_portid =
3943 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3946 cmdline_parse_inst_t cmd_vlan_offload = {
3947 .f = cmd_vlan_offload_parsed,
3949 .help_str = "vlan set strip|filter|qinq|stripq on|off "
3950 "<port_id[,queue_id]>: "
3951 "Filter/Strip for rx side qinq(extended) for both rx/tx sides",
3953 (void *)&cmd_vlan_offload_vlan,
3954 (void *)&cmd_vlan_offload_set,
3955 (void *)&cmd_vlan_offload_what,
3956 (void *)&cmd_vlan_offload_on,
3957 (void *)&cmd_vlan_offload_portid,
3962 /* *** VLAN TPID SET ON A PORT *** */
3963 struct cmd_vlan_tpid_result {
3964 cmdline_fixed_string_t vlan;
3965 cmdline_fixed_string_t set;
3966 cmdline_fixed_string_t vlan_type;
3967 cmdline_fixed_string_t what;
3973 cmd_vlan_tpid_parsed(void *parsed_result,
3974 __attribute__((unused)) struct cmdline *cl,
3975 __attribute__((unused)) void *data)
3977 struct cmd_vlan_tpid_result *res = parsed_result;
3978 enum rte_vlan_type vlan_type;
3980 if (!strcmp(res->vlan_type, "inner"))
3981 vlan_type = ETH_VLAN_TYPE_INNER;
3982 else if (!strcmp(res->vlan_type, "outer"))
3983 vlan_type = ETH_VLAN_TYPE_OUTER;
3985 printf("Unknown vlan type\n");
3988 vlan_tpid_set(res->port_id, vlan_type, res->tp_id);
3991 cmdline_parse_token_string_t cmd_vlan_tpid_vlan =
3992 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
3994 cmdline_parse_token_string_t cmd_vlan_tpid_set =
3995 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
3997 cmdline_parse_token_string_t cmd_vlan_type =
3998 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
3999 vlan_type, "inner#outer");
4000 cmdline_parse_token_string_t cmd_vlan_tpid_what =
4001 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4003 cmdline_parse_token_num_t cmd_vlan_tpid_tpid =
4004 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
4006 cmdline_parse_token_num_t cmd_vlan_tpid_portid =
4007 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
4010 cmdline_parse_inst_t cmd_vlan_tpid = {
4011 .f = cmd_vlan_tpid_parsed,
4013 .help_str = "vlan set inner|outer tpid <tp_id> <port_id>: "
4014 "Set the VLAN Ether type",
4016 (void *)&cmd_vlan_tpid_vlan,
4017 (void *)&cmd_vlan_tpid_set,
4018 (void *)&cmd_vlan_type,
4019 (void *)&cmd_vlan_tpid_what,
4020 (void *)&cmd_vlan_tpid_tpid,
4021 (void *)&cmd_vlan_tpid_portid,
4026 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
4027 struct cmd_rx_vlan_filter_result {
4028 cmdline_fixed_string_t rx_vlan;
4029 cmdline_fixed_string_t what;
4035 cmd_rx_vlan_filter_parsed(void *parsed_result,
4036 __attribute__((unused)) struct cmdline *cl,
4037 __attribute__((unused)) void *data)
4039 struct cmd_rx_vlan_filter_result *res = parsed_result;
4041 if (!strcmp(res->what, "add"))
4042 rx_vft_set(res->port_id, res->vlan_id, 1);
4044 rx_vft_set(res->port_id, res->vlan_id, 0);
4047 cmdline_parse_token_string_t cmd_rx_vlan_filter_rx_vlan =
4048 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
4049 rx_vlan, "rx_vlan");
4050 cmdline_parse_token_string_t cmd_rx_vlan_filter_what =
4051 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
4053 cmdline_parse_token_num_t cmd_rx_vlan_filter_vlanid =
4054 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
4056 cmdline_parse_token_num_t cmd_rx_vlan_filter_portid =
4057 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
4060 cmdline_parse_inst_t cmd_rx_vlan_filter = {
4061 .f = cmd_rx_vlan_filter_parsed,
4063 .help_str = "rx_vlan add|rm <vlan_id> <port_id>: "
4064 "Add/Remove a VLAN identifier to/from the set of VLAN "
4065 "identifiers filtered by a port",
4067 (void *)&cmd_rx_vlan_filter_rx_vlan,
4068 (void *)&cmd_rx_vlan_filter_what,
4069 (void *)&cmd_rx_vlan_filter_vlanid,
4070 (void *)&cmd_rx_vlan_filter_portid,
4075 /* *** ENABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
4076 struct cmd_tx_vlan_set_result {
4077 cmdline_fixed_string_t tx_vlan;
4078 cmdline_fixed_string_t set;
4084 cmd_tx_vlan_set_parsed(void *parsed_result,
4085 __attribute__((unused)) struct cmdline *cl,
4086 __attribute__((unused)) void *data)
4088 struct cmd_tx_vlan_set_result *res = parsed_result;
4090 if (!port_is_stopped(res->port_id)) {
4091 printf("Please stop port %d first\n", res->port_id);
4095 tx_vlan_set(res->port_id, res->vlan_id);
4097 cmd_reconfig_device_queue(res->port_id, 1, 1);
4100 cmdline_parse_token_string_t cmd_tx_vlan_set_tx_vlan =
4101 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
4102 tx_vlan, "tx_vlan");
4103 cmdline_parse_token_string_t cmd_tx_vlan_set_set =
4104 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
4106 cmdline_parse_token_num_t cmd_tx_vlan_set_portid =
4107 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
4109 cmdline_parse_token_num_t cmd_tx_vlan_set_vlanid =
4110 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
4113 cmdline_parse_inst_t cmd_tx_vlan_set = {
4114 .f = cmd_tx_vlan_set_parsed,
4116 .help_str = "tx_vlan set <port_id> <vlan_id>: "
4117 "Enable hardware insertion of a single VLAN header "
4118 "with a given TAG Identifier in packets sent on a port",
4120 (void *)&cmd_tx_vlan_set_tx_vlan,
4121 (void *)&cmd_tx_vlan_set_set,
4122 (void *)&cmd_tx_vlan_set_portid,
4123 (void *)&cmd_tx_vlan_set_vlanid,
4128 /* *** ENABLE HARDWARE INSERTION OF Double VLAN HEADER IN TX PACKETS *** */
4129 struct cmd_tx_vlan_set_qinq_result {
4130 cmdline_fixed_string_t tx_vlan;
4131 cmdline_fixed_string_t set;
4134 uint16_t vlan_id_outer;
4138 cmd_tx_vlan_set_qinq_parsed(void *parsed_result,
4139 __attribute__((unused)) struct cmdline *cl,
4140 __attribute__((unused)) void *data)
4142 struct cmd_tx_vlan_set_qinq_result *res = parsed_result;
4144 if (!port_is_stopped(res->port_id)) {
4145 printf("Please stop port %d first\n", res->port_id);
4149 tx_qinq_set(res->port_id, res->vlan_id, res->vlan_id_outer);
4151 cmd_reconfig_device_queue(res->port_id, 1, 1);
4154 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_tx_vlan =
4155 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4156 tx_vlan, "tx_vlan");
4157 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_set =
4158 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4160 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_portid =
4161 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4163 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid =
4164 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4166 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid_outer =
4167 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4168 vlan_id_outer, UINT16);
4170 cmdline_parse_inst_t cmd_tx_vlan_set_qinq = {
4171 .f = cmd_tx_vlan_set_qinq_parsed,
4173 .help_str = "tx_vlan set <port_id> <vlan_id> <outer_vlan_id>: "
4174 "Enable hardware insertion of double VLAN header "
4175 "with given TAG Identifiers in packets sent on a port",
4177 (void *)&cmd_tx_vlan_set_qinq_tx_vlan,
4178 (void *)&cmd_tx_vlan_set_qinq_set,
4179 (void *)&cmd_tx_vlan_set_qinq_portid,
4180 (void *)&cmd_tx_vlan_set_qinq_vlanid,
4181 (void *)&cmd_tx_vlan_set_qinq_vlanid_outer,
4186 /* *** ENABLE/DISABLE PORT BASED TX VLAN INSERTION *** */
4187 struct cmd_tx_vlan_set_pvid_result {
4188 cmdline_fixed_string_t tx_vlan;
4189 cmdline_fixed_string_t set;
4190 cmdline_fixed_string_t pvid;
4193 cmdline_fixed_string_t mode;
4197 cmd_tx_vlan_set_pvid_parsed(void *parsed_result,
4198 __attribute__((unused)) struct cmdline *cl,
4199 __attribute__((unused)) void *data)
4201 struct cmd_tx_vlan_set_pvid_result *res = parsed_result;
4203 if (strcmp(res->mode, "on") == 0)
4204 tx_vlan_pvid_set(res->port_id, res->vlan_id, 1);
4206 tx_vlan_pvid_set(res->port_id, res->vlan_id, 0);
4209 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_tx_vlan =
4210 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4211 tx_vlan, "tx_vlan");
4212 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_set =
4213 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4215 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_pvid =
4216 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4218 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_port_id =
4219 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4221 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_vlan_id =
4222 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4224 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_mode =
4225 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4228 cmdline_parse_inst_t cmd_tx_vlan_set_pvid = {
4229 .f = cmd_tx_vlan_set_pvid_parsed,
4231 .help_str = "tx_vlan set pvid <port_id> <vlan_id> on|off",
4233 (void *)&cmd_tx_vlan_set_pvid_tx_vlan,
4234 (void *)&cmd_tx_vlan_set_pvid_set,
4235 (void *)&cmd_tx_vlan_set_pvid_pvid,
4236 (void *)&cmd_tx_vlan_set_pvid_port_id,
4237 (void *)&cmd_tx_vlan_set_pvid_vlan_id,
4238 (void *)&cmd_tx_vlan_set_pvid_mode,
4243 /* *** DISABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
4244 struct cmd_tx_vlan_reset_result {
4245 cmdline_fixed_string_t tx_vlan;
4246 cmdline_fixed_string_t reset;
4251 cmd_tx_vlan_reset_parsed(void *parsed_result,
4252 __attribute__((unused)) struct cmdline *cl,
4253 __attribute__((unused)) void *data)
4255 struct cmd_tx_vlan_reset_result *res = parsed_result;
4257 if (!port_is_stopped(res->port_id)) {
4258 printf("Please stop port %d first\n", res->port_id);
4262 tx_vlan_reset(res->port_id);
4264 cmd_reconfig_device_queue(res->port_id, 1, 1);
4267 cmdline_parse_token_string_t cmd_tx_vlan_reset_tx_vlan =
4268 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
4269 tx_vlan, "tx_vlan");
4270 cmdline_parse_token_string_t cmd_tx_vlan_reset_reset =
4271 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
4273 cmdline_parse_token_num_t cmd_tx_vlan_reset_portid =
4274 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_reset_result,
4277 cmdline_parse_inst_t cmd_tx_vlan_reset = {
4278 .f = cmd_tx_vlan_reset_parsed,
4280 .help_str = "tx_vlan reset <port_id>: Disable hardware insertion of a "
4281 "VLAN header in packets sent on a port",
4283 (void *)&cmd_tx_vlan_reset_tx_vlan,
4284 (void *)&cmd_tx_vlan_reset_reset,
4285 (void *)&cmd_tx_vlan_reset_portid,
4291 /* *** ENABLE HARDWARE INSERTION OF CHECKSUM IN TX PACKETS *** */
4292 struct cmd_csum_result {
4293 cmdline_fixed_string_t csum;
4294 cmdline_fixed_string_t mode;
4295 cmdline_fixed_string_t proto;
4296 cmdline_fixed_string_t hwsw;
4301 csum_show(int port_id)
4303 struct rte_eth_dev_info dev_info;
4304 uint64_t tx_offloads;
4307 tx_offloads = ports[port_id].dev_conf.txmode.offloads;
4308 printf("Parse tunnel is %s\n",
4309 (ports[port_id].parse_tunnel) ? "on" : "off");
4310 printf("IP checksum offload is %s\n",
4311 (tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) ? "hw" : "sw");
4312 printf("UDP checksum offload is %s\n",
4313 (tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) ? "hw" : "sw");
4314 printf("TCP checksum offload is %s\n",
4315 (tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) ? "hw" : "sw");
4316 printf("SCTP checksum offload is %s\n",
4317 (tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) ? "hw" : "sw");
4318 printf("Outer-Ip checksum offload is %s\n",
4319 (tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) ? "hw" : "sw");
4320 printf("Outer-Udp checksum offload is %s\n",
4321 (tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) ? "hw" : "sw");
4323 /* display warnings if configuration is not supported by the NIC */
4324 ret = eth_dev_info_get_print_err(port_id, &dev_info);
4328 if ((tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) &&
4329 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) == 0) {
4330 printf("Warning: hardware IP checksum enabled but not "
4331 "supported by port %d\n", port_id);
4333 if ((tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) &&
4334 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) == 0) {
4335 printf("Warning: hardware UDP checksum enabled but not "
4336 "supported by port %d\n", port_id);
4338 if ((tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) &&
4339 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) == 0) {
4340 printf("Warning: hardware TCP checksum enabled but not "
4341 "supported by port %d\n", port_id);
4343 if ((tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) &&
4344 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) == 0) {
4345 printf("Warning: hardware SCTP checksum enabled but not "
4346 "supported by port %d\n", port_id);
4348 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) &&
4349 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) == 0) {
4350 printf("Warning: hardware outer IP checksum enabled but not "
4351 "supported by port %d\n", port_id);
4353 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) &&
4354 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)
4356 printf("Warning: hardware outer UDP checksum enabled but not "
4357 "supported by port %d\n", port_id);
4362 cmd_config_queue_tx_offloads(struct rte_port *port)
4366 /* Apply queue tx offloads configuration */
4367 for (k = 0; k < port->dev_info.max_rx_queues; k++)
4368 port->tx_conf[k].offloads =
4369 port->dev_conf.txmode.offloads;
4373 cmd_csum_parsed(void *parsed_result,
4374 __attribute__((unused)) struct cmdline *cl,
4375 __attribute__((unused)) void *data)
4377 struct cmd_csum_result *res = parsed_result;
4379 uint64_t csum_offloads = 0;
4380 struct rte_eth_dev_info dev_info;
4383 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) {
4384 printf("invalid port %d\n", res->port_id);
4387 if (!port_is_stopped(res->port_id)) {
4388 printf("Please stop port %d first\n", res->port_id);
4392 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
4396 if (!strcmp(res->mode, "set")) {
4398 if (!strcmp(res->hwsw, "hw"))
4401 if (!strcmp(res->proto, "ip")) {
4402 if (hw == 0 || (dev_info.tx_offload_capa &
4403 DEV_TX_OFFLOAD_IPV4_CKSUM)) {
4404 csum_offloads |= DEV_TX_OFFLOAD_IPV4_CKSUM;
4406 printf("IP checksum offload is not supported "
4407 "by port %u\n", res->port_id);
4409 } else if (!strcmp(res->proto, "udp")) {
4410 if (hw == 0 || (dev_info.tx_offload_capa &
4411 DEV_TX_OFFLOAD_UDP_CKSUM)) {
4412 csum_offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
4414 printf("UDP checksum offload is not supported "
4415 "by port %u\n", res->port_id);
4417 } else if (!strcmp(res->proto, "tcp")) {
4418 if (hw == 0 || (dev_info.tx_offload_capa &
4419 DEV_TX_OFFLOAD_TCP_CKSUM)) {
4420 csum_offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
4422 printf("TCP checksum offload is not supported "
4423 "by port %u\n", res->port_id);
4425 } else if (!strcmp(res->proto, "sctp")) {
4426 if (hw == 0 || (dev_info.tx_offload_capa &
4427 DEV_TX_OFFLOAD_SCTP_CKSUM)) {
4428 csum_offloads |= DEV_TX_OFFLOAD_SCTP_CKSUM;
4430 printf("SCTP checksum offload is not supported "
4431 "by port %u\n", res->port_id);
4433 } else if (!strcmp(res->proto, "outer-ip")) {
4434 if (hw == 0 || (dev_info.tx_offload_capa &
4435 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) {
4437 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
4439 printf("Outer IP checksum offload is not "
4440 "supported by port %u\n", res->port_id);
4442 } else if (!strcmp(res->proto, "outer-udp")) {
4443 if (hw == 0 || (dev_info.tx_offload_capa &
4444 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)) {
4446 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM;
4448 printf("Outer UDP checksum offload is not "
4449 "supported by port %u\n", res->port_id);
4454 ports[res->port_id].dev_conf.txmode.offloads |=
4457 ports[res->port_id].dev_conf.txmode.offloads &=
4460 cmd_config_queue_tx_offloads(&ports[res->port_id]);
4462 csum_show(res->port_id);
4464 cmd_reconfig_device_queue(res->port_id, 1, 1);
4467 cmdline_parse_token_string_t cmd_csum_csum =
4468 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4470 cmdline_parse_token_string_t cmd_csum_mode =
4471 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4473 cmdline_parse_token_string_t cmd_csum_proto =
4474 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4475 proto, "ip#tcp#udp#sctp#outer-ip#outer-udp");
4476 cmdline_parse_token_string_t cmd_csum_hwsw =
4477 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4479 cmdline_parse_token_num_t cmd_csum_portid =
4480 TOKEN_NUM_INITIALIZER(struct cmd_csum_result,
4483 cmdline_parse_inst_t cmd_csum_set = {
4484 .f = cmd_csum_parsed,
4486 .help_str = "csum set ip|tcp|udp|sctp|outer-ip|outer-udp hw|sw <port_id>: "
4487 "Enable/Disable hardware calculation of L3/L4 checksum when "
4488 "using csum forward engine",
4490 (void *)&cmd_csum_csum,
4491 (void *)&cmd_csum_mode,
4492 (void *)&cmd_csum_proto,
4493 (void *)&cmd_csum_hwsw,
4494 (void *)&cmd_csum_portid,
4499 cmdline_parse_token_string_t cmd_csum_mode_show =
4500 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4503 cmdline_parse_inst_t cmd_csum_show = {
4504 .f = cmd_csum_parsed,
4506 .help_str = "csum show <port_id>: Show checksum offload configuration",
4508 (void *)&cmd_csum_csum,
4509 (void *)&cmd_csum_mode_show,
4510 (void *)&cmd_csum_portid,
4515 /* Enable/disable tunnel parsing */
4516 struct cmd_csum_tunnel_result {
4517 cmdline_fixed_string_t csum;
4518 cmdline_fixed_string_t parse;
4519 cmdline_fixed_string_t onoff;
4524 cmd_csum_tunnel_parsed(void *parsed_result,
4525 __attribute__((unused)) struct cmdline *cl,
4526 __attribute__((unused)) void *data)
4528 struct cmd_csum_tunnel_result *res = parsed_result;
4530 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4533 if (!strcmp(res->onoff, "on"))
4534 ports[res->port_id].parse_tunnel = 1;
4536 ports[res->port_id].parse_tunnel = 0;
4538 csum_show(res->port_id);
4541 cmdline_parse_token_string_t cmd_csum_tunnel_csum =
4542 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
4544 cmdline_parse_token_string_t cmd_csum_tunnel_parse =
4545 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
4546 parse, "parse-tunnel");
4547 cmdline_parse_token_string_t cmd_csum_tunnel_onoff =
4548 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
4550 cmdline_parse_token_num_t cmd_csum_tunnel_portid =
4551 TOKEN_NUM_INITIALIZER(struct cmd_csum_tunnel_result,
4554 cmdline_parse_inst_t cmd_csum_tunnel = {
4555 .f = cmd_csum_tunnel_parsed,
4557 .help_str = "csum parse-tunnel on|off <port_id>: "
4558 "Enable/Disable parsing of tunnels for csum engine",
4560 (void *)&cmd_csum_tunnel_csum,
4561 (void *)&cmd_csum_tunnel_parse,
4562 (void *)&cmd_csum_tunnel_onoff,
4563 (void *)&cmd_csum_tunnel_portid,
4568 /* *** ENABLE HARDWARE SEGMENTATION IN TX NON-TUNNELED PACKETS *** */
4569 struct cmd_tso_set_result {
4570 cmdline_fixed_string_t tso;
4571 cmdline_fixed_string_t mode;
4577 cmd_tso_set_parsed(void *parsed_result,
4578 __attribute__((unused)) struct cmdline *cl,
4579 __attribute__((unused)) void *data)
4581 struct cmd_tso_set_result *res = parsed_result;
4582 struct rte_eth_dev_info dev_info;
4585 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4587 if (!port_is_stopped(res->port_id)) {
4588 printf("Please stop port %d first\n", res->port_id);
4592 if (!strcmp(res->mode, "set"))
4593 ports[res->port_id].tso_segsz = res->tso_segsz;
4595 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
4599 if ((ports[res->port_id].tso_segsz != 0) &&
4600 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
4601 printf("Error: TSO is not supported by port %d\n",
4606 if (ports[res->port_id].tso_segsz == 0) {
4607 ports[res->port_id].dev_conf.txmode.offloads &=
4608 ~DEV_TX_OFFLOAD_TCP_TSO;
4609 printf("TSO for non-tunneled packets is disabled\n");
4611 ports[res->port_id].dev_conf.txmode.offloads |=
4612 DEV_TX_OFFLOAD_TCP_TSO;
4613 printf("TSO segment size for non-tunneled packets is %d\n",
4614 ports[res->port_id].tso_segsz);
4616 cmd_config_queue_tx_offloads(&ports[res->port_id]);
4618 /* display warnings if configuration is not supported by the NIC */
4619 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
4623 if ((ports[res->port_id].tso_segsz != 0) &&
4624 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
4625 printf("Warning: TSO enabled but not "
4626 "supported by port %d\n", res->port_id);
4629 cmd_reconfig_device_queue(res->port_id, 1, 1);
4632 cmdline_parse_token_string_t cmd_tso_set_tso =
4633 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
4635 cmdline_parse_token_string_t cmd_tso_set_mode =
4636 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
4638 cmdline_parse_token_num_t cmd_tso_set_tso_segsz =
4639 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
4641 cmdline_parse_token_num_t cmd_tso_set_portid =
4642 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
4645 cmdline_parse_inst_t cmd_tso_set = {
4646 .f = cmd_tso_set_parsed,
4648 .help_str = "tso set <tso_segsz> <port_id>: "
4649 "Set TSO segment size of non-tunneled packets for csum engine "
4652 (void *)&cmd_tso_set_tso,
4653 (void *)&cmd_tso_set_mode,
4654 (void *)&cmd_tso_set_tso_segsz,
4655 (void *)&cmd_tso_set_portid,
4660 cmdline_parse_token_string_t cmd_tso_show_mode =
4661 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
4665 cmdline_parse_inst_t cmd_tso_show = {
4666 .f = cmd_tso_set_parsed,
4668 .help_str = "tso show <port_id>: "
4669 "Show TSO segment size of non-tunneled packets for csum engine",
4671 (void *)&cmd_tso_set_tso,
4672 (void *)&cmd_tso_show_mode,
4673 (void *)&cmd_tso_set_portid,
4678 /* *** ENABLE HARDWARE SEGMENTATION IN TX TUNNELED PACKETS *** */
4679 struct cmd_tunnel_tso_set_result {
4680 cmdline_fixed_string_t tso;
4681 cmdline_fixed_string_t mode;
4686 static struct rte_eth_dev_info
4687 check_tunnel_tso_nic_support(portid_t port_id)
4689 struct rte_eth_dev_info dev_info;
4691 if (eth_dev_info_get_print_err(port_id, &dev_info) != 0)
4694 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO))
4695 printf("Warning: VXLAN TUNNEL TSO not supported therefore "
4696 "not enabled for port %d\n", port_id);
4697 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO))
4698 printf("Warning: GRE TUNNEL TSO not supported therefore "
4699 "not enabled for port %d\n", port_id);
4700 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO))
4701 printf("Warning: IPIP TUNNEL TSO not supported therefore "
4702 "not enabled for port %d\n", port_id);
4703 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO))
4704 printf("Warning: GENEVE TUNNEL TSO not supported therefore "
4705 "not enabled for port %d\n", port_id);
4706 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IP_TNL_TSO))
4707 printf("Warning: IP TUNNEL TSO not supported therefore "
4708 "not enabled for port %d\n", port_id);
4709 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TNL_TSO))
4710 printf("Warning: UDP TUNNEL TSO not supported therefore "
4711 "not enabled for port %d\n", port_id);
4716 cmd_tunnel_tso_set_parsed(void *parsed_result,
4717 __attribute__((unused)) struct cmdline *cl,
4718 __attribute__((unused)) void *data)
4720 struct cmd_tunnel_tso_set_result *res = parsed_result;
4721 struct rte_eth_dev_info dev_info;
4723 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4725 if (!port_is_stopped(res->port_id)) {
4726 printf("Please stop port %d first\n", res->port_id);
4730 if (!strcmp(res->mode, "set"))
4731 ports[res->port_id].tunnel_tso_segsz = res->tso_segsz;
4733 dev_info = check_tunnel_tso_nic_support(res->port_id);
4734 if (ports[res->port_id].tunnel_tso_segsz == 0) {
4735 ports[res->port_id].dev_conf.txmode.offloads &=
4736 ~(DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
4737 DEV_TX_OFFLOAD_GRE_TNL_TSO |
4738 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
4739 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
4740 DEV_TX_OFFLOAD_IP_TNL_TSO |
4741 DEV_TX_OFFLOAD_UDP_TNL_TSO);
4742 printf("TSO for tunneled packets is disabled\n");
4744 uint64_t tso_offloads = (DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
4745 DEV_TX_OFFLOAD_GRE_TNL_TSO |
4746 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
4747 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
4748 DEV_TX_OFFLOAD_IP_TNL_TSO |
4749 DEV_TX_OFFLOAD_UDP_TNL_TSO);
4751 ports[res->port_id].dev_conf.txmode.offloads |=
4752 (tso_offloads & dev_info.tx_offload_capa);
4753 printf("TSO segment size for tunneled packets is %d\n",
4754 ports[res->port_id].tunnel_tso_segsz);
4756 /* Below conditions are needed to make it work:
4757 * (1) tunnel TSO is supported by the NIC;
4758 * (2) "csum parse_tunnel" must be set so that tunneled pkts
4760 * (3) for tunneled pkts with outer L3 of IPv4,
4761 * "csum set outer-ip" must be set to hw, because after tso,
4762 * total_len of outer IP header is changed, and the checksum
4763 * of outer IP header calculated by sw should be wrong; that
4764 * is not necessary for IPv6 tunneled pkts because there's no
4765 * checksum in IP header anymore.
4768 if (!ports[res->port_id].parse_tunnel)
4769 printf("Warning: csum parse_tunnel must be set "
4770 "so that tunneled packets are recognized\n");
4771 if (!(ports[res->port_id].dev_conf.txmode.offloads &
4772 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM))
4773 printf("Warning: csum set outer-ip must be set to hw "
4774 "if outer L3 is IPv4; not necessary for IPv6\n");
4777 cmd_config_queue_tx_offloads(&ports[res->port_id]);
4778 cmd_reconfig_device_queue(res->port_id, 1, 1);
4781 cmdline_parse_token_string_t cmd_tunnel_tso_set_tso =
4782 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
4784 cmdline_parse_token_string_t cmd_tunnel_tso_set_mode =
4785 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
4787 cmdline_parse_token_num_t cmd_tunnel_tso_set_tso_segsz =
4788 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result,
4790 cmdline_parse_token_num_t cmd_tunnel_tso_set_portid =
4791 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result,
4794 cmdline_parse_inst_t cmd_tunnel_tso_set = {
4795 .f = cmd_tunnel_tso_set_parsed,
4797 .help_str = "tunnel_tso set <tso_segsz> <port_id>: "
4798 "Set TSO segment size of tunneled packets for csum engine "
4801 (void *)&cmd_tunnel_tso_set_tso,
4802 (void *)&cmd_tunnel_tso_set_mode,
4803 (void *)&cmd_tunnel_tso_set_tso_segsz,
4804 (void *)&cmd_tunnel_tso_set_portid,
4809 cmdline_parse_token_string_t cmd_tunnel_tso_show_mode =
4810 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
4814 cmdline_parse_inst_t cmd_tunnel_tso_show = {
4815 .f = cmd_tunnel_tso_set_parsed,
4817 .help_str = "tunnel_tso show <port_id> "
4818 "Show TSO segment size of tunneled packets for csum engine",
4820 (void *)&cmd_tunnel_tso_set_tso,
4821 (void *)&cmd_tunnel_tso_show_mode,
4822 (void *)&cmd_tunnel_tso_set_portid,
4827 /* *** SET GRO FOR A PORT *** */
4828 struct cmd_gro_enable_result {
4829 cmdline_fixed_string_t cmd_set;
4830 cmdline_fixed_string_t cmd_port;
4831 cmdline_fixed_string_t cmd_keyword;
4832 cmdline_fixed_string_t cmd_onoff;
4837 cmd_gro_enable_parsed(void *parsed_result,
4838 __attribute__((unused)) struct cmdline *cl,
4839 __attribute__((unused)) void *data)
4841 struct cmd_gro_enable_result *res;
4843 res = parsed_result;
4844 if (!strcmp(res->cmd_keyword, "gro"))
4845 setup_gro(res->cmd_onoff, res->cmd_pid);
4848 cmdline_parse_token_string_t cmd_gro_enable_set =
4849 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
4851 cmdline_parse_token_string_t cmd_gro_enable_port =
4852 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
4853 cmd_keyword, "port");
4854 cmdline_parse_token_num_t cmd_gro_enable_pid =
4855 TOKEN_NUM_INITIALIZER(struct cmd_gro_enable_result,
4857 cmdline_parse_token_string_t cmd_gro_enable_keyword =
4858 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
4859 cmd_keyword, "gro");
4860 cmdline_parse_token_string_t cmd_gro_enable_onoff =
4861 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
4862 cmd_onoff, "on#off");
4864 cmdline_parse_inst_t cmd_gro_enable = {
4865 .f = cmd_gro_enable_parsed,
4867 .help_str = "set port <port_id> gro on|off",
4869 (void *)&cmd_gro_enable_set,
4870 (void *)&cmd_gro_enable_port,
4871 (void *)&cmd_gro_enable_pid,
4872 (void *)&cmd_gro_enable_keyword,
4873 (void *)&cmd_gro_enable_onoff,
4878 /* *** DISPLAY GRO CONFIGURATION *** */
4879 struct cmd_gro_show_result {
4880 cmdline_fixed_string_t cmd_show;
4881 cmdline_fixed_string_t cmd_port;
4882 cmdline_fixed_string_t cmd_keyword;
4887 cmd_gro_show_parsed(void *parsed_result,
4888 __attribute__((unused)) struct cmdline *cl,
4889 __attribute__((unused)) void *data)
4891 struct cmd_gro_show_result *res;
4893 res = parsed_result;
4894 if (!strcmp(res->cmd_keyword, "gro"))
4895 show_gro(res->cmd_pid);
4898 cmdline_parse_token_string_t cmd_gro_show_show =
4899 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
4901 cmdline_parse_token_string_t cmd_gro_show_port =
4902 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
4904 cmdline_parse_token_num_t cmd_gro_show_pid =
4905 TOKEN_NUM_INITIALIZER(struct cmd_gro_show_result,
4907 cmdline_parse_token_string_t cmd_gro_show_keyword =
4908 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
4909 cmd_keyword, "gro");
4911 cmdline_parse_inst_t cmd_gro_show = {
4912 .f = cmd_gro_show_parsed,
4914 .help_str = "show port <port_id> gro",
4916 (void *)&cmd_gro_show_show,
4917 (void *)&cmd_gro_show_port,
4918 (void *)&cmd_gro_show_pid,
4919 (void *)&cmd_gro_show_keyword,
4924 /* *** SET FLUSH CYCLES FOR GRO *** */
4925 struct cmd_gro_flush_result {
4926 cmdline_fixed_string_t cmd_set;
4927 cmdline_fixed_string_t cmd_keyword;
4928 cmdline_fixed_string_t cmd_flush;
4933 cmd_gro_flush_parsed(void *parsed_result,
4934 __attribute__((unused)) struct cmdline *cl,
4935 __attribute__((unused)) void *data)
4937 struct cmd_gro_flush_result *res;
4939 res = parsed_result;
4940 if ((!strcmp(res->cmd_keyword, "gro")) &&
4941 (!strcmp(res->cmd_flush, "flush")))
4942 setup_gro_flush_cycles(res->cmd_cycles);
4945 cmdline_parse_token_string_t cmd_gro_flush_set =
4946 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
4948 cmdline_parse_token_string_t cmd_gro_flush_keyword =
4949 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
4950 cmd_keyword, "gro");
4951 cmdline_parse_token_string_t cmd_gro_flush_flush =
4952 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
4953 cmd_flush, "flush");
4954 cmdline_parse_token_num_t cmd_gro_flush_cycles =
4955 TOKEN_NUM_INITIALIZER(struct cmd_gro_flush_result,
4958 cmdline_parse_inst_t cmd_gro_flush = {
4959 .f = cmd_gro_flush_parsed,
4961 .help_str = "set gro flush <cycles>",
4963 (void *)&cmd_gro_flush_set,
4964 (void *)&cmd_gro_flush_keyword,
4965 (void *)&cmd_gro_flush_flush,
4966 (void *)&cmd_gro_flush_cycles,
4971 /* *** ENABLE/DISABLE GSO *** */
4972 struct cmd_gso_enable_result {
4973 cmdline_fixed_string_t cmd_set;
4974 cmdline_fixed_string_t cmd_port;
4975 cmdline_fixed_string_t cmd_keyword;
4976 cmdline_fixed_string_t cmd_mode;
4981 cmd_gso_enable_parsed(void *parsed_result,
4982 __attribute__((unused)) struct cmdline *cl,
4983 __attribute__((unused)) void *data)
4985 struct cmd_gso_enable_result *res;
4987 res = parsed_result;
4988 if (!strcmp(res->cmd_keyword, "gso"))
4989 setup_gso(res->cmd_mode, res->cmd_pid);
4992 cmdline_parse_token_string_t cmd_gso_enable_set =
4993 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
4995 cmdline_parse_token_string_t cmd_gso_enable_port =
4996 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
4998 cmdline_parse_token_string_t cmd_gso_enable_keyword =
4999 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5000 cmd_keyword, "gso");
5001 cmdline_parse_token_string_t cmd_gso_enable_mode =
5002 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5003 cmd_mode, "on#off");
5004 cmdline_parse_token_num_t cmd_gso_enable_pid =
5005 TOKEN_NUM_INITIALIZER(struct cmd_gso_enable_result,
5008 cmdline_parse_inst_t cmd_gso_enable = {
5009 .f = cmd_gso_enable_parsed,
5011 .help_str = "set port <port_id> gso on|off",
5013 (void *)&cmd_gso_enable_set,
5014 (void *)&cmd_gso_enable_port,
5015 (void *)&cmd_gso_enable_pid,
5016 (void *)&cmd_gso_enable_keyword,
5017 (void *)&cmd_gso_enable_mode,
5022 /* *** SET MAX PACKET LENGTH FOR GSO SEGMENTS *** */
5023 struct cmd_gso_size_result {
5024 cmdline_fixed_string_t cmd_set;
5025 cmdline_fixed_string_t cmd_keyword;
5026 cmdline_fixed_string_t cmd_segsz;
5031 cmd_gso_size_parsed(void *parsed_result,
5032 __attribute__((unused)) struct cmdline *cl,
5033 __attribute__((unused)) void *data)
5035 struct cmd_gso_size_result *res = parsed_result;
5037 if (test_done == 0) {
5038 printf("Before setting GSO segsz, please first"
5039 " stop fowarding\n");
5043 if (!strcmp(res->cmd_keyword, "gso") &&
5044 !strcmp(res->cmd_segsz, "segsz")) {
5045 if (res->cmd_size < RTE_GSO_SEG_SIZE_MIN)
5046 printf("gso_size should be larger than %zu."
5047 " Please input a legal value\n",
5048 RTE_GSO_SEG_SIZE_MIN);
5050 gso_max_segment_size = res->cmd_size;
5054 cmdline_parse_token_string_t cmd_gso_size_set =
5055 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
5057 cmdline_parse_token_string_t cmd_gso_size_keyword =
5058 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
5059 cmd_keyword, "gso");
5060 cmdline_parse_token_string_t cmd_gso_size_segsz =
5061 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
5062 cmd_segsz, "segsz");
5063 cmdline_parse_token_num_t cmd_gso_size_size =
5064 TOKEN_NUM_INITIALIZER(struct cmd_gso_size_result,
5067 cmdline_parse_inst_t cmd_gso_size = {
5068 .f = cmd_gso_size_parsed,
5070 .help_str = "set gso segsz <length>",
5072 (void *)&cmd_gso_size_set,
5073 (void *)&cmd_gso_size_keyword,
5074 (void *)&cmd_gso_size_segsz,
5075 (void *)&cmd_gso_size_size,
5080 /* *** SHOW GSO CONFIGURATION *** */
5081 struct cmd_gso_show_result {
5082 cmdline_fixed_string_t cmd_show;
5083 cmdline_fixed_string_t cmd_port;
5084 cmdline_fixed_string_t cmd_keyword;
5089 cmd_gso_show_parsed(void *parsed_result,
5090 __attribute__((unused)) struct cmdline *cl,
5091 __attribute__((unused)) void *data)
5093 struct cmd_gso_show_result *res = parsed_result;
5095 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
5096 printf("invalid port id %u\n", res->cmd_pid);
5099 if (!strcmp(res->cmd_keyword, "gso")) {
5100 if (gso_ports[res->cmd_pid].enable) {
5101 printf("Max GSO'd packet size: %uB\n"
5102 "Supported GSO types: TCP/IPv4, "
5103 "UDP/IPv4, VxLAN with inner "
5104 "TCP/IPv4 packet, GRE with inner "
5105 "TCP/IPv4 packet\n",
5106 gso_max_segment_size);
5108 printf("GSO is not enabled on Port %u\n", res->cmd_pid);
5112 cmdline_parse_token_string_t cmd_gso_show_show =
5113 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
5115 cmdline_parse_token_string_t cmd_gso_show_port =
5116 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
5118 cmdline_parse_token_string_t cmd_gso_show_keyword =
5119 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
5120 cmd_keyword, "gso");
5121 cmdline_parse_token_num_t cmd_gso_show_pid =
5122 TOKEN_NUM_INITIALIZER(struct cmd_gso_show_result,
5125 cmdline_parse_inst_t cmd_gso_show = {
5126 .f = cmd_gso_show_parsed,
5128 .help_str = "show port <port_id> gso",
5130 (void *)&cmd_gso_show_show,
5131 (void *)&cmd_gso_show_port,
5132 (void *)&cmd_gso_show_pid,
5133 (void *)&cmd_gso_show_keyword,
5138 /* *** ENABLE/DISABLE FLUSH ON RX STREAMS *** */
5139 struct cmd_set_flush_rx {
5140 cmdline_fixed_string_t set;
5141 cmdline_fixed_string_t flush_rx;
5142 cmdline_fixed_string_t mode;
5146 cmd_set_flush_rx_parsed(void *parsed_result,
5147 __attribute__((unused)) struct cmdline *cl,
5148 __attribute__((unused)) void *data)
5150 struct cmd_set_flush_rx *res = parsed_result;
5151 no_flush_rx = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
5154 cmdline_parse_token_string_t cmd_setflushrx_set =
5155 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
5157 cmdline_parse_token_string_t cmd_setflushrx_flush_rx =
5158 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
5159 flush_rx, "flush_rx");
5160 cmdline_parse_token_string_t cmd_setflushrx_mode =
5161 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
5165 cmdline_parse_inst_t cmd_set_flush_rx = {
5166 .f = cmd_set_flush_rx_parsed,
5167 .help_str = "set flush_rx on|off: Enable/Disable flush on rx streams",
5170 (void *)&cmd_setflushrx_set,
5171 (void *)&cmd_setflushrx_flush_rx,
5172 (void *)&cmd_setflushrx_mode,
5177 /* *** ENABLE/DISABLE LINK STATUS CHECK *** */
5178 struct cmd_set_link_check {
5179 cmdline_fixed_string_t set;
5180 cmdline_fixed_string_t link_check;
5181 cmdline_fixed_string_t mode;
5185 cmd_set_link_check_parsed(void *parsed_result,
5186 __attribute__((unused)) struct cmdline *cl,
5187 __attribute__((unused)) void *data)
5189 struct cmd_set_link_check *res = parsed_result;
5190 no_link_check = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
5193 cmdline_parse_token_string_t cmd_setlinkcheck_set =
5194 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
5196 cmdline_parse_token_string_t cmd_setlinkcheck_link_check =
5197 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
5198 link_check, "link_check");
5199 cmdline_parse_token_string_t cmd_setlinkcheck_mode =
5200 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
5204 cmdline_parse_inst_t cmd_set_link_check = {
5205 .f = cmd_set_link_check_parsed,
5206 .help_str = "set link_check on|off: Enable/Disable link status check "
5207 "when starting/stopping a port",
5210 (void *)&cmd_setlinkcheck_set,
5211 (void *)&cmd_setlinkcheck_link_check,
5212 (void *)&cmd_setlinkcheck_mode,
5217 /* *** SET NIC BYPASS MODE *** */
5218 struct cmd_set_bypass_mode_result {
5219 cmdline_fixed_string_t set;
5220 cmdline_fixed_string_t bypass;
5221 cmdline_fixed_string_t mode;
5222 cmdline_fixed_string_t value;
5227 cmd_set_bypass_mode_parsed(void *parsed_result,
5228 __attribute__((unused)) struct cmdline *cl,
5229 __attribute__((unused)) void *data)
5231 struct cmd_set_bypass_mode_result *res = parsed_result;
5232 portid_t port_id = res->port_id;
5233 int32_t rc = -EINVAL;
5235 #if defined RTE_LIBRTE_IXGBE_PMD && defined RTE_LIBRTE_IXGBE_BYPASS
5236 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5238 if (!strcmp(res->value, "bypass"))
5239 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS;
5240 else if (!strcmp(res->value, "isolate"))
5241 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE;
5243 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5245 /* Set the bypass mode for the relevant port. */
5246 rc = rte_pmd_ixgbe_bypass_state_set(port_id, &bypass_mode);
5249 printf("\t Failed to set bypass mode for port = %d.\n", port_id);
5252 cmdline_parse_token_string_t cmd_setbypass_mode_set =
5253 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5255 cmdline_parse_token_string_t cmd_setbypass_mode_bypass =
5256 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5258 cmdline_parse_token_string_t cmd_setbypass_mode_mode =
5259 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5261 cmdline_parse_token_string_t cmd_setbypass_mode_value =
5262 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5263 value, "normal#bypass#isolate");
5264 cmdline_parse_token_num_t cmd_setbypass_mode_port =
5265 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_mode_result,
5268 cmdline_parse_inst_t cmd_set_bypass_mode = {
5269 .f = cmd_set_bypass_mode_parsed,
5270 .help_str = "set bypass mode normal|bypass|isolate <port_id>: "
5271 "Set the NIC bypass mode for port_id",
5274 (void *)&cmd_setbypass_mode_set,
5275 (void *)&cmd_setbypass_mode_bypass,
5276 (void *)&cmd_setbypass_mode_mode,
5277 (void *)&cmd_setbypass_mode_value,
5278 (void *)&cmd_setbypass_mode_port,
5283 /* *** SET NIC BYPASS EVENT *** */
5284 struct cmd_set_bypass_event_result {
5285 cmdline_fixed_string_t set;
5286 cmdline_fixed_string_t bypass;
5287 cmdline_fixed_string_t event;
5288 cmdline_fixed_string_t event_value;
5289 cmdline_fixed_string_t mode;
5290 cmdline_fixed_string_t mode_value;
5295 cmd_set_bypass_event_parsed(void *parsed_result,
5296 __attribute__((unused)) struct cmdline *cl,
5297 __attribute__((unused)) void *data)
5299 int32_t rc = -EINVAL;
5300 struct cmd_set_bypass_event_result *res = parsed_result;
5301 portid_t port_id = res->port_id;
5303 #if defined RTE_LIBRTE_IXGBE_PMD && defined RTE_LIBRTE_IXGBE_BYPASS
5304 uint32_t bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE;
5305 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5307 if (!strcmp(res->event_value, "timeout"))
5308 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT;
5309 else if (!strcmp(res->event_value, "os_on"))
5310 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_ON;
5311 else if (!strcmp(res->event_value, "os_off"))
5312 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_OFF;
5313 else if (!strcmp(res->event_value, "power_on"))
5314 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_ON;
5315 else if (!strcmp(res->event_value, "power_off"))
5316 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_OFF;
5318 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE;
5320 if (!strcmp(res->mode_value, "bypass"))
5321 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS;
5322 else if (!strcmp(res->mode_value, "isolate"))
5323 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE;
5325 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5327 /* Set the watchdog timeout. */
5328 if (bypass_event == RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT) {
5331 if (RTE_PMD_IXGBE_BYPASS_TMT_VALID(bypass_timeout)) {
5332 rc = rte_pmd_ixgbe_bypass_wd_timeout_store(port_id,
5336 printf("Failed to set timeout value %u "
5337 "for port %d, errto code: %d.\n",
5338 bypass_timeout, port_id, rc);
5342 /* Set the bypass event to transition to bypass mode. */
5343 rc = rte_pmd_ixgbe_bypass_event_store(port_id, bypass_event,
5348 printf("\t Failed to set bypass event for port = %d.\n",
5352 cmdline_parse_token_string_t cmd_setbypass_event_set =
5353 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5355 cmdline_parse_token_string_t cmd_setbypass_event_bypass =
5356 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5358 cmdline_parse_token_string_t cmd_setbypass_event_event =
5359 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5361 cmdline_parse_token_string_t cmd_setbypass_event_event_value =
5362 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5363 event_value, "none#timeout#os_off#os_on#power_on#power_off");
5364 cmdline_parse_token_string_t cmd_setbypass_event_mode =
5365 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5367 cmdline_parse_token_string_t cmd_setbypass_event_mode_value =
5368 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5369 mode_value, "normal#bypass#isolate");
5370 cmdline_parse_token_num_t cmd_setbypass_event_port =
5371 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_event_result,
5374 cmdline_parse_inst_t cmd_set_bypass_event = {
5375 .f = cmd_set_bypass_event_parsed,
5376 .help_str = "set bypass event none|timeout|os_on|os_off|power_on|"
5377 "power_off mode normal|bypass|isolate <port_id>: "
5378 "Set the NIC bypass event mode for port_id",
5381 (void *)&cmd_setbypass_event_set,
5382 (void *)&cmd_setbypass_event_bypass,
5383 (void *)&cmd_setbypass_event_event,
5384 (void *)&cmd_setbypass_event_event_value,
5385 (void *)&cmd_setbypass_event_mode,
5386 (void *)&cmd_setbypass_event_mode_value,
5387 (void *)&cmd_setbypass_event_port,
5393 /* *** SET NIC BYPASS TIMEOUT *** */
5394 struct cmd_set_bypass_timeout_result {
5395 cmdline_fixed_string_t set;
5396 cmdline_fixed_string_t bypass;
5397 cmdline_fixed_string_t timeout;
5398 cmdline_fixed_string_t value;
5402 cmd_set_bypass_timeout_parsed(void *parsed_result,
5403 __attribute__((unused)) struct cmdline *cl,
5404 __attribute__((unused)) void *data)
5406 __rte_unused struct cmd_set_bypass_timeout_result *res = parsed_result;
5408 #if defined RTE_LIBRTE_IXGBE_PMD && defined RTE_LIBRTE_IXGBE_BYPASS
5409 if (!strcmp(res->value, "1.5"))
5410 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_1_5_SEC;
5411 else if (!strcmp(res->value, "2"))
5412 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_2_SEC;
5413 else if (!strcmp(res->value, "3"))
5414 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_3_SEC;
5415 else if (!strcmp(res->value, "4"))
5416 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_4_SEC;
5417 else if (!strcmp(res->value, "8"))
5418 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_8_SEC;
5419 else if (!strcmp(res->value, "16"))
5420 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_16_SEC;
5421 else if (!strcmp(res->value, "32"))
5422 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_32_SEC;
5424 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF;
5428 cmdline_parse_token_string_t cmd_setbypass_timeout_set =
5429 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5431 cmdline_parse_token_string_t cmd_setbypass_timeout_bypass =
5432 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5434 cmdline_parse_token_string_t cmd_setbypass_timeout_timeout =
5435 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5436 timeout, "timeout");
5437 cmdline_parse_token_string_t cmd_setbypass_timeout_value =
5438 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5439 value, "0#1.5#2#3#4#8#16#32");
5441 cmdline_parse_inst_t cmd_set_bypass_timeout = {
5442 .f = cmd_set_bypass_timeout_parsed,
5443 .help_str = "set bypass timeout 0|1.5|2|3|4|8|16|32: "
5444 "Set the NIC bypass watchdog timeout in seconds",
5447 (void *)&cmd_setbypass_timeout_set,
5448 (void *)&cmd_setbypass_timeout_bypass,
5449 (void *)&cmd_setbypass_timeout_timeout,
5450 (void *)&cmd_setbypass_timeout_value,
5455 /* *** SHOW NIC BYPASS MODE *** */
5456 struct cmd_show_bypass_config_result {
5457 cmdline_fixed_string_t show;
5458 cmdline_fixed_string_t bypass;
5459 cmdline_fixed_string_t config;
5464 cmd_show_bypass_config_parsed(void *parsed_result,
5465 __attribute__((unused)) struct cmdline *cl,
5466 __attribute__((unused)) void *data)
5468 struct cmd_show_bypass_config_result *res = parsed_result;
5469 portid_t port_id = res->port_id;
5471 #if defined RTE_LIBRTE_IXGBE_PMD && defined RTE_LIBRTE_IXGBE_BYPASS
5472 uint32_t event_mode;
5473 uint32_t bypass_mode;
5474 uint32_t timeout = bypass_timeout;
5477 static const char * const timeouts[RTE_PMD_IXGBE_BYPASS_TMT_NUM] =
5478 {"off", "1.5", "2", "3", "4", "8", "16", "32"};
5479 static const char * const modes[RTE_PMD_IXGBE_BYPASS_MODE_NUM] =
5480 {"UNKNOWN", "normal", "bypass", "isolate"};
5481 static const char * const events[RTE_PMD_IXGBE_BYPASS_EVENT_NUM] = {
5488 int num_events = (sizeof events) / (sizeof events[0]);
5490 /* Display the bypass mode.*/
5491 if (rte_pmd_ixgbe_bypass_state_show(port_id, &bypass_mode) != 0) {
5492 printf("\tFailed to get bypass mode for port = %d\n", port_id);
5496 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(bypass_mode))
5497 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE;
5499 printf("\tbypass mode = %s\n", modes[bypass_mode]);
5502 /* Display the bypass timeout.*/
5503 if (!RTE_PMD_IXGBE_BYPASS_TMT_VALID(timeout))
5504 timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF;
5506 printf("\tbypass timeout = %s\n", timeouts[timeout]);
5508 /* Display the bypass events and associated modes. */
5509 for (i = RTE_PMD_IXGBE_BYPASS_EVENT_START; i < num_events; i++) {
5511 if (rte_pmd_ixgbe_bypass_event_show(port_id, i, &event_mode)) {
5512 printf("\tFailed to get bypass mode for event = %s\n",
5515 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(event_mode))
5516 event_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE;
5518 printf("\tbypass event: %-16s = %s\n", events[i],
5524 printf("\tFailed to get bypass configuration for port = %d\n",
5528 cmdline_parse_token_string_t cmd_showbypass_config_show =
5529 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
5531 cmdline_parse_token_string_t cmd_showbypass_config_bypass =
5532 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
5534 cmdline_parse_token_string_t cmd_showbypass_config_config =
5535 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
5537 cmdline_parse_token_num_t cmd_showbypass_config_port =
5538 TOKEN_NUM_INITIALIZER(struct cmd_show_bypass_config_result,
5541 cmdline_parse_inst_t cmd_show_bypass_config = {
5542 .f = cmd_show_bypass_config_parsed,
5543 .help_str = "show bypass config <port_id>: "
5544 "Show the NIC bypass config for port_id",
5547 (void *)&cmd_showbypass_config_show,
5548 (void *)&cmd_showbypass_config_bypass,
5549 (void *)&cmd_showbypass_config_config,
5550 (void *)&cmd_showbypass_config_port,
5555 #ifdef RTE_LIBRTE_PMD_BOND
5556 /* *** SET BONDING MODE *** */
5557 struct cmd_set_bonding_mode_result {
5558 cmdline_fixed_string_t set;
5559 cmdline_fixed_string_t bonding;
5560 cmdline_fixed_string_t mode;
5565 static void cmd_set_bonding_mode_parsed(void *parsed_result,
5566 __attribute__((unused)) struct cmdline *cl,
5567 __attribute__((unused)) void *data)
5569 struct cmd_set_bonding_mode_result *res = parsed_result;
5570 portid_t port_id = res->port_id;
5572 /* Set the bonding mode for the relevant port. */
5573 if (0 != rte_eth_bond_mode_set(port_id, res->value))
5574 printf("\t Failed to set bonding mode for port = %d.\n", port_id);
5577 cmdline_parse_token_string_t cmd_setbonding_mode_set =
5578 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
5580 cmdline_parse_token_string_t cmd_setbonding_mode_bonding =
5581 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
5582 bonding, "bonding");
5583 cmdline_parse_token_string_t cmd_setbonding_mode_mode =
5584 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
5586 cmdline_parse_token_num_t cmd_setbonding_mode_value =
5587 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
5589 cmdline_parse_token_num_t cmd_setbonding_mode_port =
5590 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
5593 cmdline_parse_inst_t cmd_set_bonding_mode = {
5594 .f = cmd_set_bonding_mode_parsed,
5595 .help_str = "set bonding mode <mode_value> <port_id>: "
5596 "Set the bonding mode for port_id",
5599 (void *) &cmd_setbonding_mode_set,
5600 (void *) &cmd_setbonding_mode_bonding,
5601 (void *) &cmd_setbonding_mode_mode,
5602 (void *) &cmd_setbonding_mode_value,
5603 (void *) &cmd_setbonding_mode_port,
5608 /* *** SET BONDING SLOW_QUEUE SW/HW *** */
5609 struct cmd_set_bonding_lacp_dedicated_queues_result {
5610 cmdline_fixed_string_t set;
5611 cmdline_fixed_string_t bonding;
5612 cmdline_fixed_string_t lacp;
5613 cmdline_fixed_string_t dedicated_queues;
5615 cmdline_fixed_string_t mode;
5618 static void cmd_set_bonding_lacp_dedicated_queues_parsed(void *parsed_result,
5619 __attribute__((unused)) struct cmdline *cl,
5620 __attribute__((unused)) void *data)
5622 struct cmd_set_bonding_lacp_dedicated_queues_result *res = parsed_result;
5623 portid_t port_id = res->port_id;
5624 struct rte_port *port;
5626 port = &ports[port_id];
5628 /** Check if the port is not started **/
5629 if (port->port_status != RTE_PORT_STOPPED) {
5630 printf("Please stop port %d first\n", port_id);
5634 if (!strcmp(res->mode, "enable")) {
5635 if (rte_eth_bond_8023ad_dedicated_queues_enable(port_id) == 0)
5636 printf("Dedicate queues for LACP control packets"
5639 printf("Enabling dedicate queues for LACP control "
5640 "packets on port %d failed\n", port_id);
5641 } else if (!strcmp(res->mode, "disable")) {
5642 if (rte_eth_bond_8023ad_dedicated_queues_disable(port_id) == 0)
5643 printf("Dedicated queues for LACP control packets "
5646 printf("Disabling dedicated queues for LACP control "
5647 "traffic on port %d failed\n", port_id);
5651 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_set =
5652 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5654 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_bonding =
5655 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5656 bonding, "bonding");
5657 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_lacp =
5658 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5660 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_dedicated_queues =
5661 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5662 dedicated_queues, "dedicated_queues");
5663 cmdline_parse_token_num_t cmd_setbonding_lacp_dedicated_queues_port_id =
5664 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5666 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_mode =
5667 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5668 mode, "enable#disable");
5670 cmdline_parse_inst_t cmd_set_lacp_dedicated_queues = {
5671 .f = cmd_set_bonding_lacp_dedicated_queues_parsed,
5672 .help_str = "set bonding lacp dedicated_queues <port_id> "
5674 "Enable/disable dedicated queues for LACP control traffic for port_id",
5677 (void *)&cmd_setbonding_lacp_dedicated_queues_set,
5678 (void *)&cmd_setbonding_lacp_dedicated_queues_bonding,
5679 (void *)&cmd_setbonding_lacp_dedicated_queues_lacp,
5680 (void *)&cmd_setbonding_lacp_dedicated_queues_dedicated_queues,
5681 (void *)&cmd_setbonding_lacp_dedicated_queues_port_id,
5682 (void *)&cmd_setbonding_lacp_dedicated_queues_mode,
5687 /* *** SET BALANCE XMIT POLICY *** */
5688 struct cmd_set_bonding_balance_xmit_policy_result {
5689 cmdline_fixed_string_t set;
5690 cmdline_fixed_string_t bonding;
5691 cmdline_fixed_string_t balance_xmit_policy;
5693 cmdline_fixed_string_t policy;
5696 static void cmd_set_bonding_balance_xmit_policy_parsed(void *parsed_result,
5697 __attribute__((unused)) struct cmdline *cl,
5698 __attribute__((unused)) void *data)
5700 struct cmd_set_bonding_balance_xmit_policy_result *res = parsed_result;
5701 portid_t port_id = res->port_id;
5704 if (!strcmp(res->policy, "l2")) {
5705 policy = BALANCE_XMIT_POLICY_LAYER2;
5706 } else if (!strcmp(res->policy, "l23")) {
5707 policy = BALANCE_XMIT_POLICY_LAYER23;
5708 } else if (!strcmp(res->policy, "l34")) {
5709 policy = BALANCE_XMIT_POLICY_LAYER34;
5711 printf("\t Invalid xmit policy selection");
5715 /* Set the bonding mode for the relevant port. */
5716 if (0 != rte_eth_bond_xmit_policy_set(port_id, policy)) {
5717 printf("\t Failed to set bonding balance xmit policy for port = %d.\n",
5722 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_set =
5723 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5725 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_bonding =
5726 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5727 bonding, "bonding");
5728 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_balance_xmit_policy =
5729 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5730 balance_xmit_policy, "balance_xmit_policy");
5731 cmdline_parse_token_num_t cmd_setbonding_balance_xmit_policy_port =
5732 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5734 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_policy =
5735 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5736 policy, "l2#l23#l34");
5738 cmdline_parse_inst_t cmd_set_balance_xmit_policy = {
5739 .f = cmd_set_bonding_balance_xmit_policy_parsed,
5740 .help_str = "set bonding balance_xmit_policy <port_id> "
5742 "Set the bonding balance_xmit_policy for port_id",
5745 (void *)&cmd_setbonding_balance_xmit_policy_set,
5746 (void *)&cmd_setbonding_balance_xmit_policy_bonding,
5747 (void *)&cmd_setbonding_balance_xmit_policy_balance_xmit_policy,
5748 (void *)&cmd_setbonding_balance_xmit_policy_port,
5749 (void *)&cmd_setbonding_balance_xmit_policy_policy,
5754 /* *** SHOW NIC BONDING CONFIGURATION *** */
5755 struct cmd_show_bonding_config_result {
5756 cmdline_fixed_string_t show;
5757 cmdline_fixed_string_t bonding;
5758 cmdline_fixed_string_t config;
5762 static void cmd_show_bonding_config_parsed(void *parsed_result,
5763 __attribute__((unused)) struct cmdline *cl,
5764 __attribute__((unused)) void *data)
5766 struct cmd_show_bonding_config_result *res = parsed_result;
5767 int bonding_mode, agg_mode;
5768 portid_t slaves[RTE_MAX_ETHPORTS];
5769 int num_slaves, num_active_slaves;
5772 portid_t port_id = res->port_id;
5774 /* Display the bonding mode.*/
5775 bonding_mode = rte_eth_bond_mode_get(port_id);
5776 if (bonding_mode < 0) {
5777 printf("\tFailed to get bonding mode for port = %d\n", port_id);
5780 printf("\tBonding mode: %d\n", bonding_mode);
5782 if (bonding_mode == BONDING_MODE_BALANCE) {
5783 int balance_xmit_policy;
5785 balance_xmit_policy = rte_eth_bond_xmit_policy_get(port_id);
5786 if (balance_xmit_policy < 0) {
5787 printf("\tFailed to get balance xmit policy for port = %d\n",
5791 printf("\tBalance Xmit Policy: ");
5793 switch (balance_xmit_policy) {
5794 case BALANCE_XMIT_POLICY_LAYER2:
5795 printf("BALANCE_XMIT_POLICY_LAYER2");
5797 case BALANCE_XMIT_POLICY_LAYER23:
5798 printf("BALANCE_XMIT_POLICY_LAYER23");
5800 case BALANCE_XMIT_POLICY_LAYER34:
5801 printf("BALANCE_XMIT_POLICY_LAYER34");
5808 if (bonding_mode == BONDING_MODE_8023AD) {
5809 agg_mode = rte_eth_bond_8023ad_agg_selection_get(port_id);
5810 printf("\tIEEE802.3AD Aggregator Mode: ");
5813 printf("bandwidth");
5825 num_slaves = rte_eth_bond_slaves_get(port_id, slaves, RTE_MAX_ETHPORTS);
5827 if (num_slaves < 0) {
5828 printf("\tFailed to get slave list for port = %d\n", port_id);
5831 if (num_slaves > 0) {
5832 printf("\tSlaves (%d): [", num_slaves);
5833 for (i = 0; i < num_slaves - 1; i++)
5834 printf("%d ", slaves[i]);
5836 printf("%d]\n", slaves[num_slaves - 1]);
5838 printf("\tSlaves: []\n");
5842 num_active_slaves = rte_eth_bond_active_slaves_get(port_id, slaves,
5845 if (num_active_slaves < 0) {
5846 printf("\tFailed to get active slave list for port = %d\n", port_id);
5849 if (num_active_slaves > 0) {
5850 printf("\tActive Slaves (%d): [", num_active_slaves);
5851 for (i = 0; i < num_active_slaves - 1; i++)
5852 printf("%d ", slaves[i]);
5854 printf("%d]\n", slaves[num_active_slaves - 1]);
5857 printf("\tActive Slaves: []\n");
5861 primary_id = rte_eth_bond_primary_get(port_id);
5862 if (primary_id < 0) {
5863 printf("\tFailed to get primary slave for port = %d\n", port_id);
5866 printf("\tPrimary: [%d]\n", primary_id);
5870 cmdline_parse_token_string_t cmd_showbonding_config_show =
5871 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
5873 cmdline_parse_token_string_t cmd_showbonding_config_bonding =
5874 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
5875 bonding, "bonding");
5876 cmdline_parse_token_string_t cmd_showbonding_config_config =
5877 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
5879 cmdline_parse_token_num_t cmd_showbonding_config_port =
5880 TOKEN_NUM_INITIALIZER(struct cmd_show_bonding_config_result,
5883 cmdline_parse_inst_t cmd_show_bonding_config = {
5884 .f = cmd_show_bonding_config_parsed,
5885 .help_str = "show bonding config <port_id>: "
5886 "Show the bonding config for port_id",
5889 (void *)&cmd_showbonding_config_show,
5890 (void *)&cmd_showbonding_config_bonding,
5891 (void *)&cmd_showbonding_config_config,
5892 (void *)&cmd_showbonding_config_port,
5897 /* *** SET BONDING PRIMARY *** */
5898 struct cmd_set_bonding_primary_result {
5899 cmdline_fixed_string_t set;
5900 cmdline_fixed_string_t bonding;
5901 cmdline_fixed_string_t primary;
5906 static void cmd_set_bonding_primary_parsed(void *parsed_result,
5907 __attribute__((unused)) struct cmdline *cl,
5908 __attribute__((unused)) void *data)
5910 struct cmd_set_bonding_primary_result *res = parsed_result;
5911 portid_t master_port_id = res->port_id;
5912 portid_t slave_port_id = res->slave_id;
5914 /* Set the primary slave for a bonded device. */
5915 if (0 != rte_eth_bond_primary_set(master_port_id, slave_port_id)) {
5916 printf("\t Failed to set primary slave for port = %d.\n",
5923 cmdline_parse_token_string_t cmd_setbonding_primary_set =
5924 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
5926 cmdline_parse_token_string_t cmd_setbonding_primary_bonding =
5927 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
5928 bonding, "bonding");
5929 cmdline_parse_token_string_t cmd_setbonding_primary_primary =
5930 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
5931 primary, "primary");
5932 cmdline_parse_token_num_t cmd_setbonding_primary_slave =
5933 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
5935 cmdline_parse_token_num_t cmd_setbonding_primary_port =
5936 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
5939 cmdline_parse_inst_t cmd_set_bonding_primary = {
5940 .f = cmd_set_bonding_primary_parsed,
5941 .help_str = "set bonding primary <slave_id> <port_id>: "
5942 "Set the primary slave for port_id",
5945 (void *)&cmd_setbonding_primary_set,
5946 (void *)&cmd_setbonding_primary_bonding,
5947 (void *)&cmd_setbonding_primary_primary,
5948 (void *)&cmd_setbonding_primary_slave,
5949 (void *)&cmd_setbonding_primary_port,
5954 /* *** ADD SLAVE *** */
5955 struct cmd_add_bonding_slave_result {
5956 cmdline_fixed_string_t add;
5957 cmdline_fixed_string_t bonding;
5958 cmdline_fixed_string_t slave;
5963 static void cmd_add_bonding_slave_parsed(void *parsed_result,
5964 __attribute__((unused)) struct cmdline *cl,
5965 __attribute__((unused)) void *data)
5967 struct cmd_add_bonding_slave_result *res = parsed_result;
5968 portid_t master_port_id = res->port_id;
5969 portid_t slave_port_id = res->slave_id;
5971 /* add the slave for a bonded device. */
5972 if (0 != rte_eth_bond_slave_add(master_port_id, slave_port_id)) {
5973 printf("\t Failed to add slave %d to master port = %d.\n",
5974 slave_port_id, master_port_id);
5978 set_port_slave_flag(slave_port_id);
5981 cmdline_parse_token_string_t cmd_addbonding_slave_add =
5982 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
5984 cmdline_parse_token_string_t cmd_addbonding_slave_bonding =
5985 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
5986 bonding, "bonding");
5987 cmdline_parse_token_string_t cmd_addbonding_slave_slave =
5988 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
5990 cmdline_parse_token_num_t cmd_addbonding_slave_slaveid =
5991 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
5993 cmdline_parse_token_num_t cmd_addbonding_slave_port =
5994 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
5997 cmdline_parse_inst_t cmd_add_bonding_slave = {
5998 .f = cmd_add_bonding_slave_parsed,
5999 .help_str = "add bonding slave <slave_id> <port_id>: "
6000 "Add a slave device to a bonded device",
6003 (void *)&cmd_addbonding_slave_add,
6004 (void *)&cmd_addbonding_slave_bonding,
6005 (void *)&cmd_addbonding_slave_slave,
6006 (void *)&cmd_addbonding_slave_slaveid,
6007 (void *)&cmd_addbonding_slave_port,
6012 /* *** REMOVE SLAVE *** */
6013 struct cmd_remove_bonding_slave_result {
6014 cmdline_fixed_string_t remove;
6015 cmdline_fixed_string_t bonding;
6016 cmdline_fixed_string_t slave;
6021 static void cmd_remove_bonding_slave_parsed(void *parsed_result,
6022 __attribute__((unused)) struct cmdline *cl,
6023 __attribute__((unused)) void *data)
6025 struct cmd_remove_bonding_slave_result *res = parsed_result;
6026 portid_t master_port_id = res->port_id;
6027 portid_t slave_port_id = res->slave_id;
6029 /* remove the slave from a bonded device. */
6030 if (0 != rte_eth_bond_slave_remove(master_port_id, slave_port_id)) {
6031 printf("\t Failed to remove slave %d from master port = %d.\n",
6032 slave_port_id, master_port_id);
6036 clear_port_slave_flag(slave_port_id);
6039 cmdline_parse_token_string_t cmd_removebonding_slave_remove =
6040 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
6042 cmdline_parse_token_string_t cmd_removebonding_slave_bonding =
6043 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
6044 bonding, "bonding");
6045 cmdline_parse_token_string_t cmd_removebonding_slave_slave =
6046 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
6048 cmdline_parse_token_num_t cmd_removebonding_slave_slaveid =
6049 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
6051 cmdline_parse_token_num_t cmd_removebonding_slave_port =
6052 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
6055 cmdline_parse_inst_t cmd_remove_bonding_slave = {
6056 .f = cmd_remove_bonding_slave_parsed,
6057 .help_str = "remove bonding slave <slave_id> <port_id>: "
6058 "Remove a slave device from a bonded device",
6061 (void *)&cmd_removebonding_slave_remove,
6062 (void *)&cmd_removebonding_slave_bonding,
6063 (void *)&cmd_removebonding_slave_slave,
6064 (void *)&cmd_removebonding_slave_slaveid,
6065 (void *)&cmd_removebonding_slave_port,
6070 /* *** CREATE BONDED DEVICE *** */
6071 struct cmd_create_bonded_device_result {
6072 cmdline_fixed_string_t create;
6073 cmdline_fixed_string_t bonded;
6074 cmdline_fixed_string_t device;
6079 static int bond_dev_num = 0;
6081 static void cmd_create_bonded_device_parsed(void *parsed_result,
6082 __attribute__((unused)) struct cmdline *cl,
6083 __attribute__((unused)) void *data)
6085 struct cmd_create_bonded_device_result *res = parsed_result;
6086 char ethdev_name[RTE_ETH_NAME_MAX_LEN];
6090 if (test_done == 0) {
6091 printf("Please stop forwarding first\n");
6095 snprintf(ethdev_name, RTE_ETH_NAME_MAX_LEN, "net_bonding_testpmd_%d",
6098 /* Create a new bonded device. */
6099 port_id = rte_eth_bond_create(ethdev_name, res->mode, res->socket);
6101 printf("\t Failed to create bonded device.\n");
6104 printf("Created new bonded device %s on (port %d).\n", ethdev_name,
6107 /* Update number of ports */
6108 nb_ports = rte_eth_dev_count_avail();
6109 reconfig(port_id, res->socket);
6110 ret = rte_eth_promiscuous_enable(port_id);
6112 printf("Failed to enable promiscuous mode for port %u: %s - ignore\n",
6113 port_id, rte_strerror(-ret));
6115 ports[port_id].need_setup = 0;
6116 ports[port_id].port_status = RTE_PORT_STOPPED;
6121 cmdline_parse_token_string_t cmd_createbonded_device_create =
6122 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
6124 cmdline_parse_token_string_t cmd_createbonded_device_bonded =
6125 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
6127 cmdline_parse_token_string_t cmd_createbonded_device_device =
6128 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
6130 cmdline_parse_token_num_t cmd_createbonded_device_mode =
6131 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
6133 cmdline_parse_token_num_t cmd_createbonded_device_socket =
6134 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
6137 cmdline_parse_inst_t cmd_create_bonded_device = {
6138 .f = cmd_create_bonded_device_parsed,
6139 .help_str = "create bonded device <mode> <socket>: "
6140 "Create a new bonded device with specific bonding mode and socket",
6143 (void *)&cmd_createbonded_device_create,
6144 (void *)&cmd_createbonded_device_bonded,
6145 (void *)&cmd_createbonded_device_device,
6146 (void *)&cmd_createbonded_device_mode,
6147 (void *)&cmd_createbonded_device_socket,
6152 /* *** SET MAC ADDRESS IN BONDED DEVICE *** */
6153 struct cmd_set_bond_mac_addr_result {
6154 cmdline_fixed_string_t set;
6155 cmdline_fixed_string_t bonding;
6156 cmdline_fixed_string_t mac_addr;
6158 struct rte_ether_addr address;
6161 static void cmd_set_bond_mac_addr_parsed(void *parsed_result,
6162 __attribute__((unused)) struct cmdline *cl,
6163 __attribute__((unused)) void *data)
6165 struct cmd_set_bond_mac_addr_result *res = parsed_result;
6168 if (port_id_is_invalid(res->port_num, ENABLED_WARN))
6171 ret = rte_eth_bond_mac_address_set(res->port_num, &res->address);
6173 /* check the return value and print it if is < 0 */
6175 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
6178 cmdline_parse_token_string_t cmd_set_bond_mac_addr_set =
6179 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, set, "set");
6180 cmdline_parse_token_string_t cmd_set_bond_mac_addr_bonding =
6181 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, bonding,
6183 cmdline_parse_token_string_t cmd_set_bond_mac_addr_mac =
6184 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, mac_addr,
6186 cmdline_parse_token_num_t cmd_set_bond_mac_addr_portnum =
6187 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mac_addr_result,
6189 cmdline_parse_token_etheraddr_t cmd_set_bond_mac_addr_addr =
6190 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_bond_mac_addr_result, address);
6192 cmdline_parse_inst_t cmd_set_bond_mac_addr = {
6193 .f = cmd_set_bond_mac_addr_parsed,
6195 .help_str = "set bonding mac_addr <port_id> <mac_addr>",
6197 (void *)&cmd_set_bond_mac_addr_set,
6198 (void *)&cmd_set_bond_mac_addr_bonding,
6199 (void *)&cmd_set_bond_mac_addr_mac,
6200 (void *)&cmd_set_bond_mac_addr_portnum,
6201 (void *)&cmd_set_bond_mac_addr_addr,
6207 /* *** SET LINK STATUS MONITORING POLLING PERIOD ON BONDED DEVICE *** */
6208 struct cmd_set_bond_mon_period_result {
6209 cmdline_fixed_string_t set;
6210 cmdline_fixed_string_t bonding;
6211 cmdline_fixed_string_t mon_period;
6216 static void cmd_set_bond_mon_period_parsed(void *parsed_result,
6217 __attribute__((unused)) struct cmdline *cl,
6218 __attribute__((unused)) void *data)
6220 struct cmd_set_bond_mon_period_result *res = parsed_result;
6223 ret = rte_eth_bond_link_monitoring_set(res->port_num, res->period_ms);
6225 /* check the return value and print it if is < 0 */
6227 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
6230 cmdline_parse_token_string_t cmd_set_bond_mon_period_set =
6231 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
6233 cmdline_parse_token_string_t cmd_set_bond_mon_period_bonding =
6234 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
6235 bonding, "bonding");
6236 cmdline_parse_token_string_t cmd_set_bond_mon_period_mon_period =
6237 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
6238 mon_period, "mon_period");
6239 cmdline_parse_token_num_t cmd_set_bond_mon_period_portnum =
6240 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
6242 cmdline_parse_token_num_t cmd_set_bond_mon_period_period_ms =
6243 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
6246 cmdline_parse_inst_t cmd_set_bond_mon_period = {
6247 .f = cmd_set_bond_mon_period_parsed,
6249 .help_str = "set bonding mon_period <port_id> <period_ms>",
6251 (void *)&cmd_set_bond_mon_period_set,
6252 (void *)&cmd_set_bond_mon_period_bonding,
6253 (void *)&cmd_set_bond_mon_period_mon_period,
6254 (void *)&cmd_set_bond_mon_period_portnum,
6255 (void *)&cmd_set_bond_mon_period_period_ms,
6262 struct cmd_set_bonding_agg_mode_policy_result {
6263 cmdline_fixed_string_t set;
6264 cmdline_fixed_string_t bonding;
6265 cmdline_fixed_string_t agg_mode;
6267 cmdline_fixed_string_t policy;
6272 cmd_set_bonding_agg_mode(void *parsed_result,
6273 __attribute__((unused)) struct cmdline *cl,
6274 __attribute__((unused)) void *data)
6276 struct cmd_set_bonding_agg_mode_policy_result *res = parsed_result;
6277 uint8_t policy = AGG_BANDWIDTH;
6279 if (!strcmp(res->policy, "bandwidth"))
6280 policy = AGG_BANDWIDTH;
6281 else if (!strcmp(res->policy, "stable"))
6282 policy = AGG_STABLE;
6283 else if (!strcmp(res->policy, "count"))
6286 rte_eth_bond_8023ad_agg_selection_set(res->port_num, policy);
6290 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_set =
6291 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6293 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_bonding =
6294 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6295 bonding, "bonding");
6297 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_agg_mode =
6298 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6299 agg_mode, "agg_mode");
6301 cmdline_parse_token_num_t cmd_set_bonding_agg_mode_portnum =
6302 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6305 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_policy_string =
6306 TOKEN_STRING_INITIALIZER(
6307 struct cmd_set_bonding_balance_xmit_policy_result,
6308 policy, "stable#bandwidth#count");
6310 cmdline_parse_inst_t cmd_set_bonding_agg_mode_policy = {
6311 .f = cmd_set_bonding_agg_mode,
6313 .help_str = "set bonding mode IEEE802.3AD aggregator policy <port_id> <agg_name>",
6315 (void *)&cmd_set_bonding_agg_mode_set,
6316 (void *)&cmd_set_bonding_agg_mode_bonding,
6317 (void *)&cmd_set_bonding_agg_mode_agg_mode,
6318 (void *)&cmd_set_bonding_agg_mode_portnum,
6319 (void *)&cmd_set_bonding_agg_mode_policy_string,
6325 #endif /* RTE_LIBRTE_PMD_BOND */
6327 /* *** SET FORWARDING MODE *** */
6328 struct cmd_set_fwd_mode_result {
6329 cmdline_fixed_string_t set;
6330 cmdline_fixed_string_t fwd;
6331 cmdline_fixed_string_t mode;
6334 static void cmd_set_fwd_mode_parsed(void *parsed_result,
6335 __attribute__((unused)) struct cmdline *cl,
6336 __attribute__((unused)) void *data)
6338 struct cmd_set_fwd_mode_result *res = parsed_result;
6341 set_pkt_forwarding_mode(res->mode);
6344 cmdline_parse_token_string_t cmd_setfwd_set =
6345 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, set, "set");
6346 cmdline_parse_token_string_t cmd_setfwd_fwd =
6347 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, fwd, "fwd");
6348 cmdline_parse_token_string_t cmd_setfwd_mode =
6349 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, mode,
6350 "" /* defined at init */);
6352 cmdline_parse_inst_t cmd_set_fwd_mode = {
6353 .f = cmd_set_fwd_mode_parsed,
6355 .help_str = NULL, /* defined at init */
6357 (void *)&cmd_setfwd_set,
6358 (void *)&cmd_setfwd_fwd,
6359 (void *)&cmd_setfwd_mode,
6364 static void cmd_set_fwd_mode_init(void)
6367 static char token[128];
6368 static char help[256];
6369 cmdline_parse_token_string_t *token_struct;
6371 modes = list_pkt_forwarding_modes();
6372 snprintf(help, sizeof(help), "set fwd %s: "
6373 "Set packet forwarding mode", modes);
6374 cmd_set_fwd_mode.help_str = help;
6376 /* string token separator is # */
6377 for (c = token; *modes != '\0'; modes++)
6382 token_struct = (cmdline_parse_token_string_t*)cmd_set_fwd_mode.tokens[2];
6383 token_struct->string_data.str = token;
6386 /* *** SET RETRY FORWARDING MODE *** */
6387 struct cmd_set_fwd_retry_mode_result {
6388 cmdline_fixed_string_t set;
6389 cmdline_fixed_string_t fwd;
6390 cmdline_fixed_string_t mode;
6391 cmdline_fixed_string_t retry;
6394 static void cmd_set_fwd_retry_mode_parsed(void *parsed_result,
6395 __attribute__((unused)) struct cmdline *cl,
6396 __attribute__((unused)) void *data)
6398 struct cmd_set_fwd_retry_mode_result *res = parsed_result;
6401 set_pkt_forwarding_mode(res->mode);
6404 cmdline_parse_token_string_t cmd_setfwd_retry_set =
6405 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6407 cmdline_parse_token_string_t cmd_setfwd_retry_fwd =
6408 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6410 cmdline_parse_token_string_t cmd_setfwd_retry_mode =
6411 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6413 "" /* defined at init */);
6414 cmdline_parse_token_string_t cmd_setfwd_retry_retry =
6415 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6418 cmdline_parse_inst_t cmd_set_fwd_retry_mode = {
6419 .f = cmd_set_fwd_retry_mode_parsed,
6421 .help_str = NULL, /* defined at init */
6423 (void *)&cmd_setfwd_retry_set,
6424 (void *)&cmd_setfwd_retry_fwd,
6425 (void *)&cmd_setfwd_retry_mode,
6426 (void *)&cmd_setfwd_retry_retry,
6431 static void cmd_set_fwd_retry_mode_init(void)
6434 static char token[128];
6435 static char help[256];
6436 cmdline_parse_token_string_t *token_struct;
6438 modes = list_pkt_forwarding_retry_modes();
6439 snprintf(help, sizeof(help), "set fwd %s retry: "
6440 "Set packet forwarding mode with retry", modes);
6441 cmd_set_fwd_retry_mode.help_str = help;
6443 /* string token separator is # */
6444 for (c = token; *modes != '\0'; modes++)
6449 token_struct = (cmdline_parse_token_string_t *)
6450 cmd_set_fwd_retry_mode.tokens[2];
6451 token_struct->string_data.str = token;
6454 /* *** SET BURST TX DELAY TIME RETRY NUMBER *** */
6455 struct cmd_set_burst_tx_retry_result {
6456 cmdline_fixed_string_t set;
6457 cmdline_fixed_string_t burst;
6458 cmdline_fixed_string_t tx;
6459 cmdline_fixed_string_t delay;
6461 cmdline_fixed_string_t retry;
6465 static void cmd_set_burst_tx_retry_parsed(void *parsed_result,
6466 __attribute__((unused)) struct cmdline *cl,
6467 __attribute__((unused)) void *data)
6469 struct cmd_set_burst_tx_retry_result *res = parsed_result;
6471 if (!strcmp(res->set, "set") && !strcmp(res->burst, "burst")
6472 && !strcmp(res->tx, "tx")) {
6473 if (!strcmp(res->delay, "delay"))
6474 burst_tx_delay_time = res->time;
6475 if (!strcmp(res->retry, "retry"))
6476 burst_tx_retry_num = res->retry_num;
6481 cmdline_parse_token_string_t cmd_set_burst_tx_retry_set =
6482 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, set, "set");
6483 cmdline_parse_token_string_t cmd_set_burst_tx_retry_burst =
6484 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, burst,
6486 cmdline_parse_token_string_t cmd_set_burst_tx_retry_tx =
6487 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, tx, "tx");
6488 cmdline_parse_token_string_t cmd_set_burst_tx_retry_delay =
6489 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, delay, "delay");
6490 cmdline_parse_token_num_t cmd_set_burst_tx_retry_time =
6491 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, time, UINT32);
6492 cmdline_parse_token_string_t cmd_set_burst_tx_retry_retry =
6493 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry, "retry");
6494 cmdline_parse_token_num_t cmd_set_burst_tx_retry_retry_num =
6495 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry_num, UINT32);
6497 cmdline_parse_inst_t cmd_set_burst_tx_retry = {
6498 .f = cmd_set_burst_tx_retry_parsed,
6499 .help_str = "set burst tx delay <delay_usec> retry <num_retry>",
6501 (void *)&cmd_set_burst_tx_retry_set,
6502 (void *)&cmd_set_burst_tx_retry_burst,
6503 (void *)&cmd_set_burst_tx_retry_tx,
6504 (void *)&cmd_set_burst_tx_retry_delay,
6505 (void *)&cmd_set_burst_tx_retry_time,
6506 (void *)&cmd_set_burst_tx_retry_retry,
6507 (void *)&cmd_set_burst_tx_retry_retry_num,
6512 /* *** SET PROMISC MODE *** */
6513 struct cmd_set_promisc_mode_result {
6514 cmdline_fixed_string_t set;
6515 cmdline_fixed_string_t promisc;
6516 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
6517 uint16_t port_num; /* valid if "allports" argument == 0 */
6518 cmdline_fixed_string_t mode;
6521 static void cmd_set_promisc_mode_parsed(void *parsed_result,
6522 __attribute__((unused)) struct cmdline *cl,
6525 struct cmd_set_promisc_mode_result *res = parsed_result;
6529 if (!strcmp(res->mode, "on"))
6536 RTE_ETH_FOREACH_DEV(i)
6537 eth_set_promisc_mode(i, enable);
6539 eth_set_promisc_mode(res->port_num, enable);
6543 cmdline_parse_token_string_t cmd_setpromisc_set =
6544 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, set, "set");
6545 cmdline_parse_token_string_t cmd_setpromisc_promisc =
6546 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, promisc,
6548 cmdline_parse_token_string_t cmd_setpromisc_portall =
6549 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, port_all,
6551 cmdline_parse_token_num_t cmd_setpromisc_portnum =
6552 TOKEN_NUM_INITIALIZER(struct cmd_set_promisc_mode_result, port_num,
6554 cmdline_parse_token_string_t cmd_setpromisc_mode =
6555 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, mode,
6558 cmdline_parse_inst_t cmd_set_promisc_mode_all = {
6559 .f = cmd_set_promisc_mode_parsed,
6561 .help_str = "set promisc all on|off: Set promisc mode for all ports",
6563 (void *)&cmd_setpromisc_set,
6564 (void *)&cmd_setpromisc_promisc,
6565 (void *)&cmd_setpromisc_portall,
6566 (void *)&cmd_setpromisc_mode,
6571 cmdline_parse_inst_t cmd_set_promisc_mode_one = {
6572 .f = cmd_set_promisc_mode_parsed,
6574 .help_str = "set promisc <port_id> on|off: Set promisc mode on port_id",
6576 (void *)&cmd_setpromisc_set,
6577 (void *)&cmd_setpromisc_promisc,
6578 (void *)&cmd_setpromisc_portnum,
6579 (void *)&cmd_setpromisc_mode,
6584 /* *** SET ALLMULTI MODE *** */
6585 struct cmd_set_allmulti_mode_result {
6586 cmdline_fixed_string_t set;
6587 cmdline_fixed_string_t allmulti;
6588 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
6589 uint16_t port_num; /* valid if "allports" argument == 0 */
6590 cmdline_fixed_string_t mode;
6593 static void cmd_set_allmulti_mode_parsed(void *parsed_result,
6594 __attribute__((unused)) struct cmdline *cl,
6597 struct cmd_set_allmulti_mode_result *res = parsed_result;
6601 if (!strcmp(res->mode, "on"))
6608 RTE_ETH_FOREACH_DEV(i) {
6609 eth_set_allmulticast_mode(i, enable);
6613 eth_set_allmulticast_mode(res->port_num, enable);
6617 cmdline_parse_token_string_t cmd_setallmulti_set =
6618 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, set, "set");
6619 cmdline_parse_token_string_t cmd_setallmulti_allmulti =
6620 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, allmulti,
6622 cmdline_parse_token_string_t cmd_setallmulti_portall =
6623 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, port_all,
6625 cmdline_parse_token_num_t cmd_setallmulti_portnum =
6626 TOKEN_NUM_INITIALIZER(struct cmd_set_allmulti_mode_result, port_num,
6628 cmdline_parse_token_string_t cmd_setallmulti_mode =
6629 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, mode,
6632 cmdline_parse_inst_t cmd_set_allmulti_mode_all = {
6633 .f = cmd_set_allmulti_mode_parsed,
6635 .help_str = "set allmulti all on|off: Set allmulti mode for all ports",
6637 (void *)&cmd_setallmulti_set,
6638 (void *)&cmd_setallmulti_allmulti,
6639 (void *)&cmd_setallmulti_portall,
6640 (void *)&cmd_setallmulti_mode,
6645 cmdline_parse_inst_t cmd_set_allmulti_mode_one = {
6646 .f = cmd_set_allmulti_mode_parsed,
6648 .help_str = "set allmulti <port_id> on|off: "
6649 "Set allmulti mode on port_id",
6651 (void *)&cmd_setallmulti_set,
6652 (void *)&cmd_setallmulti_allmulti,
6653 (void *)&cmd_setallmulti_portnum,
6654 (void *)&cmd_setallmulti_mode,
6659 /* *** SETUP ETHERNET LINK FLOW CONTROL *** */
6660 struct cmd_link_flow_ctrl_set_result {
6661 cmdline_fixed_string_t set;
6662 cmdline_fixed_string_t flow_ctrl;
6663 cmdline_fixed_string_t rx;
6664 cmdline_fixed_string_t rx_lfc_mode;
6665 cmdline_fixed_string_t tx;
6666 cmdline_fixed_string_t tx_lfc_mode;
6667 cmdline_fixed_string_t mac_ctrl_frame_fwd;
6668 cmdline_fixed_string_t mac_ctrl_frame_fwd_mode;
6669 cmdline_fixed_string_t autoneg_str;
6670 cmdline_fixed_string_t autoneg;
6671 cmdline_fixed_string_t hw_str;
6672 uint32_t high_water;
6673 cmdline_fixed_string_t lw_str;
6675 cmdline_fixed_string_t pt_str;
6676 uint16_t pause_time;
6677 cmdline_fixed_string_t xon_str;
6682 cmdline_parse_token_string_t cmd_lfc_set_set =
6683 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6685 cmdline_parse_token_string_t cmd_lfc_set_flow_ctrl =
6686 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6687 flow_ctrl, "flow_ctrl");
6688 cmdline_parse_token_string_t cmd_lfc_set_rx =
6689 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6691 cmdline_parse_token_string_t cmd_lfc_set_rx_mode =
6692 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6693 rx_lfc_mode, "on#off");
6694 cmdline_parse_token_string_t cmd_lfc_set_tx =
6695 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6697 cmdline_parse_token_string_t cmd_lfc_set_tx_mode =
6698 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6699 tx_lfc_mode, "on#off");
6700 cmdline_parse_token_string_t cmd_lfc_set_high_water_str =
6701 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6702 hw_str, "high_water");
6703 cmdline_parse_token_num_t cmd_lfc_set_high_water =
6704 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6705 high_water, UINT32);
6706 cmdline_parse_token_string_t cmd_lfc_set_low_water_str =
6707 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6708 lw_str, "low_water");
6709 cmdline_parse_token_num_t cmd_lfc_set_low_water =
6710 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6712 cmdline_parse_token_string_t cmd_lfc_set_pause_time_str =
6713 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6714 pt_str, "pause_time");
6715 cmdline_parse_token_num_t cmd_lfc_set_pause_time =
6716 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6717 pause_time, UINT16);
6718 cmdline_parse_token_string_t cmd_lfc_set_send_xon_str =
6719 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6720 xon_str, "send_xon");
6721 cmdline_parse_token_num_t cmd_lfc_set_send_xon =
6722 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6724 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd_mode =
6725 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6726 mac_ctrl_frame_fwd, "mac_ctrl_frame_fwd");
6727 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd =
6728 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6729 mac_ctrl_frame_fwd_mode, "on#off");
6730 cmdline_parse_token_string_t cmd_lfc_set_autoneg_str =
6731 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6732 autoneg_str, "autoneg");
6733 cmdline_parse_token_string_t cmd_lfc_set_autoneg =
6734 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6736 cmdline_parse_token_num_t cmd_lfc_set_portid =
6737 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6740 /* forward declaration */
6742 cmd_link_flow_ctrl_set_parsed(void *parsed_result, struct cmdline *cl,
6745 cmdline_parse_inst_t cmd_link_flow_control_set = {
6746 .f = cmd_link_flow_ctrl_set_parsed,
6748 .help_str = "set flow_ctrl rx on|off tx on|off <high_water> "
6749 "<low_water> <pause_time> <send_xon> mac_ctrl_frame_fwd on|off "
6750 "autoneg on|off <port_id>: Configure the Ethernet flow control",
6752 (void *)&cmd_lfc_set_set,
6753 (void *)&cmd_lfc_set_flow_ctrl,
6754 (void *)&cmd_lfc_set_rx,
6755 (void *)&cmd_lfc_set_rx_mode,
6756 (void *)&cmd_lfc_set_tx,
6757 (void *)&cmd_lfc_set_tx_mode,
6758 (void *)&cmd_lfc_set_high_water,
6759 (void *)&cmd_lfc_set_low_water,
6760 (void *)&cmd_lfc_set_pause_time,
6761 (void *)&cmd_lfc_set_send_xon,
6762 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
6763 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
6764 (void *)&cmd_lfc_set_autoneg_str,
6765 (void *)&cmd_lfc_set_autoneg,
6766 (void *)&cmd_lfc_set_portid,
6771 cmdline_parse_inst_t cmd_link_flow_control_set_rx = {
6772 .f = cmd_link_flow_ctrl_set_parsed,
6773 .data = (void *)&cmd_link_flow_control_set_rx,
6774 .help_str = "set flow_ctrl rx on|off <port_id>: "
6775 "Change rx flow control parameter",
6777 (void *)&cmd_lfc_set_set,
6778 (void *)&cmd_lfc_set_flow_ctrl,
6779 (void *)&cmd_lfc_set_rx,
6780 (void *)&cmd_lfc_set_rx_mode,
6781 (void *)&cmd_lfc_set_portid,
6786 cmdline_parse_inst_t cmd_link_flow_control_set_tx = {
6787 .f = cmd_link_flow_ctrl_set_parsed,
6788 .data = (void *)&cmd_link_flow_control_set_tx,
6789 .help_str = "set flow_ctrl tx on|off <port_id>: "
6790 "Change tx flow control parameter",
6792 (void *)&cmd_lfc_set_set,
6793 (void *)&cmd_lfc_set_flow_ctrl,
6794 (void *)&cmd_lfc_set_tx,
6795 (void *)&cmd_lfc_set_tx_mode,
6796 (void *)&cmd_lfc_set_portid,
6801 cmdline_parse_inst_t cmd_link_flow_control_set_hw = {
6802 .f = cmd_link_flow_ctrl_set_parsed,
6803 .data = (void *)&cmd_link_flow_control_set_hw,
6804 .help_str = "set flow_ctrl high_water <value> <port_id>: "
6805 "Change high water flow control parameter",
6807 (void *)&cmd_lfc_set_set,
6808 (void *)&cmd_lfc_set_flow_ctrl,
6809 (void *)&cmd_lfc_set_high_water_str,
6810 (void *)&cmd_lfc_set_high_water,
6811 (void *)&cmd_lfc_set_portid,
6816 cmdline_parse_inst_t cmd_link_flow_control_set_lw = {
6817 .f = cmd_link_flow_ctrl_set_parsed,
6818 .data = (void *)&cmd_link_flow_control_set_lw,
6819 .help_str = "set flow_ctrl low_water <value> <port_id>: "
6820 "Change low water flow control parameter",
6822 (void *)&cmd_lfc_set_set,
6823 (void *)&cmd_lfc_set_flow_ctrl,
6824 (void *)&cmd_lfc_set_low_water_str,
6825 (void *)&cmd_lfc_set_low_water,
6826 (void *)&cmd_lfc_set_portid,
6831 cmdline_parse_inst_t cmd_link_flow_control_set_pt = {
6832 .f = cmd_link_flow_ctrl_set_parsed,
6833 .data = (void *)&cmd_link_flow_control_set_pt,
6834 .help_str = "set flow_ctrl pause_time <value> <port_id>: "
6835 "Change pause time flow control parameter",
6837 (void *)&cmd_lfc_set_set,
6838 (void *)&cmd_lfc_set_flow_ctrl,
6839 (void *)&cmd_lfc_set_pause_time_str,
6840 (void *)&cmd_lfc_set_pause_time,
6841 (void *)&cmd_lfc_set_portid,
6846 cmdline_parse_inst_t cmd_link_flow_control_set_xon = {
6847 .f = cmd_link_flow_ctrl_set_parsed,
6848 .data = (void *)&cmd_link_flow_control_set_xon,
6849 .help_str = "set flow_ctrl send_xon <value> <port_id>: "
6850 "Change send_xon flow control parameter",
6852 (void *)&cmd_lfc_set_set,
6853 (void *)&cmd_lfc_set_flow_ctrl,
6854 (void *)&cmd_lfc_set_send_xon_str,
6855 (void *)&cmd_lfc_set_send_xon,
6856 (void *)&cmd_lfc_set_portid,
6861 cmdline_parse_inst_t cmd_link_flow_control_set_macfwd = {
6862 .f = cmd_link_flow_ctrl_set_parsed,
6863 .data = (void *)&cmd_link_flow_control_set_macfwd,
6864 .help_str = "set flow_ctrl mac_ctrl_frame_fwd on|off <port_id>: "
6865 "Change mac ctrl fwd flow control parameter",
6867 (void *)&cmd_lfc_set_set,
6868 (void *)&cmd_lfc_set_flow_ctrl,
6869 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
6870 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
6871 (void *)&cmd_lfc_set_portid,
6876 cmdline_parse_inst_t cmd_link_flow_control_set_autoneg = {
6877 .f = cmd_link_flow_ctrl_set_parsed,
6878 .data = (void *)&cmd_link_flow_control_set_autoneg,
6879 .help_str = "set flow_ctrl autoneg on|off <port_id>: "
6880 "Change autoneg flow control parameter",
6882 (void *)&cmd_lfc_set_set,
6883 (void *)&cmd_lfc_set_flow_ctrl,
6884 (void *)&cmd_lfc_set_autoneg_str,
6885 (void *)&cmd_lfc_set_autoneg,
6886 (void *)&cmd_lfc_set_portid,
6892 cmd_link_flow_ctrl_set_parsed(void *parsed_result,
6893 __attribute__((unused)) struct cmdline *cl,
6896 struct cmd_link_flow_ctrl_set_result *res = parsed_result;
6897 cmdline_parse_inst_t *cmd = data;
6898 struct rte_eth_fc_conf fc_conf;
6904 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
6905 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
6906 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
6907 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
6909 static enum rte_eth_fc_mode rx_tx_onoff_2_lfc_mode[2][2] = {
6910 {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL}
6913 /* Partial command line, retrieve current configuration */
6915 ret = rte_eth_dev_flow_ctrl_get(res->port_id, &fc_conf);
6917 printf("cannot get current flow ctrl parameters, return"
6918 "code = %d\n", ret);
6922 if ((fc_conf.mode == RTE_FC_RX_PAUSE) ||
6923 (fc_conf.mode == RTE_FC_FULL))
6925 if ((fc_conf.mode == RTE_FC_TX_PAUSE) ||
6926 (fc_conf.mode == RTE_FC_FULL))
6930 if (!cmd || cmd == &cmd_link_flow_control_set_rx)
6931 rx_fc_en = (!strcmp(res->rx_lfc_mode, "on")) ? 1 : 0;
6933 if (!cmd || cmd == &cmd_link_flow_control_set_tx)
6934 tx_fc_en = (!strcmp(res->tx_lfc_mode, "on")) ? 1 : 0;
6936 fc_conf.mode = rx_tx_onoff_2_lfc_mode[rx_fc_en][tx_fc_en];
6938 if (!cmd || cmd == &cmd_link_flow_control_set_hw)
6939 fc_conf.high_water = res->high_water;
6941 if (!cmd || cmd == &cmd_link_flow_control_set_lw)
6942 fc_conf.low_water = res->low_water;
6944 if (!cmd || cmd == &cmd_link_flow_control_set_pt)
6945 fc_conf.pause_time = res->pause_time;
6947 if (!cmd || cmd == &cmd_link_flow_control_set_xon)
6948 fc_conf.send_xon = res->send_xon;
6950 if (!cmd || cmd == &cmd_link_flow_control_set_macfwd) {
6951 if (!strcmp(res->mac_ctrl_frame_fwd_mode, "on"))
6952 fc_conf.mac_ctrl_frame_fwd = 1;
6954 fc_conf.mac_ctrl_frame_fwd = 0;
6957 if (!cmd || cmd == &cmd_link_flow_control_set_autoneg)
6958 fc_conf.autoneg = (!strcmp(res->autoneg, "on")) ? 1 : 0;
6960 ret = rte_eth_dev_flow_ctrl_set(res->port_id, &fc_conf);
6962 printf("bad flow contrl parameter, return code = %d \n", ret);
6965 /* *** SETUP ETHERNET PRIORITY FLOW CONTROL *** */
6966 struct cmd_priority_flow_ctrl_set_result {
6967 cmdline_fixed_string_t set;
6968 cmdline_fixed_string_t pfc_ctrl;
6969 cmdline_fixed_string_t rx;
6970 cmdline_fixed_string_t rx_pfc_mode;
6971 cmdline_fixed_string_t tx;
6972 cmdline_fixed_string_t tx_pfc_mode;
6973 uint32_t high_water;
6975 uint16_t pause_time;
6981 cmd_priority_flow_ctrl_set_parsed(void *parsed_result,
6982 __attribute__((unused)) struct cmdline *cl,
6983 __attribute__((unused)) void *data)
6985 struct cmd_priority_flow_ctrl_set_result *res = parsed_result;
6986 struct rte_eth_pfc_conf pfc_conf;
6987 int rx_fc_enable, tx_fc_enable;
6991 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
6992 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
6993 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
6994 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
6996 static enum rte_eth_fc_mode rx_tx_onoff_2_pfc_mode[2][2] = {
6997 {RTE_FC_NONE, RTE_FC_RX_PAUSE}, {RTE_FC_TX_PAUSE, RTE_FC_FULL}
7000 rx_fc_enable = (!strncmp(res->rx_pfc_mode, "on",2)) ? 1 : 0;
7001 tx_fc_enable = (!strncmp(res->tx_pfc_mode, "on",2)) ? 1 : 0;
7002 pfc_conf.fc.mode = rx_tx_onoff_2_pfc_mode[rx_fc_enable][tx_fc_enable];
7003 pfc_conf.fc.high_water = res->high_water;
7004 pfc_conf.fc.low_water = res->low_water;
7005 pfc_conf.fc.pause_time = res->pause_time;
7006 pfc_conf.priority = res->priority;
7008 ret = rte_eth_dev_priority_flow_ctrl_set(res->port_id, &pfc_conf);
7010 printf("bad priority flow contrl parameter, return code = %d \n", ret);
7013 cmdline_parse_token_string_t cmd_pfc_set_set =
7014 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7016 cmdline_parse_token_string_t cmd_pfc_set_flow_ctrl =
7017 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7018 pfc_ctrl, "pfc_ctrl");
7019 cmdline_parse_token_string_t cmd_pfc_set_rx =
7020 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7022 cmdline_parse_token_string_t cmd_pfc_set_rx_mode =
7023 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7024 rx_pfc_mode, "on#off");
7025 cmdline_parse_token_string_t cmd_pfc_set_tx =
7026 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7028 cmdline_parse_token_string_t cmd_pfc_set_tx_mode =
7029 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7030 tx_pfc_mode, "on#off");
7031 cmdline_parse_token_num_t cmd_pfc_set_high_water =
7032 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7033 high_water, UINT32);
7034 cmdline_parse_token_num_t cmd_pfc_set_low_water =
7035 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7037 cmdline_parse_token_num_t cmd_pfc_set_pause_time =
7038 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7039 pause_time, UINT16);
7040 cmdline_parse_token_num_t cmd_pfc_set_priority =
7041 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7043 cmdline_parse_token_num_t cmd_pfc_set_portid =
7044 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7047 cmdline_parse_inst_t cmd_priority_flow_control_set = {
7048 .f = cmd_priority_flow_ctrl_set_parsed,
7050 .help_str = "set pfc_ctrl rx on|off tx on|off <high_water> <low_water> "
7051 "<pause_time> <priority> <port_id>: "
7052 "Configure the Ethernet priority flow control",
7054 (void *)&cmd_pfc_set_set,
7055 (void *)&cmd_pfc_set_flow_ctrl,
7056 (void *)&cmd_pfc_set_rx,
7057 (void *)&cmd_pfc_set_rx_mode,
7058 (void *)&cmd_pfc_set_tx,
7059 (void *)&cmd_pfc_set_tx_mode,
7060 (void *)&cmd_pfc_set_high_water,
7061 (void *)&cmd_pfc_set_low_water,
7062 (void *)&cmd_pfc_set_pause_time,
7063 (void *)&cmd_pfc_set_priority,
7064 (void *)&cmd_pfc_set_portid,
7069 /* *** RESET CONFIGURATION *** */
7070 struct cmd_reset_result {
7071 cmdline_fixed_string_t reset;
7072 cmdline_fixed_string_t def;
7075 static void cmd_reset_parsed(__attribute__((unused)) void *parsed_result,
7077 __attribute__((unused)) void *data)
7079 cmdline_printf(cl, "Reset to default forwarding configuration...\n");
7080 set_def_fwd_config();
7083 cmdline_parse_token_string_t cmd_reset_set =
7084 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, reset, "set");
7085 cmdline_parse_token_string_t cmd_reset_def =
7086 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, def,
7089 cmdline_parse_inst_t cmd_reset = {
7090 .f = cmd_reset_parsed,
7092 .help_str = "set default: Reset default forwarding configuration",
7094 (void *)&cmd_reset_set,
7095 (void *)&cmd_reset_def,
7100 /* *** START FORWARDING *** */
7101 struct cmd_start_result {
7102 cmdline_fixed_string_t start;
7105 cmdline_parse_token_string_t cmd_start_start =
7106 TOKEN_STRING_INITIALIZER(struct cmd_start_result, start, "start");
7108 static void cmd_start_parsed(__attribute__((unused)) void *parsed_result,
7109 __attribute__((unused)) struct cmdline *cl,
7110 __attribute__((unused)) void *data)
7112 start_packet_forwarding(0);
7115 cmdline_parse_inst_t cmd_start = {
7116 .f = cmd_start_parsed,
7118 .help_str = "start: Start packet forwarding",
7120 (void *)&cmd_start_start,
7125 /* *** START FORWARDING WITH ONE TX BURST FIRST *** */
7126 struct cmd_start_tx_first_result {
7127 cmdline_fixed_string_t start;
7128 cmdline_fixed_string_t tx_first;
7132 cmd_start_tx_first_parsed(__attribute__((unused)) void *parsed_result,
7133 __attribute__((unused)) struct cmdline *cl,
7134 __attribute__((unused)) void *data)
7136 start_packet_forwarding(1);
7139 cmdline_parse_token_string_t cmd_start_tx_first_start =
7140 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, start,
7142 cmdline_parse_token_string_t cmd_start_tx_first_tx_first =
7143 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result,
7144 tx_first, "tx_first");
7146 cmdline_parse_inst_t cmd_start_tx_first = {
7147 .f = cmd_start_tx_first_parsed,
7149 .help_str = "start tx_first: Start packet forwarding, "
7150 "after sending 1 burst of packets",
7152 (void *)&cmd_start_tx_first_start,
7153 (void *)&cmd_start_tx_first_tx_first,
7158 /* *** START FORWARDING WITH N TX BURST FIRST *** */
7159 struct cmd_start_tx_first_n_result {
7160 cmdline_fixed_string_t start;
7161 cmdline_fixed_string_t tx_first;
7166 cmd_start_tx_first_n_parsed(void *parsed_result,
7167 __attribute__((unused)) struct cmdline *cl,
7168 __attribute__((unused)) void *data)
7170 struct cmd_start_tx_first_n_result *res = parsed_result;
7172 start_packet_forwarding(res->tx_num);
7175 cmdline_parse_token_string_t cmd_start_tx_first_n_start =
7176 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result,
7178 cmdline_parse_token_string_t cmd_start_tx_first_n_tx_first =
7179 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result,
7180 tx_first, "tx_first");
7181 cmdline_parse_token_num_t cmd_start_tx_first_n_tx_num =
7182 TOKEN_NUM_INITIALIZER(struct cmd_start_tx_first_n_result,
7185 cmdline_parse_inst_t cmd_start_tx_first_n = {
7186 .f = cmd_start_tx_first_n_parsed,
7188 .help_str = "start tx_first <num>: "
7189 "packet forwarding, after sending <num> bursts of packets",
7191 (void *)&cmd_start_tx_first_n_start,
7192 (void *)&cmd_start_tx_first_n_tx_first,
7193 (void *)&cmd_start_tx_first_n_tx_num,
7198 /* *** SET LINK UP *** */
7199 struct cmd_set_link_up_result {
7200 cmdline_fixed_string_t set;
7201 cmdline_fixed_string_t link_up;
7202 cmdline_fixed_string_t port;
7206 cmdline_parse_token_string_t cmd_set_link_up_set =
7207 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, set, "set");
7208 cmdline_parse_token_string_t cmd_set_link_up_link_up =
7209 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, link_up,
7211 cmdline_parse_token_string_t cmd_set_link_up_port =
7212 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, port, "port");
7213 cmdline_parse_token_num_t cmd_set_link_up_port_id =
7214 TOKEN_NUM_INITIALIZER(struct cmd_set_link_up_result, port_id, UINT16);
7216 static void cmd_set_link_up_parsed(__attribute__((unused)) void *parsed_result,
7217 __attribute__((unused)) struct cmdline *cl,
7218 __attribute__((unused)) void *data)
7220 struct cmd_set_link_up_result *res = parsed_result;
7221 dev_set_link_up(res->port_id);
7224 cmdline_parse_inst_t cmd_set_link_up = {
7225 .f = cmd_set_link_up_parsed,
7227 .help_str = "set link-up port <port id>",
7229 (void *)&cmd_set_link_up_set,
7230 (void *)&cmd_set_link_up_link_up,
7231 (void *)&cmd_set_link_up_port,
7232 (void *)&cmd_set_link_up_port_id,
7237 /* *** SET LINK DOWN *** */
7238 struct cmd_set_link_down_result {
7239 cmdline_fixed_string_t set;
7240 cmdline_fixed_string_t link_down;
7241 cmdline_fixed_string_t port;
7245 cmdline_parse_token_string_t cmd_set_link_down_set =
7246 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, set, "set");
7247 cmdline_parse_token_string_t cmd_set_link_down_link_down =
7248 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, link_down,
7250 cmdline_parse_token_string_t cmd_set_link_down_port =
7251 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, port, "port");
7252 cmdline_parse_token_num_t cmd_set_link_down_port_id =
7253 TOKEN_NUM_INITIALIZER(struct cmd_set_link_down_result, port_id, UINT16);
7255 static void cmd_set_link_down_parsed(
7256 __attribute__((unused)) void *parsed_result,
7257 __attribute__((unused)) struct cmdline *cl,
7258 __attribute__((unused)) void *data)
7260 struct cmd_set_link_down_result *res = parsed_result;
7261 dev_set_link_down(res->port_id);
7264 cmdline_parse_inst_t cmd_set_link_down = {
7265 .f = cmd_set_link_down_parsed,
7267 .help_str = "set link-down port <port id>",
7269 (void *)&cmd_set_link_down_set,
7270 (void *)&cmd_set_link_down_link_down,
7271 (void *)&cmd_set_link_down_port,
7272 (void *)&cmd_set_link_down_port_id,
7277 /* *** SHOW CFG *** */
7278 struct cmd_showcfg_result {
7279 cmdline_fixed_string_t show;
7280 cmdline_fixed_string_t cfg;
7281 cmdline_fixed_string_t what;
7284 static void cmd_showcfg_parsed(void *parsed_result,
7285 __attribute__((unused)) struct cmdline *cl,
7286 __attribute__((unused)) void *data)
7288 struct cmd_showcfg_result *res = parsed_result;
7289 if (!strcmp(res->what, "rxtx"))
7290 rxtx_config_display();
7291 else if (!strcmp(res->what, "cores"))
7292 fwd_lcores_config_display();
7293 else if (!strcmp(res->what, "fwd"))
7294 pkt_fwd_config_display(&cur_fwd_config);
7295 else if (!strcmp(res->what, "txpkts"))
7296 show_tx_pkt_segments();
7299 cmdline_parse_token_string_t cmd_showcfg_show =
7300 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, show, "show");
7301 cmdline_parse_token_string_t cmd_showcfg_port =
7302 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, cfg, "config");
7303 cmdline_parse_token_string_t cmd_showcfg_what =
7304 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, what,
7305 "rxtx#cores#fwd#txpkts");
7307 cmdline_parse_inst_t cmd_showcfg = {
7308 .f = cmd_showcfg_parsed,
7310 .help_str = "show config rxtx|cores|fwd|txpkts",
7312 (void *)&cmd_showcfg_show,
7313 (void *)&cmd_showcfg_port,
7314 (void *)&cmd_showcfg_what,
7319 /* *** SHOW ALL PORT INFO *** */
7320 struct cmd_showportall_result {
7321 cmdline_fixed_string_t show;
7322 cmdline_fixed_string_t port;
7323 cmdline_fixed_string_t what;
7324 cmdline_fixed_string_t all;
7327 static void cmd_showportall_parsed(void *parsed_result,
7328 __attribute__((unused)) struct cmdline *cl,
7329 __attribute__((unused)) void *data)
7333 struct cmd_showportall_result *res = parsed_result;
7334 if (!strcmp(res->show, "clear")) {
7335 if (!strcmp(res->what, "stats"))
7336 RTE_ETH_FOREACH_DEV(i)
7338 else if (!strcmp(res->what, "xstats"))
7339 RTE_ETH_FOREACH_DEV(i)
7340 nic_xstats_clear(i);
7341 } else if (!strcmp(res->what, "info"))
7342 RTE_ETH_FOREACH_DEV(i)
7343 port_infos_display(i);
7344 else if (!strcmp(res->what, "summary")) {
7345 port_summary_header_display();
7346 RTE_ETH_FOREACH_DEV(i)
7347 port_summary_display(i);
7349 else if (!strcmp(res->what, "stats"))
7350 RTE_ETH_FOREACH_DEV(i)
7351 nic_stats_display(i);
7352 else if (!strcmp(res->what, "xstats"))
7353 RTE_ETH_FOREACH_DEV(i)
7354 nic_xstats_display(i);
7355 else if (!strcmp(res->what, "fdir"))
7356 RTE_ETH_FOREACH_DEV(i)
7358 else if (!strcmp(res->what, "stat_qmap"))
7359 RTE_ETH_FOREACH_DEV(i)
7360 nic_stats_mapping_display(i);
7361 else if (!strcmp(res->what, "dcb_tc"))
7362 RTE_ETH_FOREACH_DEV(i)
7363 port_dcb_info_display(i);
7364 else if (!strcmp(res->what, "cap"))
7365 RTE_ETH_FOREACH_DEV(i)
7366 port_offload_cap_display(i);
7369 cmdline_parse_token_string_t cmd_showportall_show =
7370 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, show,
7372 cmdline_parse_token_string_t cmd_showportall_port =
7373 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, port, "port");
7374 cmdline_parse_token_string_t cmd_showportall_what =
7375 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, what,
7376 "info#summary#stats#xstats#fdir#stat_qmap#dcb_tc#cap");
7377 cmdline_parse_token_string_t cmd_showportall_all =
7378 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, all, "all");
7379 cmdline_parse_inst_t cmd_showportall = {
7380 .f = cmd_showportall_parsed,
7382 .help_str = "show|clear port "
7383 "info|summary|stats|xstats|fdir|stat_qmap|dcb_tc|cap all",
7385 (void *)&cmd_showportall_show,
7386 (void *)&cmd_showportall_port,
7387 (void *)&cmd_showportall_what,
7388 (void *)&cmd_showportall_all,
7393 /* *** SHOW PORT INFO *** */
7394 struct cmd_showport_result {
7395 cmdline_fixed_string_t show;
7396 cmdline_fixed_string_t port;
7397 cmdline_fixed_string_t what;
7401 static void cmd_showport_parsed(void *parsed_result,
7402 __attribute__((unused)) struct cmdline *cl,
7403 __attribute__((unused)) void *data)
7405 struct cmd_showport_result *res = parsed_result;
7406 if (!strcmp(res->show, "clear")) {
7407 if (!strcmp(res->what, "stats"))
7408 nic_stats_clear(res->portnum);
7409 else if (!strcmp(res->what, "xstats"))
7410 nic_xstats_clear(res->portnum);
7411 } else if (!strcmp(res->what, "info"))
7412 port_infos_display(res->portnum);
7413 else if (!strcmp(res->what, "summary")) {
7414 port_summary_header_display();
7415 port_summary_display(res->portnum);
7417 else if (!strcmp(res->what, "stats"))
7418 nic_stats_display(res->portnum);
7419 else if (!strcmp(res->what, "xstats"))
7420 nic_xstats_display(res->portnum);
7421 else if (!strcmp(res->what, "fdir"))
7422 fdir_get_infos(res->portnum);
7423 else if (!strcmp(res->what, "stat_qmap"))
7424 nic_stats_mapping_display(res->portnum);
7425 else if (!strcmp(res->what, "dcb_tc"))
7426 port_dcb_info_display(res->portnum);
7427 else if (!strcmp(res->what, "cap"))
7428 port_offload_cap_display(res->portnum);
7431 cmdline_parse_token_string_t cmd_showport_show =
7432 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, show,
7434 cmdline_parse_token_string_t cmd_showport_port =
7435 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, port, "port");
7436 cmdline_parse_token_string_t cmd_showport_what =
7437 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, what,
7438 "info#summary#stats#xstats#fdir#stat_qmap#dcb_tc#cap");
7439 cmdline_parse_token_num_t cmd_showport_portnum =
7440 TOKEN_NUM_INITIALIZER(struct cmd_showport_result, portnum, UINT16);
7442 cmdline_parse_inst_t cmd_showport = {
7443 .f = cmd_showport_parsed,
7445 .help_str = "show|clear port "
7446 "info|summary|stats|xstats|fdir|stat_qmap|dcb_tc|cap "
7449 (void *)&cmd_showport_show,
7450 (void *)&cmd_showport_port,
7451 (void *)&cmd_showport_what,
7452 (void *)&cmd_showport_portnum,
7457 /* *** SHOW DEVICE INFO *** */
7458 struct cmd_showdevice_result {
7459 cmdline_fixed_string_t show;
7460 cmdline_fixed_string_t device;
7461 cmdline_fixed_string_t what;
7462 cmdline_fixed_string_t identifier;
7465 static void cmd_showdevice_parsed(void *parsed_result,
7466 __attribute__((unused)) struct cmdline *cl,
7467 __attribute__((unused)) void *data)
7469 struct cmd_showdevice_result *res = parsed_result;
7470 if (!strcmp(res->what, "info")) {
7471 if (!strcmp(res->identifier, "all"))
7472 device_infos_display(NULL);
7474 device_infos_display(res->identifier);
7478 cmdline_parse_token_string_t cmd_showdevice_show =
7479 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, show,
7481 cmdline_parse_token_string_t cmd_showdevice_device =
7482 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, device, "device");
7483 cmdline_parse_token_string_t cmd_showdevice_what =
7484 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, what,
7486 cmdline_parse_token_string_t cmd_showdevice_identifier =
7487 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result,
7490 cmdline_parse_inst_t cmd_showdevice = {
7491 .f = cmd_showdevice_parsed,
7493 .help_str = "show device info <identifier>|all",
7495 (void *)&cmd_showdevice_show,
7496 (void *)&cmd_showdevice_device,
7497 (void *)&cmd_showdevice_what,
7498 (void *)&cmd_showdevice_identifier,
7502 /* *** SHOW QUEUE INFO *** */
7503 struct cmd_showqueue_result {
7504 cmdline_fixed_string_t show;
7505 cmdline_fixed_string_t type;
7506 cmdline_fixed_string_t what;
7512 cmd_showqueue_parsed(void *parsed_result,
7513 __attribute__((unused)) struct cmdline *cl,
7514 __attribute__((unused)) void *data)
7516 struct cmd_showqueue_result *res = parsed_result;
7518 if (!strcmp(res->type, "rxq"))
7519 rx_queue_infos_display(res->portnum, res->queuenum);
7520 else if (!strcmp(res->type, "txq"))
7521 tx_queue_infos_display(res->portnum, res->queuenum);
7524 cmdline_parse_token_string_t cmd_showqueue_show =
7525 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, show, "show");
7526 cmdline_parse_token_string_t cmd_showqueue_type =
7527 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, type, "rxq#txq");
7528 cmdline_parse_token_string_t cmd_showqueue_what =
7529 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, what, "info");
7530 cmdline_parse_token_num_t cmd_showqueue_portnum =
7531 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, portnum, UINT16);
7532 cmdline_parse_token_num_t cmd_showqueue_queuenum =
7533 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, queuenum, UINT16);
7535 cmdline_parse_inst_t cmd_showqueue = {
7536 .f = cmd_showqueue_parsed,
7538 .help_str = "show rxq|txq info <port_id> <queue_id>",
7540 (void *)&cmd_showqueue_show,
7541 (void *)&cmd_showqueue_type,
7542 (void *)&cmd_showqueue_what,
7543 (void *)&cmd_showqueue_portnum,
7544 (void *)&cmd_showqueue_queuenum,
7549 /* show/clear fwd engine statistics */
7551 cmdline_fixed_string_t action;
7552 cmdline_fixed_string_t fwd;
7553 cmdline_fixed_string_t stats;
7554 cmdline_fixed_string_t all;
7557 cmdline_parse_token_string_t cmd_fwd_action =
7558 TOKEN_STRING_INITIALIZER(struct fwd_result, action, "show#clear");
7559 cmdline_parse_token_string_t cmd_fwd_fwd =
7560 TOKEN_STRING_INITIALIZER(struct fwd_result, fwd, "fwd");
7561 cmdline_parse_token_string_t cmd_fwd_stats =
7562 TOKEN_STRING_INITIALIZER(struct fwd_result, stats, "stats");
7563 cmdline_parse_token_string_t cmd_fwd_all =
7564 TOKEN_STRING_INITIALIZER(struct fwd_result, all, "all");
7567 cmd_showfwdall_parsed(void *parsed_result,
7568 __rte_unused struct cmdline *cl,
7569 __rte_unused void *data)
7571 struct fwd_result *res = parsed_result;
7573 if (!strcmp(res->action, "show"))
7574 fwd_stats_display();
7579 static cmdline_parse_inst_t cmd_showfwdall = {
7580 .f = cmd_showfwdall_parsed,
7582 .help_str = "show|clear fwd stats all",
7584 (void *)&cmd_fwd_action,
7585 (void *)&cmd_fwd_fwd,
7586 (void *)&cmd_fwd_stats,
7587 (void *)&cmd_fwd_all,
7592 /* *** READ PORT REGISTER *** */
7593 struct cmd_read_reg_result {
7594 cmdline_fixed_string_t read;
7595 cmdline_fixed_string_t reg;
7601 cmd_read_reg_parsed(void *parsed_result,
7602 __attribute__((unused)) struct cmdline *cl,
7603 __attribute__((unused)) void *data)
7605 struct cmd_read_reg_result *res = parsed_result;
7606 port_reg_display(res->port_id, res->reg_off);
7609 cmdline_parse_token_string_t cmd_read_reg_read =
7610 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, read, "read");
7611 cmdline_parse_token_string_t cmd_read_reg_reg =
7612 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, reg, "reg");
7613 cmdline_parse_token_num_t cmd_read_reg_port_id =
7614 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, port_id, UINT16);
7615 cmdline_parse_token_num_t cmd_read_reg_reg_off =
7616 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, reg_off, UINT32);
7618 cmdline_parse_inst_t cmd_read_reg = {
7619 .f = cmd_read_reg_parsed,
7621 .help_str = "read reg <port_id> <reg_off>",
7623 (void *)&cmd_read_reg_read,
7624 (void *)&cmd_read_reg_reg,
7625 (void *)&cmd_read_reg_port_id,
7626 (void *)&cmd_read_reg_reg_off,
7631 /* *** READ PORT REGISTER BIT FIELD *** */
7632 struct cmd_read_reg_bit_field_result {
7633 cmdline_fixed_string_t read;
7634 cmdline_fixed_string_t regfield;
7642 cmd_read_reg_bit_field_parsed(void *parsed_result,
7643 __attribute__((unused)) struct cmdline *cl,
7644 __attribute__((unused)) void *data)
7646 struct cmd_read_reg_bit_field_result *res = parsed_result;
7647 port_reg_bit_field_display(res->port_id, res->reg_off,
7648 res->bit1_pos, res->bit2_pos);
7651 cmdline_parse_token_string_t cmd_read_reg_bit_field_read =
7652 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, read,
7654 cmdline_parse_token_string_t cmd_read_reg_bit_field_regfield =
7655 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result,
7656 regfield, "regfield");
7657 cmdline_parse_token_num_t cmd_read_reg_bit_field_port_id =
7658 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, port_id,
7660 cmdline_parse_token_num_t cmd_read_reg_bit_field_reg_off =
7661 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, reg_off,
7663 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit1_pos =
7664 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit1_pos,
7666 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit2_pos =
7667 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit2_pos,
7670 cmdline_parse_inst_t cmd_read_reg_bit_field = {
7671 .f = cmd_read_reg_bit_field_parsed,
7673 .help_str = "read regfield <port_id> <reg_off> <bit_x> <bit_y>: "
7674 "Read register bit field between bit_x and bit_y included",
7676 (void *)&cmd_read_reg_bit_field_read,
7677 (void *)&cmd_read_reg_bit_field_regfield,
7678 (void *)&cmd_read_reg_bit_field_port_id,
7679 (void *)&cmd_read_reg_bit_field_reg_off,
7680 (void *)&cmd_read_reg_bit_field_bit1_pos,
7681 (void *)&cmd_read_reg_bit_field_bit2_pos,
7686 /* *** READ PORT REGISTER BIT *** */
7687 struct cmd_read_reg_bit_result {
7688 cmdline_fixed_string_t read;
7689 cmdline_fixed_string_t regbit;
7696 cmd_read_reg_bit_parsed(void *parsed_result,
7697 __attribute__((unused)) struct cmdline *cl,
7698 __attribute__((unused)) void *data)
7700 struct cmd_read_reg_bit_result *res = parsed_result;
7701 port_reg_bit_display(res->port_id, res->reg_off, res->bit_pos);
7704 cmdline_parse_token_string_t cmd_read_reg_bit_read =
7705 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, read, "read");
7706 cmdline_parse_token_string_t cmd_read_reg_bit_regbit =
7707 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result,
7709 cmdline_parse_token_num_t cmd_read_reg_bit_port_id =
7710 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, port_id, UINT16);
7711 cmdline_parse_token_num_t cmd_read_reg_bit_reg_off =
7712 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, reg_off, UINT32);
7713 cmdline_parse_token_num_t cmd_read_reg_bit_bit_pos =
7714 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, bit_pos, UINT8);
7716 cmdline_parse_inst_t cmd_read_reg_bit = {
7717 .f = cmd_read_reg_bit_parsed,
7719 .help_str = "read regbit <port_id> <reg_off> <bit_x>: 0 <= bit_x <= 31",
7721 (void *)&cmd_read_reg_bit_read,
7722 (void *)&cmd_read_reg_bit_regbit,
7723 (void *)&cmd_read_reg_bit_port_id,
7724 (void *)&cmd_read_reg_bit_reg_off,
7725 (void *)&cmd_read_reg_bit_bit_pos,
7730 /* *** WRITE PORT REGISTER *** */
7731 struct cmd_write_reg_result {
7732 cmdline_fixed_string_t write;
7733 cmdline_fixed_string_t reg;
7740 cmd_write_reg_parsed(void *parsed_result,
7741 __attribute__((unused)) struct cmdline *cl,
7742 __attribute__((unused)) void *data)
7744 struct cmd_write_reg_result *res = parsed_result;
7745 port_reg_set(res->port_id, res->reg_off, res->value);
7748 cmdline_parse_token_string_t cmd_write_reg_write =
7749 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, write, "write");
7750 cmdline_parse_token_string_t cmd_write_reg_reg =
7751 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, reg, "reg");
7752 cmdline_parse_token_num_t cmd_write_reg_port_id =
7753 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, port_id, UINT16);
7754 cmdline_parse_token_num_t cmd_write_reg_reg_off =
7755 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, reg_off, UINT32);
7756 cmdline_parse_token_num_t cmd_write_reg_value =
7757 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, value, UINT32);
7759 cmdline_parse_inst_t cmd_write_reg = {
7760 .f = cmd_write_reg_parsed,
7762 .help_str = "write reg <port_id> <reg_off> <reg_value>",
7764 (void *)&cmd_write_reg_write,
7765 (void *)&cmd_write_reg_reg,
7766 (void *)&cmd_write_reg_port_id,
7767 (void *)&cmd_write_reg_reg_off,
7768 (void *)&cmd_write_reg_value,
7773 /* *** WRITE PORT REGISTER BIT FIELD *** */
7774 struct cmd_write_reg_bit_field_result {
7775 cmdline_fixed_string_t write;
7776 cmdline_fixed_string_t regfield;
7785 cmd_write_reg_bit_field_parsed(void *parsed_result,
7786 __attribute__((unused)) struct cmdline *cl,
7787 __attribute__((unused)) void *data)
7789 struct cmd_write_reg_bit_field_result *res = parsed_result;
7790 port_reg_bit_field_set(res->port_id, res->reg_off,
7791 res->bit1_pos, res->bit2_pos, res->value);
7794 cmdline_parse_token_string_t cmd_write_reg_bit_field_write =
7795 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, write,
7797 cmdline_parse_token_string_t cmd_write_reg_bit_field_regfield =
7798 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result,
7799 regfield, "regfield");
7800 cmdline_parse_token_num_t cmd_write_reg_bit_field_port_id =
7801 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, port_id,
7803 cmdline_parse_token_num_t cmd_write_reg_bit_field_reg_off =
7804 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, reg_off,
7806 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit1_pos =
7807 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit1_pos,
7809 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit2_pos =
7810 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit2_pos,
7812 cmdline_parse_token_num_t cmd_write_reg_bit_field_value =
7813 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, value,
7816 cmdline_parse_inst_t cmd_write_reg_bit_field = {
7817 .f = cmd_write_reg_bit_field_parsed,
7819 .help_str = "write regfield <port_id> <reg_off> <bit_x> <bit_y> "
7821 "Set register bit field between bit_x and bit_y included",
7823 (void *)&cmd_write_reg_bit_field_write,
7824 (void *)&cmd_write_reg_bit_field_regfield,
7825 (void *)&cmd_write_reg_bit_field_port_id,
7826 (void *)&cmd_write_reg_bit_field_reg_off,
7827 (void *)&cmd_write_reg_bit_field_bit1_pos,
7828 (void *)&cmd_write_reg_bit_field_bit2_pos,
7829 (void *)&cmd_write_reg_bit_field_value,
7834 /* *** WRITE PORT REGISTER BIT *** */
7835 struct cmd_write_reg_bit_result {
7836 cmdline_fixed_string_t write;
7837 cmdline_fixed_string_t regbit;
7845 cmd_write_reg_bit_parsed(void *parsed_result,
7846 __attribute__((unused)) struct cmdline *cl,
7847 __attribute__((unused)) void *data)
7849 struct cmd_write_reg_bit_result *res = parsed_result;
7850 port_reg_bit_set(res->port_id, res->reg_off, res->bit_pos, res->value);
7853 cmdline_parse_token_string_t cmd_write_reg_bit_write =
7854 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, write,
7856 cmdline_parse_token_string_t cmd_write_reg_bit_regbit =
7857 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result,
7859 cmdline_parse_token_num_t cmd_write_reg_bit_port_id =
7860 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, port_id, UINT16);
7861 cmdline_parse_token_num_t cmd_write_reg_bit_reg_off =
7862 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, reg_off, UINT32);
7863 cmdline_parse_token_num_t cmd_write_reg_bit_bit_pos =
7864 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, bit_pos, UINT8);
7865 cmdline_parse_token_num_t cmd_write_reg_bit_value =
7866 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, value, UINT8);
7868 cmdline_parse_inst_t cmd_write_reg_bit = {
7869 .f = cmd_write_reg_bit_parsed,
7871 .help_str = "write regbit <port_id> <reg_off> <bit_x> 0|1: "
7874 (void *)&cmd_write_reg_bit_write,
7875 (void *)&cmd_write_reg_bit_regbit,
7876 (void *)&cmd_write_reg_bit_port_id,
7877 (void *)&cmd_write_reg_bit_reg_off,
7878 (void *)&cmd_write_reg_bit_bit_pos,
7879 (void *)&cmd_write_reg_bit_value,
7884 /* *** READ A RING DESCRIPTOR OF A PORT RX/TX QUEUE *** */
7885 struct cmd_read_rxd_txd_result {
7886 cmdline_fixed_string_t read;
7887 cmdline_fixed_string_t rxd_txd;
7894 cmd_read_rxd_txd_parsed(void *parsed_result,
7895 __attribute__((unused)) struct cmdline *cl,
7896 __attribute__((unused)) void *data)
7898 struct cmd_read_rxd_txd_result *res = parsed_result;
7900 if (!strcmp(res->rxd_txd, "rxd"))
7901 rx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
7902 else if (!strcmp(res->rxd_txd, "txd"))
7903 tx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
7906 cmdline_parse_token_string_t cmd_read_rxd_txd_read =
7907 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, read, "read");
7908 cmdline_parse_token_string_t cmd_read_rxd_txd_rxd_txd =
7909 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, rxd_txd,
7911 cmdline_parse_token_num_t cmd_read_rxd_txd_port_id =
7912 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, port_id, UINT16);
7913 cmdline_parse_token_num_t cmd_read_rxd_txd_queue_id =
7914 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, queue_id, UINT16);
7915 cmdline_parse_token_num_t cmd_read_rxd_txd_desc_id =
7916 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, desc_id, UINT16);
7918 cmdline_parse_inst_t cmd_read_rxd_txd = {
7919 .f = cmd_read_rxd_txd_parsed,
7921 .help_str = "read rxd|txd <port_id> <queue_id> <desc_id>",
7923 (void *)&cmd_read_rxd_txd_read,
7924 (void *)&cmd_read_rxd_txd_rxd_txd,
7925 (void *)&cmd_read_rxd_txd_port_id,
7926 (void *)&cmd_read_rxd_txd_queue_id,
7927 (void *)&cmd_read_rxd_txd_desc_id,
7933 struct cmd_quit_result {
7934 cmdline_fixed_string_t quit;
7937 static void cmd_quit_parsed(__attribute__((unused)) void *parsed_result,
7939 __attribute__((unused)) void *data)
7944 cmdline_parse_token_string_t cmd_quit_quit =
7945 TOKEN_STRING_INITIALIZER(struct cmd_quit_result, quit, "quit");
7947 cmdline_parse_inst_t cmd_quit = {
7948 .f = cmd_quit_parsed,
7950 .help_str = "quit: Exit application",
7952 (void *)&cmd_quit_quit,
7957 /* *** ADD/REMOVE MAC ADDRESS FROM A PORT *** */
7958 struct cmd_mac_addr_result {
7959 cmdline_fixed_string_t mac_addr_cmd;
7960 cmdline_fixed_string_t what;
7962 struct rte_ether_addr address;
7965 static void cmd_mac_addr_parsed(void *parsed_result,
7966 __attribute__((unused)) struct cmdline *cl,
7967 __attribute__((unused)) void *data)
7969 struct cmd_mac_addr_result *res = parsed_result;
7972 if (strcmp(res->what, "add") == 0)
7973 ret = rte_eth_dev_mac_addr_add(res->port_num, &res->address, 0);
7974 else if (strcmp(res->what, "set") == 0)
7975 ret = rte_eth_dev_default_mac_addr_set(res->port_num,
7978 ret = rte_eth_dev_mac_addr_remove(res->port_num, &res->address);
7980 /* check the return value and print it if is < 0 */
7982 printf("mac_addr_cmd error: (%s)\n", strerror(-ret));
7986 cmdline_parse_token_string_t cmd_mac_addr_cmd =
7987 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, mac_addr_cmd,
7989 cmdline_parse_token_string_t cmd_mac_addr_what =
7990 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, what,
7992 cmdline_parse_token_num_t cmd_mac_addr_portnum =
7993 TOKEN_NUM_INITIALIZER(struct cmd_mac_addr_result, port_num,
7995 cmdline_parse_token_etheraddr_t cmd_mac_addr_addr =
7996 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
7998 cmdline_parse_inst_t cmd_mac_addr = {
7999 .f = cmd_mac_addr_parsed,
8001 .help_str = "mac_addr add|remove|set <port_id> <mac_addr>: "
8002 "Add/Remove/Set MAC address on port_id",
8004 (void *)&cmd_mac_addr_cmd,
8005 (void *)&cmd_mac_addr_what,
8006 (void *)&cmd_mac_addr_portnum,
8007 (void *)&cmd_mac_addr_addr,
8012 /* *** SET THE PEER ADDRESS FOR CERTAIN PORT *** */
8013 struct cmd_eth_peer_result {
8014 cmdline_fixed_string_t set;
8015 cmdline_fixed_string_t eth_peer;
8017 cmdline_fixed_string_t peer_addr;
8020 static void cmd_set_eth_peer_parsed(void *parsed_result,
8021 __attribute__((unused)) struct cmdline *cl,
8022 __attribute__((unused)) void *data)
8024 struct cmd_eth_peer_result *res = parsed_result;
8026 if (test_done == 0) {
8027 printf("Please stop forwarding first\n");
8030 if (!strcmp(res->eth_peer, "eth-peer")) {
8031 set_fwd_eth_peer(res->port_id, res->peer_addr);
8035 cmdline_parse_token_string_t cmd_eth_peer_set =
8036 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, set, "set");
8037 cmdline_parse_token_string_t cmd_eth_peer =
8038 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, eth_peer, "eth-peer");
8039 cmdline_parse_token_num_t cmd_eth_peer_port_id =
8040 TOKEN_NUM_INITIALIZER(struct cmd_eth_peer_result, port_id, UINT16);
8041 cmdline_parse_token_string_t cmd_eth_peer_addr =
8042 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, peer_addr, NULL);
8044 cmdline_parse_inst_t cmd_set_fwd_eth_peer = {
8045 .f = cmd_set_eth_peer_parsed,
8047 .help_str = "set eth-peer <port_id> <peer_mac>",
8049 (void *)&cmd_eth_peer_set,
8050 (void *)&cmd_eth_peer,
8051 (void *)&cmd_eth_peer_port_id,
8052 (void *)&cmd_eth_peer_addr,
8057 /* *** CONFIGURE QUEUE STATS COUNTER MAPPINGS *** */
8058 struct cmd_set_qmap_result {
8059 cmdline_fixed_string_t set;
8060 cmdline_fixed_string_t qmap;
8061 cmdline_fixed_string_t what;
8068 cmd_set_qmap_parsed(void *parsed_result,
8069 __attribute__((unused)) struct cmdline *cl,
8070 __attribute__((unused)) void *data)
8072 struct cmd_set_qmap_result *res = parsed_result;
8073 int is_rx = (strcmp(res->what, "tx") == 0) ? 0 : 1;
8075 set_qmap(res->port_id, (uint8_t)is_rx, res->queue_id, res->map_value);
8078 cmdline_parse_token_string_t cmd_setqmap_set =
8079 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
8081 cmdline_parse_token_string_t cmd_setqmap_qmap =
8082 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
8084 cmdline_parse_token_string_t cmd_setqmap_what =
8085 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
8087 cmdline_parse_token_num_t cmd_setqmap_portid =
8088 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
8090 cmdline_parse_token_num_t cmd_setqmap_queueid =
8091 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
8093 cmdline_parse_token_num_t cmd_setqmap_mapvalue =
8094 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
8097 cmdline_parse_inst_t cmd_set_qmap = {
8098 .f = cmd_set_qmap_parsed,
8100 .help_str = "set stat_qmap rx|tx <port_id> <queue_id> <map_value>: "
8101 "Set statistics mapping value on tx|rx queue_id of port_id",
8103 (void *)&cmd_setqmap_set,
8104 (void *)&cmd_setqmap_qmap,
8105 (void *)&cmd_setqmap_what,
8106 (void *)&cmd_setqmap_portid,
8107 (void *)&cmd_setqmap_queueid,
8108 (void *)&cmd_setqmap_mapvalue,
8113 /* *** SET OPTION TO HIDE ZERO VALUES FOR XSTATS DISPLAY *** */
8114 struct cmd_set_xstats_hide_zero_result {
8115 cmdline_fixed_string_t keyword;
8116 cmdline_fixed_string_t name;
8117 cmdline_fixed_string_t on_off;
8121 cmd_set_xstats_hide_zero_parsed(void *parsed_result,
8122 __attribute__((unused)) struct cmdline *cl,
8123 __attribute__((unused)) void *data)
8125 struct cmd_set_xstats_hide_zero_result *res;
8126 uint16_t on_off = 0;
8128 res = parsed_result;
8129 on_off = !strcmp(res->on_off, "on") ? 1 : 0;
8130 set_xstats_hide_zero(on_off);
8133 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_keyword =
8134 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result,
8136 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_name =
8137 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result,
8138 name, "xstats-hide-zero");
8139 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_on_off =
8140 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result,
8143 cmdline_parse_inst_t cmd_set_xstats_hide_zero = {
8144 .f = cmd_set_xstats_hide_zero_parsed,
8146 .help_str = "set xstats-hide-zero on|off",
8148 (void *)&cmd_set_xstats_hide_zero_keyword,
8149 (void *)&cmd_set_xstats_hide_zero_name,
8150 (void *)&cmd_set_xstats_hide_zero_on_off,
8155 /* *** CONFIGURE UNICAST HASH TABLE *** */
8156 struct cmd_set_uc_hash_table {
8157 cmdline_fixed_string_t set;
8158 cmdline_fixed_string_t port;
8160 cmdline_fixed_string_t what;
8161 struct rte_ether_addr address;
8162 cmdline_fixed_string_t mode;
8166 cmd_set_uc_hash_parsed(void *parsed_result,
8167 __attribute__((unused)) struct cmdline *cl,
8168 __attribute__((unused)) void *data)
8171 struct cmd_set_uc_hash_table *res = parsed_result;
8173 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8175 if (strcmp(res->what, "uta") == 0)
8176 ret = rte_eth_dev_uc_hash_table_set(res->port_id,
8177 &res->address,(uint8_t)is_on);
8179 printf("bad unicast hash table parameter, return code = %d \n", ret);
8183 cmdline_parse_token_string_t cmd_set_uc_hash_set =
8184 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8186 cmdline_parse_token_string_t cmd_set_uc_hash_port =
8187 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8189 cmdline_parse_token_num_t cmd_set_uc_hash_portid =
8190 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_hash_table,
8192 cmdline_parse_token_string_t cmd_set_uc_hash_what =
8193 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8195 cmdline_parse_token_etheraddr_t cmd_set_uc_hash_mac =
8196 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_uc_hash_table,
8198 cmdline_parse_token_string_t cmd_set_uc_hash_mode =
8199 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8202 cmdline_parse_inst_t cmd_set_uc_hash_filter = {
8203 .f = cmd_set_uc_hash_parsed,
8205 .help_str = "set port <port_id> uta <mac_addr> on|off)",
8207 (void *)&cmd_set_uc_hash_set,
8208 (void *)&cmd_set_uc_hash_port,
8209 (void *)&cmd_set_uc_hash_portid,
8210 (void *)&cmd_set_uc_hash_what,
8211 (void *)&cmd_set_uc_hash_mac,
8212 (void *)&cmd_set_uc_hash_mode,
8217 struct cmd_set_uc_all_hash_table {
8218 cmdline_fixed_string_t set;
8219 cmdline_fixed_string_t port;
8221 cmdline_fixed_string_t what;
8222 cmdline_fixed_string_t value;
8223 cmdline_fixed_string_t mode;
8227 cmd_set_uc_all_hash_parsed(void *parsed_result,
8228 __attribute__((unused)) struct cmdline *cl,
8229 __attribute__((unused)) void *data)
8232 struct cmd_set_uc_all_hash_table *res = parsed_result;
8234 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8236 if ((strcmp(res->what, "uta") == 0) &&
8237 (strcmp(res->value, "all") == 0))
8238 ret = rte_eth_dev_uc_all_hash_table_set(res->port_id,(uint8_t) is_on);
8240 printf("bad unicast hash table parameter,"
8241 "return code = %d \n", ret);
8244 cmdline_parse_token_string_t cmd_set_uc_all_hash_set =
8245 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8247 cmdline_parse_token_string_t cmd_set_uc_all_hash_port =
8248 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8250 cmdline_parse_token_num_t cmd_set_uc_all_hash_portid =
8251 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_all_hash_table,
8253 cmdline_parse_token_string_t cmd_set_uc_all_hash_what =
8254 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8256 cmdline_parse_token_string_t cmd_set_uc_all_hash_value =
8257 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8259 cmdline_parse_token_string_t cmd_set_uc_all_hash_mode =
8260 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8263 cmdline_parse_inst_t cmd_set_uc_all_hash_filter = {
8264 .f = cmd_set_uc_all_hash_parsed,
8266 .help_str = "set port <port_id> uta all on|off",
8268 (void *)&cmd_set_uc_all_hash_set,
8269 (void *)&cmd_set_uc_all_hash_port,
8270 (void *)&cmd_set_uc_all_hash_portid,
8271 (void *)&cmd_set_uc_all_hash_what,
8272 (void *)&cmd_set_uc_all_hash_value,
8273 (void *)&cmd_set_uc_all_hash_mode,
8278 /* *** CONFIGURE MACVLAN FILTER FOR VF(s) *** */
8279 struct cmd_set_vf_macvlan_filter {
8280 cmdline_fixed_string_t set;
8281 cmdline_fixed_string_t port;
8283 cmdline_fixed_string_t vf;
8285 struct rte_ether_addr address;
8286 cmdline_fixed_string_t filter_type;
8287 cmdline_fixed_string_t mode;
8291 cmd_set_vf_macvlan_parsed(void *parsed_result,
8292 __attribute__((unused)) struct cmdline *cl,
8293 __attribute__((unused)) void *data)
8296 struct cmd_set_vf_macvlan_filter *res = parsed_result;
8297 struct rte_eth_mac_filter filter;
8299 memset(&filter, 0, sizeof(struct rte_eth_mac_filter));
8301 rte_memcpy(&filter.mac_addr, &res->address, RTE_ETHER_ADDR_LEN);
8303 /* set VF MAC filter */
8307 filter.dst_id = res->vf_id;
8309 if (!strcmp(res->filter_type, "exact-mac"))
8310 filter.filter_type = RTE_MAC_PERFECT_MATCH;
8311 else if (!strcmp(res->filter_type, "exact-mac-vlan"))
8312 filter.filter_type = RTE_MACVLAN_PERFECT_MATCH;
8313 else if (!strcmp(res->filter_type, "hashmac"))
8314 filter.filter_type = RTE_MAC_HASH_MATCH;
8315 else if (!strcmp(res->filter_type, "hashmac-vlan"))
8316 filter.filter_type = RTE_MACVLAN_HASH_MATCH;
8318 is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8321 ret = rte_eth_dev_filter_ctrl(res->port_id,
8322 RTE_ETH_FILTER_MACVLAN,
8326 ret = rte_eth_dev_filter_ctrl(res->port_id,
8327 RTE_ETH_FILTER_MACVLAN,
8328 RTE_ETH_FILTER_DELETE,
8332 printf("bad set MAC hash parameter, return code = %d\n", ret);
8336 cmdline_parse_token_string_t cmd_set_vf_macvlan_set =
8337 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
8339 cmdline_parse_token_string_t cmd_set_vf_macvlan_port =
8340 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
8342 cmdline_parse_token_num_t cmd_set_vf_macvlan_portid =
8343 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_macvlan_filter,
8345 cmdline_parse_token_string_t cmd_set_vf_macvlan_vf =
8346 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
8348 cmdline_parse_token_num_t cmd_set_vf_macvlan_vf_id =
8349 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_macvlan_filter,
8351 cmdline_parse_token_etheraddr_t cmd_set_vf_macvlan_mac =
8352 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_macvlan_filter,
8354 cmdline_parse_token_string_t cmd_set_vf_macvlan_filter_type =
8355 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
8356 filter_type, "exact-mac#exact-mac-vlan"
8357 "#hashmac#hashmac-vlan");
8358 cmdline_parse_token_string_t cmd_set_vf_macvlan_mode =
8359 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
8362 cmdline_parse_inst_t cmd_set_vf_macvlan_filter = {
8363 .f = cmd_set_vf_macvlan_parsed,
8365 .help_str = "set port <port_id> vf <vf_id> <mac_addr> "
8366 "exact-mac|exact-mac-vlan|hashmac|hashmac-vlan on|off: "
8367 "Exact match rule: exact match of MAC or MAC and VLAN; "
8368 "hash match rule: hash match of MAC and exact match of VLAN",
8370 (void *)&cmd_set_vf_macvlan_set,
8371 (void *)&cmd_set_vf_macvlan_port,
8372 (void *)&cmd_set_vf_macvlan_portid,
8373 (void *)&cmd_set_vf_macvlan_vf,
8374 (void *)&cmd_set_vf_macvlan_vf_id,
8375 (void *)&cmd_set_vf_macvlan_mac,
8376 (void *)&cmd_set_vf_macvlan_filter_type,
8377 (void *)&cmd_set_vf_macvlan_mode,
8382 /* *** CONFIGURE VF TRAFFIC CONTROL *** */
8383 struct cmd_set_vf_traffic {
8384 cmdline_fixed_string_t set;
8385 cmdline_fixed_string_t port;
8387 cmdline_fixed_string_t vf;
8389 cmdline_fixed_string_t what;
8390 cmdline_fixed_string_t mode;
8394 cmd_set_vf_traffic_parsed(void *parsed_result,
8395 __attribute__((unused)) struct cmdline *cl,
8396 __attribute__((unused)) void *data)
8398 struct cmd_set_vf_traffic *res = parsed_result;
8399 int is_rx = (strcmp(res->what, "rx") == 0) ? 1 : 0;
8400 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8402 set_vf_traffic(res->port_id, (uint8_t)is_rx, res->vf_id,(uint8_t) is_on);
8405 cmdline_parse_token_string_t cmd_setvf_traffic_set =
8406 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8408 cmdline_parse_token_string_t cmd_setvf_traffic_port =
8409 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8411 cmdline_parse_token_num_t cmd_setvf_traffic_portid =
8412 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
8414 cmdline_parse_token_string_t cmd_setvf_traffic_vf =
8415 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8417 cmdline_parse_token_num_t cmd_setvf_traffic_vfid =
8418 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
8420 cmdline_parse_token_string_t cmd_setvf_traffic_what =
8421 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8423 cmdline_parse_token_string_t cmd_setvf_traffic_mode =
8424 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8427 cmdline_parse_inst_t cmd_set_vf_traffic = {
8428 .f = cmd_set_vf_traffic_parsed,
8430 .help_str = "set port <port_id> vf <vf_id> rx|tx on|off",
8432 (void *)&cmd_setvf_traffic_set,
8433 (void *)&cmd_setvf_traffic_port,
8434 (void *)&cmd_setvf_traffic_portid,
8435 (void *)&cmd_setvf_traffic_vf,
8436 (void *)&cmd_setvf_traffic_vfid,
8437 (void *)&cmd_setvf_traffic_what,
8438 (void *)&cmd_setvf_traffic_mode,
8443 /* *** CONFIGURE VF RECEIVE MODE *** */
8444 struct cmd_set_vf_rxmode {
8445 cmdline_fixed_string_t set;
8446 cmdline_fixed_string_t port;
8448 cmdline_fixed_string_t vf;
8450 cmdline_fixed_string_t what;
8451 cmdline_fixed_string_t mode;
8452 cmdline_fixed_string_t on;
8456 cmd_set_vf_rxmode_parsed(void *parsed_result,
8457 __attribute__((unused)) struct cmdline *cl,
8458 __attribute__((unused)) void *data)
8461 uint16_t vf_rxmode = 0;
8462 struct cmd_set_vf_rxmode *res = parsed_result;
8464 int is_on = (strcmp(res->on, "on") == 0) ? 1 : 0;
8465 if (!strcmp(res->what,"rxmode")) {
8466 if (!strcmp(res->mode, "AUPE"))
8467 vf_rxmode |= ETH_VMDQ_ACCEPT_UNTAG;
8468 else if (!strcmp(res->mode, "ROPE"))
8469 vf_rxmode |= ETH_VMDQ_ACCEPT_HASH_UC;
8470 else if (!strcmp(res->mode, "BAM"))
8471 vf_rxmode |= ETH_VMDQ_ACCEPT_BROADCAST;
8472 else if (!strncmp(res->mode, "MPE",3))
8473 vf_rxmode |= ETH_VMDQ_ACCEPT_MULTICAST;
8476 RTE_SET_USED(is_on);
8478 #ifdef RTE_LIBRTE_IXGBE_PMD
8479 if (ret == -ENOTSUP)
8480 ret = rte_pmd_ixgbe_set_vf_rxmode(res->port_id, res->vf_id,
8481 vf_rxmode, (uint8_t)is_on);
8483 #ifdef RTE_LIBRTE_BNXT_PMD
8484 if (ret == -ENOTSUP)
8485 ret = rte_pmd_bnxt_set_vf_rxmode(res->port_id, res->vf_id,
8486 vf_rxmode, (uint8_t)is_on);
8489 printf("bad VF receive mode parameter, return code = %d \n",
8493 cmdline_parse_token_string_t cmd_set_vf_rxmode_set =
8494 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8496 cmdline_parse_token_string_t cmd_set_vf_rxmode_port =
8497 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8499 cmdline_parse_token_num_t cmd_set_vf_rxmode_portid =
8500 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
8502 cmdline_parse_token_string_t cmd_set_vf_rxmode_vf =
8503 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8505 cmdline_parse_token_num_t cmd_set_vf_rxmode_vfid =
8506 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
8508 cmdline_parse_token_string_t cmd_set_vf_rxmode_what =
8509 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8511 cmdline_parse_token_string_t cmd_set_vf_rxmode_mode =
8512 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8513 mode, "AUPE#ROPE#BAM#MPE");
8514 cmdline_parse_token_string_t cmd_set_vf_rxmode_on =
8515 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8518 cmdline_parse_inst_t cmd_set_vf_rxmode = {
8519 .f = cmd_set_vf_rxmode_parsed,
8521 .help_str = "set port <port_id> vf <vf_id> rxmode "
8522 "AUPE|ROPE|BAM|MPE on|off",
8524 (void *)&cmd_set_vf_rxmode_set,
8525 (void *)&cmd_set_vf_rxmode_port,
8526 (void *)&cmd_set_vf_rxmode_portid,
8527 (void *)&cmd_set_vf_rxmode_vf,
8528 (void *)&cmd_set_vf_rxmode_vfid,
8529 (void *)&cmd_set_vf_rxmode_what,
8530 (void *)&cmd_set_vf_rxmode_mode,
8531 (void *)&cmd_set_vf_rxmode_on,
8536 /* *** ADD MAC ADDRESS FILTER FOR A VF OF A PORT *** */
8537 struct cmd_vf_mac_addr_result {
8538 cmdline_fixed_string_t mac_addr_cmd;
8539 cmdline_fixed_string_t what;
8540 cmdline_fixed_string_t port;
8542 cmdline_fixed_string_t vf;
8544 struct rte_ether_addr address;
8547 static void cmd_vf_mac_addr_parsed(void *parsed_result,
8548 __attribute__((unused)) struct cmdline *cl,
8549 __attribute__((unused)) void *data)
8551 struct cmd_vf_mac_addr_result *res = parsed_result;
8554 if (strcmp(res->what, "add") != 0)
8557 #ifdef RTE_LIBRTE_I40E_PMD
8558 if (ret == -ENOTSUP)
8559 ret = rte_pmd_i40e_add_vf_mac_addr(res->port_num, res->vf_num,
8562 #ifdef RTE_LIBRTE_BNXT_PMD
8563 if (ret == -ENOTSUP)
8564 ret = rte_pmd_bnxt_mac_addr_add(res->port_num, &res->address,
8569 printf("vf_mac_addr_cmd error: (%s)\n", strerror(-ret));
8573 cmdline_parse_token_string_t cmd_vf_mac_addr_cmd =
8574 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8575 mac_addr_cmd,"mac_addr");
8576 cmdline_parse_token_string_t cmd_vf_mac_addr_what =
8577 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8579 cmdline_parse_token_string_t cmd_vf_mac_addr_port =
8580 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8582 cmdline_parse_token_num_t cmd_vf_mac_addr_portnum =
8583 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
8585 cmdline_parse_token_string_t cmd_vf_mac_addr_vf =
8586 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8588 cmdline_parse_token_num_t cmd_vf_mac_addr_vfnum =
8589 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
8591 cmdline_parse_token_etheraddr_t cmd_vf_mac_addr_addr =
8592 TOKEN_ETHERADDR_INITIALIZER(struct cmd_vf_mac_addr_result,
8595 cmdline_parse_inst_t cmd_vf_mac_addr_filter = {
8596 .f = cmd_vf_mac_addr_parsed,
8598 .help_str = "mac_addr add port <port_id> vf <vf_id> <mac_addr>: "
8599 "Add MAC address filtering for a VF on port_id",
8601 (void *)&cmd_vf_mac_addr_cmd,
8602 (void *)&cmd_vf_mac_addr_what,
8603 (void *)&cmd_vf_mac_addr_port,
8604 (void *)&cmd_vf_mac_addr_portnum,
8605 (void *)&cmd_vf_mac_addr_vf,
8606 (void *)&cmd_vf_mac_addr_vfnum,
8607 (void *)&cmd_vf_mac_addr_addr,
8612 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
8613 struct cmd_vf_rx_vlan_filter {
8614 cmdline_fixed_string_t rx_vlan;
8615 cmdline_fixed_string_t what;
8617 cmdline_fixed_string_t port;
8619 cmdline_fixed_string_t vf;
8624 cmd_vf_rx_vlan_filter_parsed(void *parsed_result,
8625 __attribute__((unused)) struct cmdline *cl,
8626 __attribute__((unused)) void *data)
8628 struct cmd_vf_rx_vlan_filter *res = parsed_result;
8631 __rte_unused int is_add = (strcmp(res->what, "add") == 0) ? 1 : 0;
8633 #ifdef RTE_LIBRTE_IXGBE_PMD
8634 if (ret == -ENOTSUP)
8635 ret = rte_pmd_ixgbe_set_vf_vlan_filter(res->port_id,
8636 res->vlan_id, res->vf_mask, is_add);
8638 #ifdef RTE_LIBRTE_I40E_PMD
8639 if (ret == -ENOTSUP)
8640 ret = rte_pmd_i40e_set_vf_vlan_filter(res->port_id,
8641 res->vlan_id, res->vf_mask, is_add);
8643 #ifdef RTE_LIBRTE_BNXT_PMD
8644 if (ret == -ENOTSUP)
8645 ret = rte_pmd_bnxt_set_vf_vlan_filter(res->port_id,
8646 res->vlan_id, res->vf_mask, is_add);
8653 printf("invalid vlan_id %d or vf_mask %"PRIu64"\n",
8654 res->vlan_id, res->vf_mask);
8657 printf("invalid port_id %d\n", res->port_id);
8660 printf("function not implemented or supported\n");
8663 printf("programming error: (%s)\n", strerror(-ret));
8667 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_rx_vlan =
8668 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8669 rx_vlan, "rx_vlan");
8670 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_what =
8671 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8673 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vlanid =
8674 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8676 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_port =
8677 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8679 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_portid =
8680 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8682 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_vf =
8683 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8685 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vf_mask =
8686 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8689 cmdline_parse_inst_t cmd_vf_rxvlan_filter = {
8690 .f = cmd_vf_rx_vlan_filter_parsed,
8692 .help_str = "rx_vlan add|rm <vlan_id> port <port_id> vf <vf_mask>: "
8693 "(vf_mask = hexadecimal VF mask)",
8695 (void *)&cmd_vf_rx_vlan_filter_rx_vlan,
8696 (void *)&cmd_vf_rx_vlan_filter_what,
8697 (void *)&cmd_vf_rx_vlan_filter_vlanid,
8698 (void *)&cmd_vf_rx_vlan_filter_port,
8699 (void *)&cmd_vf_rx_vlan_filter_portid,
8700 (void *)&cmd_vf_rx_vlan_filter_vf,
8701 (void *)&cmd_vf_rx_vlan_filter_vf_mask,
8706 /* *** SET RATE LIMIT FOR A QUEUE OF A PORT *** */
8707 struct cmd_queue_rate_limit_result {
8708 cmdline_fixed_string_t set;
8709 cmdline_fixed_string_t port;
8711 cmdline_fixed_string_t queue;
8713 cmdline_fixed_string_t rate;
8717 static void cmd_queue_rate_limit_parsed(void *parsed_result,
8718 __attribute__((unused)) struct cmdline *cl,
8719 __attribute__((unused)) void *data)
8721 struct cmd_queue_rate_limit_result *res = parsed_result;
8724 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
8725 && (strcmp(res->queue, "queue") == 0)
8726 && (strcmp(res->rate, "rate") == 0))
8727 ret = set_queue_rate_limit(res->port_num, res->queue_num,
8730 printf("queue_rate_limit_cmd error: (%s)\n", strerror(-ret));
8734 cmdline_parse_token_string_t cmd_queue_rate_limit_set =
8735 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8737 cmdline_parse_token_string_t cmd_queue_rate_limit_port =
8738 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8740 cmdline_parse_token_num_t cmd_queue_rate_limit_portnum =
8741 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
8743 cmdline_parse_token_string_t cmd_queue_rate_limit_queue =
8744 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8746 cmdline_parse_token_num_t cmd_queue_rate_limit_queuenum =
8747 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
8749 cmdline_parse_token_string_t cmd_queue_rate_limit_rate =
8750 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8752 cmdline_parse_token_num_t cmd_queue_rate_limit_ratenum =
8753 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
8756 cmdline_parse_inst_t cmd_queue_rate_limit = {
8757 .f = cmd_queue_rate_limit_parsed,
8759 .help_str = "set port <port_id> queue <queue_id> rate <rate_value>: "
8760 "Set rate limit for a queue on port_id",
8762 (void *)&cmd_queue_rate_limit_set,
8763 (void *)&cmd_queue_rate_limit_port,
8764 (void *)&cmd_queue_rate_limit_portnum,
8765 (void *)&cmd_queue_rate_limit_queue,
8766 (void *)&cmd_queue_rate_limit_queuenum,
8767 (void *)&cmd_queue_rate_limit_rate,
8768 (void *)&cmd_queue_rate_limit_ratenum,
8773 /* *** SET RATE LIMIT FOR A VF OF A PORT *** */
8774 struct cmd_vf_rate_limit_result {
8775 cmdline_fixed_string_t set;
8776 cmdline_fixed_string_t port;
8778 cmdline_fixed_string_t vf;
8780 cmdline_fixed_string_t rate;
8782 cmdline_fixed_string_t q_msk;
8786 static void cmd_vf_rate_limit_parsed(void *parsed_result,
8787 __attribute__((unused)) struct cmdline *cl,
8788 __attribute__((unused)) void *data)
8790 struct cmd_vf_rate_limit_result *res = parsed_result;
8793 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
8794 && (strcmp(res->vf, "vf") == 0)
8795 && (strcmp(res->rate, "rate") == 0)
8796 && (strcmp(res->q_msk, "queue_mask") == 0))
8797 ret = set_vf_rate_limit(res->port_num, res->vf_num,
8798 res->rate_num, res->q_msk_val);
8800 printf("vf_rate_limit_cmd error: (%s)\n", strerror(-ret));
8804 cmdline_parse_token_string_t cmd_vf_rate_limit_set =
8805 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
8807 cmdline_parse_token_string_t cmd_vf_rate_limit_port =
8808 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
8810 cmdline_parse_token_num_t cmd_vf_rate_limit_portnum =
8811 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
8813 cmdline_parse_token_string_t cmd_vf_rate_limit_vf =
8814 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
8816 cmdline_parse_token_num_t cmd_vf_rate_limit_vfnum =
8817 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
8819 cmdline_parse_token_string_t cmd_vf_rate_limit_rate =
8820 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
8822 cmdline_parse_token_num_t cmd_vf_rate_limit_ratenum =
8823 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
8825 cmdline_parse_token_string_t cmd_vf_rate_limit_q_msk =
8826 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
8827 q_msk, "queue_mask");
8828 cmdline_parse_token_num_t cmd_vf_rate_limit_q_msk_val =
8829 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
8832 cmdline_parse_inst_t cmd_vf_rate_limit = {
8833 .f = cmd_vf_rate_limit_parsed,
8835 .help_str = "set port <port_id> vf <vf_id> rate <rate_value> "
8836 "queue_mask <queue_mask_value>: "
8837 "Set rate limit for queues of VF on port_id",
8839 (void *)&cmd_vf_rate_limit_set,
8840 (void *)&cmd_vf_rate_limit_port,
8841 (void *)&cmd_vf_rate_limit_portnum,
8842 (void *)&cmd_vf_rate_limit_vf,
8843 (void *)&cmd_vf_rate_limit_vfnum,
8844 (void *)&cmd_vf_rate_limit_rate,
8845 (void *)&cmd_vf_rate_limit_ratenum,
8846 (void *)&cmd_vf_rate_limit_q_msk,
8847 (void *)&cmd_vf_rate_limit_q_msk_val,
8852 /* *** ADD TUNNEL FILTER OF A PORT *** */
8853 struct cmd_tunnel_filter_result {
8854 cmdline_fixed_string_t cmd;
8855 cmdline_fixed_string_t what;
8857 struct rte_ether_addr outer_mac;
8858 struct rte_ether_addr inner_mac;
8859 cmdline_ipaddr_t ip_value;
8860 uint16_t inner_vlan;
8861 cmdline_fixed_string_t tunnel_type;
8862 cmdline_fixed_string_t filter_type;
8868 cmd_tunnel_filter_parsed(void *parsed_result,
8869 __attribute__((unused)) struct cmdline *cl,
8870 __attribute__((unused)) void *data)
8872 struct cmd_tunnel_filter_result *res = parsed_result;
8873 struct rte_eth_tunnel_filter_conf tunnel_filter_conf;
8876 memset(&tunnel_filter_conf, 0, sizeof(tunnel_filter_conf));
8878 rte_ether_addr_copy(&res->outer_mac, &tunnel_filter_conf.outer_mac);
8879 rte_ether_addr_copy(&res->inner_mac, &tunnel_filter_conf.inner_mac);
8880 tunnel_filter_conf.inner_vlan = res->inner_vlan;
8882 if (res->ip_value.family == AF_INET) {
8883 tunnel_filter_conf.ip_addr.ipv4_addr =
8884 res->ip_value.addr.ipv4.s_addr;
8885 tunnel_filter_conf.ip_type = RTE_TUNNEL_IPTYPE_IPV4;
8887 memcpy(&(tunnel_filter_conf.ip_addr.ipv6_addr),
8888 &(res->ip_value.addr.ipv6),
8889 sizeof(struct in6_addr));
8890 tunnel_filter_conf.ip_type = RTE_TUNNEL_IPTYPE_IPV6;
8893 if (!strcmp(res->filter_type, "imac-ivlan"))
8894 tunnel_filter_conf.filter_type = RTE_TUNNEL_FILTER_IMAC_IVLAN;
8895 else if (!strcmp(res->filter_type, "imac-ivlan-tenid"))
8896 tunnel_filter_conf.filter_type =
8897 RTE_TUNNEL_FILTER_IMAC_IVLAN_TENID;
8898 else if (!strcmp(res->filter_type, "imac-tenid"))
8899 tunnel_filter_conf.filter_type = RTE_TUNNEL_FILTER_IMAC_TENID;
8900 else if (!strcmp(res->filter_type, "imac"))
8901 tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_IMAC;
8902 else if (!strcmp(res->filter_type, "omac-imac-tenid"))
8903 tunnel_filter_conf.filter_type =
8904 RTE_TUNNEL_FILTER_OMAC_TENID_IMAC;
8905 else if (!strcmp(res->filter_type, "oip"))
8906 tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_OIP;
8907 else if (!strcmp(res->filter_type, "iip"))
8908 tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_IIP;
8910 printf("The filter type is not supported");
8914 if (!strcmp(res->tunnel_type, "vxlan"))
8915 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_VXLAN;
8916 else if (!strcmp(res->tunnel_type, "vxlan-gpe"))
8917 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_VXLAN_GPE;
8918 else if (!strcmp(res->tunnel_type, "nvgre"))
8919 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_NVGRE;
8920 else if (!strcmp(res->tunnel_type, "ipingre"))
8921 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_IP_IN_GRE;
8923 printf("The tunnel type %s not supported.\n", res->tunnel_type);
8927 tunnel_filter_conf.tenant_id = res->tenant_id;
8928 tunnel_filter_conf.queue_id = res->queue_num;
8929 if (!strcmp(res->what, "add"))
8930 ret = rte_eth_dev_filter_ctrl(res->port_id,
8931 RTE_ETH_FILTER_TUNNEL,
8933 &tunnel_filter_conf);
8935 ret = rte_eth_dev_filter_ctrl(res->port_id,
8936 RTE_ETH_FILTER_TUNNEL,
8937 RTE_ETH_FILTER_DELETE,
8938 &tunnel_filter_conf);
8940 printf("cmd_tunnel_filter_parsed error: (%s)\n",
8944 cmdline_parse_token_string_t cmd_tunnel_filter_cmd =
8945 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
8946 cmd, "tunnel_filter");
8947 cmdline_parse_token_string_t cmd_tunnel_filter_what =
8948 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
8950 cmdline_parse_token_num_t cmd_tunnel_filter_port_id =
8951 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
8953 cmdline_parse_token_etheraddr_t cmd_tunnel_filter_outer_mac =
8954 TOKEN_ETHERADDR_INITIALIZER(struct cmd_tunnel_filter_result,
8956 cmdline_parse_token_etheraddr_t cmd_tunnel_filter_inner_mac =
8957 TOKEN_ETHERADDR_INITIALIZER(struct cmd_tunnel_filter_result,
8959 cmdline_parse_token_num_t cmd_tunnel_filter_innner_vlan =
8960 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
8961 inner_vlan, UINT16);
8962 cmdline_parse_token_ipaddr_t cmd_tunnel_filter_ip_value =
8963 TOKEN_IPADDR_INITIALIZER(struct cmd_tunnel_filter_result,
8965 cmdline_parse_token_string_t cmd_tunnel_filter_tunnel_type =
8966 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
8967 tunnel_type, "vxlan#nvgre#ipingre#vxlan-gpe");
8969 cmdline_parse_token_string_t cmd_tunnel_filter_filter_type =
8970 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
8971 filter_type, "oip#iip#imac-ivlan#imac-ivlan-tenid#imac-tenid#"
8972 "imac#omac-imac-tenid");
8973 cmdline_parse_token_num_t cmd_tunnel_filter_tenant_id =
8974 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
8976 cmdline_parse_token_num_t cmd_tunnel_filter_queue_num =
8977 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
8980 cmdline_parse_inst_t cmd_tunnel_filter = {
8981 .f = cmd_tunnel_filter_parsed,
8983 .help_str = "tunnel_filter add|rm <port_id> <outer_mac> <inner_mac> "
8984 "<ip> <inner_vlan> vxlan|nvgre|ipingre oip|iip|imac-ivlan|"
8985 "imac-ivlan-tenid|imac-tenid|imac|omac-imac-tenid <tenant_id> "
8986 "<queue_id>: Add/Rm tunnel filter of a port",
8988 (void *)&cmd_tunnel_filter_cmd,
8989 (void *)&cmd_tunnel_filter_what,
8990 (void *)&cmd_tunnel_filter_port_id,
8991 (void *)&cmd_tunnel_filter_outer_mac,
8992 (void *)&cmd_tunnel_filter_inner_mac,
8993 (void *)&cmd_tunnel_filter_ip_value,
8994 (void *)&cmd_tunnel_filter_innner_vlan,
8995 (void *)&cmd_tunnel_filter_tunnel_type,
8996 (void *)&cmd_tunnel_filter_filter_type,
8997 (void *)&cmd_tunnel_filter_tenant_id,
8998 (void *)&cmd_tunnel_filter_queue_num,
9003 /* *** CONFIGURE TUNNEL UDP PORT *** */
9004 struct cmd_tunnel_udp_config {
9005 cmdline_fixed_string_t cmd;
9006 cmdline_fixed_string_t what;
9012 cmd_tunnel_udp_config_parsed(void *parsed_result,
9013 __attribute__((unused)) struct cmdline *cl,
9014 __attribute__((unused)) void *data)
9016 struct cmd_tunnel_udp_config *res = parsed_result;
9017 struct rte_eth_udp_tunnel tunnel_udp;
9020 tunnel_udp.udp_port = res->udp_port;
9022 if (!strcmp(res->cmd, "rx_vxlan_port"))
9023 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN;
9025 if (!strcmp(res->what, "add"))
9026 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id,
9029 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id,
9033 printf("udp tunneling add error: (%s)\n", strerror(-ret));
9036 cmdline_parse_token_string_t cmd_tunnel_udp_config_cmd =
9037 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
9038 cmd, "rx_vxlan_port");
9039 cmdline_parse_token_string_t cmd_tunnel_udp_config_what =
9040 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
9042 cmdline_parse_token_num_t cmd_tunnel_udp_config_udp_port =
9043 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
9045 cmdline_parse_token_num_t cmd_tunnel_udp_config_port_id =
9046 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
9049 cmdline_parse_inst_t cmd_tunnel_udp_config = {
9050 .f = cmd_tunnel_udp_config_parsed,
9052 .help_str = "rx_vxlan_port add|rm <udp_port> <port_id>: "
9053 "Add/Remove a tunneling UDP port filter",
9055 (void *)&cmd_tunnel_udp_config_cmd,
9056 (void *)&cmd_tunnel_udp_config_what,
9057 (void *)&cmd_tunnel_udp_config_udp_port,
9058 (void *)&cmd_tunnel_udp_config_port_id,
9063 struct cmd_config_tunnel_udp_port {
9064 cmdline_fixed_string_t port;
9065 cmdline_fixed_string_t config;
9067 cmdline_fixed_string_t udp_tunnel_port;
9068 cmdline_fixed_string_t action;
9069 cmdline_fixed_string_t tunnel_type;
9074 cmd_cfg_tunnel_udp_port_parsed(void *parsed_result,
9075 __attribute__((unused)) struct cmdline *cl,
9076 __attribute__((unused)) void *data)
9078 struct cmd_config_tunnel_udp_port *res = parsed_result;
9079 struct rte_eth_udp_tunnel tunnel_udp;
9082 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9085 tunnel_udp.udp_port = res->udp_port;
9087 if (!strcmp(res->tunnel_type, "vxlan")) {
9088 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN;
9089 } else if (!strcmp(res->tunnel_type, "geneve")) {
9090 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_GENEVE;
9091 } else if (!strcmp(res->tunnel_type, "vxlan-gpe")) {
9092 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN_GPE;
9094 printf("Invalid tunnel type\n");
9098 if (!strcmp(res->action, "add"))
9099 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id,
9102 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id,
9106 printf("udp tunneling port add error: (%s)\n", strerror(-ret));
9109 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_port =
9110 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, port,
9112 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_config =
9113 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, config,
9115 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_port_id =
9116 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, port_id,
9118 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_port =
9119 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port,
9122 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_action =
9123 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, action,
9125 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_type =
9126 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, tunnel_type,
9127 "vxlan#geneve#vxlan-gpe");
9128 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_value =
9129 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, udp_port,
9132 cmdline_parse_inst_t cmd_cfg_tunnel_udp_port = {
9133 .f = cmd_cfg_tunnel_udp_port_parsed,
9135 .help_str = "port config <port_id> udp_tunnel_port add|rm vxlan|geneve|vxlan-gpe <udp_port>",
9137 (void *)&cmd_config_tunnel_udp_port_port,
9138 (void *)&cmd_config_tunnel_udp_port_config,
9139 (void *)&cmd_config_tunnel_udp_port_port_id,
9140 (void *)&cmd_config_tunnel_udp_port_tunnel_port,
9141 (void *)&cmd_config_tunnel_udp_port_action,
9142 (void *)&cmd_config_tunnel_udp_port_tunnel_type,
9143 (void *)&cmd_config_tunnel_udp_port_value,
9148 /* *** GLOBAL CONFIG *** */
9149 struct cmd_global_config_result {
9150 cmdline_fixed_string_t cmd;
9152 cmdline_fixed_string_t cfg_type;
9157 cmd_global_config_parsed(void *parsed_result,
9158 __attribute__((unused)) struct cmdline *cl,
9159 __attribute__((unused)) void *data)
9161 struct cmd_global_config_result *res = parsed_result;
9162 struct rte_eth_global_cfg conf;
9165 memset(&conf, 0, sizeof(conf));
9166 conf.cfg_type = RTE_ETH_GLOBAL_CFG_TYPE_GRE_KEY_LEN;
9167 conf.cfg.gre_key_len = res->len;
9168 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_NONE,
9169 RTE_ETH_FILTER_SET, &conf);
9171 printf("Global config error\n");
9174 cmdline_parse_token_string_t cmd_global_config_cmd =
9175 TOKEN_STRING_INITIALIZER(struct cmd_global_config_result, cmd,
9177 cmdline_parse_token_num_t cmd_global_config_port_id =
9178 TOKEN_NUM_INITIALIZER(struct cmd_global_config_result, port_id,
9180 cmdline_parse_token_string_t cmd_global_config_type =
9181 TOKEN_STRING_INITIALIZER(struct cmd_global_config_result,
9182 cfg_type, "gre-key-len");
9183 cmdline_parse_token_num_t cmd_global_config_gre_key_len =
9184 TOKEN_NUM_INITIALIZER(struct cmd_global_config_result,
9187 cmdline_parse_inst_t cmd_global_config = {
9188 .f = cmd_global_config_parsed,
9189 .data = (void *)NULL,
9190 .help_str = "global_config <port_id> gre-key-len <key_len>",
9192 (void *)&cmd_global_config_cmd,
9193 (void *)&cmd_global_config_port_id,
9194 (void *)&cmd_global_config_type,
9195 (void *)&cmd_global_config_gre_key_len,
9200 /* *** CONFIGURE VM MIRROR VLAN/POOL RULE *** */
9201 struct cmd_set_mirror_mask_result {
9202 cmdline_fixed_string_t set;
9203 cmdline_fixed_string_t port;
9205 cmdline_fixed_string_t mirror;
9207 cmdline_fixed_string_t what;
9208 cmdline_fixed_string_t value;
9209 cmdline_fixed_string_t dstpool;
9211 cmdline_fixed_string_t on;
9214 cmdline_parse_token_string_t cmd_mirror_mask_set =
9215 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9217 cmdline_parse_token_string_t cmd_mirror_mask_port =
9218 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9220 cmdline_parse_token_num_t cmd_mirror_mask_portid =
9221 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
9223 cmdline_parse_token_string_t cmd_mirror_mask_mirror =
9224 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9225 mirror, "mirror-rule");
9226 cmdline_parse_token_num_t cmd_mirror_mask_ruleid =
9227 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
9229 cmdline_parse_token_string_t cmd_mirror_mask_what =
9230 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9231 what, "pool-mirror-up#pool-mirror-down"
9233 cmdline_parse_token_string_t cmd_mirror_mask_value =
9234 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9236 cmdline_parse_token_string_t cmd_mirror_mask_dstpool =
9237 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9238 dstpool, "dst-pool");
9239 cmdline_parse_token_num_t cmd_mirror_mask_poolid =
9240 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
9242 cmdline_parse_token_string_t cmd_mirror_mask_on =
9243 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9247 cmd_set_mirror_mask_parsed(void *parsed_result,
9248 __attribute__((unused)) struct cmdline *cl,
9249 __attribute__((unused)) void *data)
9252 struct cmd_set_mirror_mask_result *res = parsed_result;
9253 struct rte_eth_mirror_conf mr_conf;
9255 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
9257 unsigned int vlan_list[ETH_MIRROR_MAX_VLANS];
9259 mr_conf.dst_pool = res->dstpool_id;
9261 if (!strcmp(res->what, "pool-mirror-up")) {
9262 mr_conf.pool_mask = strtoull(res->value, NULL, 16);
9263 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_UP;
9264 } else if (!strcmp(res->what, "pool-mirror-down")) {
9265 mr_conf.pool_mask = strtoull(res->value, NULL, 16);
9266 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_DOWN;
9267 } else if (!strcmp(res->what, "vlan-mirror")) {
9268 mr_conf.rule_type = ETH_MIRROR_VLAN;
9269 nb_item = parse_item_list(res->value, "vlan",
9270 ETH_MIRROR_MAX_VLANS, vlan_list, 1);
9274 for (i = 0; i < nb_item; i++) {
9275 if (vlan_list[i] > RTE_ETHER_MAX_VLAN_ID) {
9276 printf("Invalid vlan_id: must be < 4096\n");
9280 mr_conf.vlan.vlan_id[i] = (uint16_t)vlan_list[i];
9281 mr_conf.vlan.vlan_mask |= 1ULL << i;
9285 if (!strcmp(res->on, "on"))
9286 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9289 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9292 printf("mirror rule add error: (%s)\n", strerror(-ret));
9295 cmdline_parse_inst_t cmd_set_mirror_mask = {
9296 .f = cmd_set_mirror_mask_parsed,
9298 .help_str = "set port <port_id> mirror-rule <rule_id> "
9299 "pool-mirror-up|pool-mirror-down|vlan-mirror "
9300 "<pool_mask|vlan_id[,vlan_id]*> dst-pool <pool_id> on|off",
9302 (void *)&cmd_mirror_mask_set,
9303 (void *)&cmd_mirror_mask_port,
9304 (void *)&cmd_mirror_mask_portid,
9305 (void *)&cmd_mirror_mask_mirror,
9306 (void *)&cmd_mirror_mask_ruleid,
9307 (void *)&cmd_mirror_mask_what,
9308 (void *)&cmd_mirror_mask_value,
9309 (void *)&cmd_mirror_mask_dstpool,
9310 (void *)&cmd_mirror_mask_poolid,
9311 (void *)&cmd_mirror_mask_on,
9316 /* *** CONFIGURE VM MIRROR UPLINK/DOWNLINK RULE *** */
9317 struct cmd_set_mirror_link_result {
9318 cmdline_fixed_string_t set;
9319 cmdline_fixed_string_t port;
9321 cmdline_fixed_string_t mirror;
9323 cmdline_fixed_string_t what;
9324 cmdline_fixed_string_t dstpool;
9326 cmdline_fixed_string_t on;
9329 cmdline_parse_token_string_t cmd_mirror_link_set =
9330 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9332 cmdline_parse_token_string_t cmd_mirror_link_port =
9333 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9335 cmdline_parse_token_num_t cmd_mirror_link_portid =
9336 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
9338 cmdline_parse_token_string_t cmd_mirror_link_mirror =
9339 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9340 mirror, "mirror-rule");
9341 cmdline_parse_token_num_t cmd_mirror_link_ruleid =
9342 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
9344 cmdline_parse_token_string_t cmd_mirror_link_what =
9345 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9346 what, "uplink-mirror#downlink-mirror");
9347 cmdline_parse_token_string_t cmd_mirror_link_dstpool =
9348 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9349 dstpool, "dst-pool");
9350 cmdline_parse_token_num_t cmd_mirror_link_poolid =
9351 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
9353 cmdline_parse_token_string_t cmd_mirror_link_on =
9354 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9358 cmd_set_mirror_link_parsed(void *parsed_result,
9359 __attribute__((unused)) struct cmdline *cl,
9360 __attribute__((unused)) void *data)
9363 struct cmd_set_mirror_link_result *res = parsed_result;
9364 struct rte_eth_mirror_conf mr_conf;
9366 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
9367 if (!strcmp(res->what, "uplink-mirror"))
9368 mr_conf.rule_type = ETH_MIRROR_UPLINK_PORT;
9370 mr_conf.rule_type = ETH_MIRROR_DOWNLINK_PORT;
9372 mr_conf.dst_pool = res->dstpool_id;
9374 if (!strcmp(res->on, "on"))
9375 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9378 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9381 /* check the return value and print it if is < 0 */
9383 printf("mirror rule add error: (%s)\n", strerror(-ret));
9387 cmdline_parse_inst_t cmd_set_mirror_link = {
9388 .f = cmd_set_mirror_link_parsed,
9390 .help_str = "set port <port_id> mirror-rule <rule_id> "
9391 "uplink-mirror|downlink-mirror dst-pool <pool_id> on|off",
9393 (void *)&cmd_mirror_link_set,
9394 (void *)&cmd_mirror_link_port,
9395 (void *)&cmd_mirror_link_portid,
9396 (void *)&cmd_mirror_link_mirror,
9397 (void *)&cmd_mirror_link_ruleid,
9398 (void *)&cmd_mirror_link_what,
9399 (void *)&cmd_mirror_link_dstpool,
9400 (void *)&cmd_mirror_link_poolid,
9401 (void *)&cmd_mirror_link_on,
9406 /* *** RESET VM MIRROR RULE *** */
9407 struct cmd_rm_mirror_rule_result {
9408 cmdline_fixed_string_t reset;
9409 cmdline_fixed_string_t port;
9411 cmdline_fixed_string_t mirror;
9415 cmdline_parse_token_string_t cmd_rm_mirror_rule_reset =
9416 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
9418 cmdline_parse_token_string_t cmd_rm_mirror_rule_port =
9419 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
9421 cmdline_parse_token_num_t cmd_rm_mirror_rule_portid =
9422 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
9424 cmdline_parse_token_string_t cmd_rm_mirror_rule_mirror =
9425 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
9426 mirror, "mirror-rule");
9427 cmdline_parse_token_num_t cmd_rm_mirror_rule_ruleid =
9428 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
9432 cmd_reset_mirror_rule_parsed(void *parsed_result,
9433 __attribute__((unused)) struct cmdline *cl,
9434 __attribute__((unused)) void *data)
9437 struct cmd_set_mirror_link_result *res = parsed_result;
9439 ret = rte_eth_mirror_rule_reset(res->port_id,res->rule_id);
9441 printf("mirror rule remove error: (%s)\n", strerror(-ret));
9444 cmdline_parse_inst_t cmd_reset_mirror_rule = {
9445 .f = cmd_reset_mirror_rule_parsed,
9447 .help_str = "reset port <port_id> mirror-rule <rule_id>",
9449 (void *)&cmd_rm_mirror_rule_reset,
9450 (void *)&cmd_rm_mirror_rule_port,
9451 (void *)&cmd_rm_mirror_rule_portid,
9452 (void *)&cmd_rm_mirror_rule_mirror,
9453 (void *)&cmd_rm_mirror_rule_ruleid,
9458 /* ******************************************************************************** */
9460 struct cmd_dump_result {
9461 cmdline_fixed_string_t dump;
9465 dump_struct_sizes(void)
9467 #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t));
9468 DUMP_SIZE(struct rte_mbuf);
9469 DUMP_SIZE(struct rte_mempool);
9470 DUMP_SIZE(struct rte_ring);
9474 static void cmd_dump_parsed(void *parsed_result,
9475 __attribute__((unused)) struct cmdline *cl,
9476 __attribute__((unused)) void *data)
9478 struct cmd_dump_result *res = parsed_result;
9480 if (!strcmp(res->dump, "dump_physmem"))
9481 rte_dump_physmem_layout(stdout);
9482 else if (!strcmp(res->dump, "dump_memzone"))
9483 rte_memzone_dump(stdout);
9484 else if (!strcmp(res->dump, "dump_struct_sizes"))
9485 dump_struct_sizes();
9486 else if (!strcmp(res->dump, "dump_ring"))
9487 rte_ring_list_dump(stdout);
9488 else if (!strcmp(res->dump, "dump_mempool"))
9489 rte_mempool_list_dump(stdout);
9490 else if (!strcmp(res->dump, "dump_devargs"))
9491 rte_devargs_dump(stdout);
9492 else if (!strcmp(res->dump, "dump_log_types"))
9493 rte_log_dump(stdout);
9496 cmdline_parse_token_string_t cmd_dump_dump =
9497 TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump,
9500 "dump_struct_sizes#"
9506 cmdline_parse_inst_t cmd_dump = {
9507 .f = cmd_dump_parsed, /* function to call */
9508 .data = NULL, /* 2nd arg of func */
9509 .help_str = "Dump status",
9510 .tokens = { /* token list, NULL terminated */
9511 (void *)&cmd_dump_dump,
9516 /* ******************************************************************************** */
9518 struct cmd_dump_one_result {
9519 cmdline_fixed_string_t dump;
9520 cmdline_fixed_string_t name;
9523 static void cmd_dump_one_parsed(void *parsed_result, struct cmdline *cl,
9524 __attribute__((unused)) void *data)
9526 struct cmd_dump_one_result *res = parsed_result;
9528 if (!strcmp(res->dump, "dump_ring")) {
9530 r = rte_ring_lookup(res->name);
9532 cmdline_printf(cl, "Cannot find ring\n");
9535 rte_ring_dump(stdout, r);
9536 } else if (!strcmp(res->dump, "dump_mempool")) {
9537 struct rte_mempool *mp;
9538 mp = rte_mempool_lookup(res->name);
9540 cmdline_printf(cl, "Cannot find mempool\n");
9543 rte_mempool_dump(stdout, mp);
9547 cmdline_parse_token_string_t cmd_dump_one_dump =
9548 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, dump,
9549 "dump_ring#dump_mempool");
9551 cmdline_parse_token_string_t cmd_dump_one_name =
9552 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, name, NULL);
9554 cmdline_parse_inst_t cmd_dump_one = {
9555 .f = cmd_dump_one_parsed, /* function to call */
9556 .data = NULL, /* 2nd arg of func */
9557 .help_str = "dump_ring|dump_mempool <name>: Dump one ring/mempool",
9558 .tokens = { /* token list, NULL terminated */
9559 (void *)&cmd_dump_one_dump,
9560 (void *)&cmd_dump_one_name,
9565 /* *** Add/Del syn filter *** */
9566 struct cmd_syn_filter_result {
9567 cmdline_fixed_string_t filter;
9569 cmdline_fixed_string_t ops;
9570 cmdline_fixed_string_t priority;
9571 cmdline_fixed_string_t high;
9572 cmdline_fixed_string_t queue;
9577 cmd_syn_filter_parsed(void *parsed_result,
9578 __attribute__((unused)) struct cmdline *cl,
9579 __attribute__((unused)) void *data)
9581 struct cmd_syn_filter_result *res = parsed_result;
9582 struct rte_eth_syn_filter syn_filter;
9585 ret = rte_eth_dev_filter_supported(res->port_id,
9586 RTE_ETH_FILTER_SYN);
9588 printf("syn filter is not supported on port %u.\n",
9593 memset(&syn_filter, 0, sizeof(syn_filter));
9595 if (!strcmp(res->ops, "add")) {
9596 if (!strcmp(res->high, "high"))
9597 syn_filter.hig_pri = 1;
9599 syn_filter.hig_pri = 0;
9601 syn_filter.queue = res->queue_id;
9602 ret = rte_eth_dev_filter_ctrl(res->port_id,
9607 ret = rte_eth_dev_filter_ctrl(res->port_id,
9609 RTE_ETH_FILTER_DELETE,
9613 printf("syn filter programming error: (%s)\n",
9617 cmdline_parse_token_string_t cmd_syn_filter_filter =
9618 TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
9619 filter, "syn_filter");
9620 cmdline_parse_token_num_t cmd_syn_filter_port_id =
9621 TOKEN_NUM_INITIALIZER(struct cmd_syn_filter_result,
9623 cmdline_parse_token_string_t cmd_syn_filter_ops =
9624 TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
9626 cmdline_parse_token_string_t cmd_syn_filter_priority =
9627 TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
9628 priority, "priority");
9629 cmdline_parse_token_string_t cmd_syn_filter_high =
9630 TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
9632 cmdline_parse_token_string_t cmd_syn_filter_queue =
9633 TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
9635 cmdline_parse_token_num_t cmd_syn_filter_queue_id =
9636 TOKEN_NUM_INITIALIZER(struct cmd_syn_filter_result,
9639 cmdline_parse_inst_t cmd_syn_filter = {
9640 .f = cmd_syn_filter_parsed,
9642 .help_str = "syn_filter <port_id> add|del priority high|low queue "
9643 "<queue_id>: Add/Delete syn filter",
9645 (void *)&cmd_syn_filter_filter,
9646 (void *)&cmd_syn_filter_port_id,
9647 (void *)&cmd_syn_filter_ops,
9648 (void *)&cmd_syn_filter_priority,
9649 (void *)&cmd_syn_filter_high,
9650 (void *)&cmd_syn_filter_queue,
9651 (void *)&cmd_syn_filter_queue_id,
9656 /* *** queue region set *** */
9657 struct cmd_queue_region_result {
9658 cmdline_fixed_string_t set;
9659 cmdline_fixed_string_t port;
9661 cmdline_fixed_string_t cmd;
9662 cmdline_fixed_string_t region;
9664 cmdline_fixed_string_t queue_start_index;
9666 cmdline_fixed_string_t queue_num;
9667 uint8_t queue_num_value;
9671 cmd_queue_region_parsed(void *parsed_result,
9672 __attribute__((unused)) struct cmdline *cl,
9673 __attribute__((unused)) void *data)
9675 struct cmd_queue_region_result *res = parsed_result;
9677 #ifdef RTE_LIBRTE_I40E_PMD
9678 struct rte_pmd_i40e_queue_region_conf region_conf;
9679 enum rte_pmd_i40e_queue_region_op op_type;
9682 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9685 #ifdef RTE_LIBRTE_I40E_PMD
9686 memset(®ion_conf, 0, sizeof(region_conf));
9687 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_SET;
9688 region_conf.region_id = res->region_id;
9689 region_conf.queue_num = res->queue_num_value;
9690 region_conf.queue_start_index = res->queue_id;
9692 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9693 op_type, ®ion_conf);
9700 printf("function not implemented or supported\n");
9703 printf("queue region config error: (%s)\n", strerror(-ret));
9707 cmdline_parse_token_string_t cmd_queue_region_set =
9708 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9710 cmdline_parse_token_string_t cmd_queue_region_port =
9711 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, port, "port");
9712 cmdline_parse_token_num_t cmd_queue_region_port_id =
9713 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9715 cmdline_parse_token_string_t cmd_queue_region_cmd =
9716 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9717 cmd, "queue-region");
9718 cmdline_parse_token_string_t cmd_queue_region_id =
9719 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9720 region, "region_id");
9721 cmdline_parse_token_num_t cmd_queue_region_index =
9722 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9724 cmdline_parse_token_string_t cmd_queue_region_queue_start_index =
9725 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9726 queue_start_index, "queue_start_index");
9727 cmdline_parse_token_num_t cmd_queue_region_queue_id =
9728 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9730 cmdline_parse_token_string_t cmd_queue_region_queue_num =
9731 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9732 queue_num, "queue_num");
9733 cmdline_parse_token_num_t cmd_queue_region_queue_num_value =
9734 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9735 queue_num_value, UINT8);
9737 cmdline_parse_inst_t cmd_queue_region = {
9738 .f = cmd_queue_region_parsed,
9740 .help_str = "set port <port_id> queue-region region_id <value> "
9741 "queue_start_index <value> queue_num <value>: Set a queue region",
9743 (void *)&cmd_queue_region_set,
9744 (void *)&cmd_queue_region_port,
9745 (void *)&cmd_queue_region_port_id,
9746 (void *)&cmd_queue_region_cmd,
9747 (void *)&cmd_queue_region_id,
9748 (void *)&cmd_queue_region_index,
9749 (void *)&cmd_queue_region_queue_start_index,
9750 (void *)&cmd_queue_region_queue_id,
9751 (void *)&cmd_queue_region_queue_num,
9752 (void *)&cmd_queue_region_queue_num_value,
9757 /* *** queue region and flowtype set *** */
9758 struct cmd_region_flowtype_result {
9759 cmdline_fixed_string_t set;
9760 cmdline_fixed_string_t port;
9762 cmdline_fixed_string_t cmd;
9763 cmdline_fixed_string_t region;
9765 cmdline_fixed_string_t flowtype;
9766 uint8_t flowtype_id;
9770 cmd_region_flowtype_parsed(void *parsed_result,
9771 __attribute__((unused)) struct cmdline *cl,
9772 __attribute__((unused)) void *data)
9774 struct cmd_region_flowtype_result *res = parsed_result;
9776 #ifdef RTE_LIBRTE_I40E_PMD
9777 struct rte_pmd_i40e_queue_region_conf region_conf;
9778 enum rte_pmd_i40e_queue_region_op op_type;
9781 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9784 #ifdef RTE_LIBRTE_I40E_PMD
9785 memset(®ion_conf, 0, sizeof(region_conf));
9787 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_FLOWTYPE_SET;
9788 region_conf.region_id = res->region_id;
9789 region_conf.hw_flowtype = res->flowtype_id;
9791 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9792 op_type, ®ion_conf);
9799 printf("function not implemented or supported\n");
9802 printf("region flowtype config error: (%s)\n", strerror(-ret));
9806 cmdline_parse_token_string_t cmd_region_flowtype_set =
9807 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9809 cmdline_parse_token_string_t cmd_region_flowtype_port =
9810 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9812 cmdline_parse_token_num_t cmd_region_flowtype_port_index =
9813 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
9815 cmdline_parse_token_string_t cmd_region_flowtype_cmd =
9816 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9817 cmd, "queue-region");
9818 cmdline_parse_token_string_t cmd_region_flowtype_index =
9819 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9820 region, "region_id");
9821 cmdline_parse_token_num_t cmd_region_flowtype_id =
9822 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
9824 cmdline_parse_token_string_t cmd_region_flowtype_flow_index =
9825 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9826 flowtype, "flowtype");
9827 cmdline_parse_token_num_t cmd_region_flowtype_flow_id =
9828 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
9829 flowtype_id, UINT8);
9830 cmdline_parse_inst_t cmd_region_flowtype = {
9831 .f = cmd_region_flowtype_parsed,
9833 .help_str = "set port <port_id> queue-region region_id <value> "
9834 "flowtype <value>: Set a flowtype region index",
9836 (void *)&cmd_region_flowtype_set,
9837 (void *)&cmd_region_flowtype_port,
9838 (void *)&cmd_region_flowtype_port_index,
9839 (void *)&cmd_region_flowtype_cmd,
9840 (void *)&cmd_region_flowtype_index,
9841 (void *)&cmd_region_flowtype_id,
9842 (void *)&cmd_region_flowtype_flow_index,
9843 (void *)&cmd_region_flowtype_flow_id,
9848 /* *** User Priority (UP) to queue region (region_id) set *** */
9849 struct cmd_user_priority_region_result {
9850 cmdline_fixed_string_t set;
9851 cmdline_fixed_string_t port;
9853 cmdline_fixed_string_t cmd;
9854 cmdline_fixed_string_t user_priority;
9855 uint8_t user_priority_id;
9856 cmdline_fixed_string_t region;
9861 cmd_user_priority_region_parsed(void *parsed_result,
9862 __attribute__((unused)) struct cmdline *cl,
9863 __attribute__((unused)) void *data)
9865 struct cmd_user_priority_region_result *res = parsed_result;
9867 #ifdef RTE_LIBRTE_I40E_PMD
9868 struct rte_pmd_i40e_queue_region_conf region_conf;
9869 enum rte_pmd_i40e_queue_region_op op_type;
9872 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9875 #ifdef RTE_LIBRTE_I40E_PMD
9876 memset(®ion_conf, 0, sizeof(region_conf));
9877 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_USER_PRIORITY_SET;
9878 region_conf.user_priority = res->user_priority_id;
9879 region_conf.region_id = res->region_id;
9881 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9882 op_type, ®ion_conf);
9889 printf("function not implemented or supported\n");
9892 printf("user_priority region config error: (%s)\n",
9897 cmdline_parse_token_string_t cmd_user_priority_region_set =
9898 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9900 cmdline_parse_token_string_t cmd_user_priority_region_port =
9901 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9903 cmdline_parse_token_num_t cmd_user_priority_region_port_index =
9904 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
9906 cmdline_parse_token_string_t cmd_user_priority_region_cmd =
9907 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9908 cmd, "queue-region");
9909 cmdline_parse_token_string_t cmd_user_priority_region_UP =
9910 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9911 user_priority, "UP");
9912 cmdline_parse_token_num_t cmd_user_priority_region_UP_id =
9913 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
9914 user_priority_id, UINT8);
9915 cmdline_parse_token_string_t cmd_user_priority_region_region =
9916 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9917 region, "region_id");
9918 cmdline_parse_token_num_t cmd_user_priority_region_region_id =
9919 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
9922 cmdline_parse_inst_t cmd_user_priority_region = {
9923 .f = cmd_user_priority_region_parsed,
9925 .help_str = "set port <port_id> queue-region UP <value> "
9926 "region_id <value>: Set the mapping of User Priority (UP) "
9927 "to queue region (region_id) ",
9929 (void *)&cmd_user_priority_region_set,
9930 (void *)&cmd_user_priority_region_port,
9931 (void *)&cmd_user_priority_region_port_index,
9932 (void *)&cmd_user_priority_region_cmd,
9933 (void *)&cmd_user_priority_region_UP,
9934 (void *)&cmd_user_priority_region_UP_id,
9935 (void *)&cmd_user_priority_region_region,
9936 (void *)&cmd_user_priority_region_region_id,
9941 /* *** flush all queue region related configuration *** */
9942 struct cmd_flush_queue_region_result {
9943 cmdline_fixed_string_t set;
9944 cmdline_fixed_string_t port;
9946 cmdline_fixed_string_t cmd;
9947 cmdline_fixed_string_t flush;
9948 cmdline_fixed_string_t what;
9952 cmd_flush_queue_region_parsed(void *parsed_result,
9953 __attribute__((unused)) struct cmdline *cl,
9954 __attribute__((unused)) void *data)
9956 struct cmd_flush_queue_region_result *res = parsed_result;
9958 #ifdef RTE_LIBRTE_I40E_PMD
9959 struct rte_pmd_i40e_queue_region_conf region_conf;
9960 enum rte_pmd_i40e_queue_region_op op_type;
9963 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9966 #ifdef RTE_LIBRTE_I40E_PMD
9967 memset(®ion_conf, 0, sizeof(region_conf));
9969 if (strcmp(res->what, "on") == 0)
9970 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_ON;
9972 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_OFF;
9974 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9975 op_type, ®ion_conf);
9982 printf("function not implemented or supported\n");
9985 printf("queue region config flush error: (%s)\n",
9990 cmdline_parse_token_string_t cmd_flush_queue_region_set =
9991 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
9993 cmdline_parse_token_string_t cmd_flush_queue_region_port =
9994 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
9996 cmdline_parse_token_num_t cmd_flush_queue_region_port_index =
9997 TOKEN_NUM_INITIALIZER(struct cmd_flush_queue_region_result,
9999 cmdline_parse_token_string_t cmd_flush_queue_region_cmd =
10000 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10001 cmd, "queue-region");
10002 cmdline_parse_token_string_t cmd_flush_queue_region_flush =
10003 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10005 cmdline_parse_token_string_t cmd_flush_queue_region_what =
10006 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10009 cmdline_parse_inst_t cmd_flush_queue_region = {
10010 .f = cmd_flush_queue_region_parsed,
10012 .help_str = "set port <port_id> queue-region flush on|off"
10013 ": flush all queue region related configuration",
10015 (void *)&cmd_flush_queue_region_set,
10016 (void *)&cmd_flush_queue_region_port,
10017 (void *)&cmd_flush_queue_region_port_index,
10018 (void *)&cmd_flush_queue_region_cmd,
10019 (void *)&cmd_flush_queue_region_flush,
10020 (void *)&cmd_flush_queue_region_what,
10025 /* *** get all queue region related configuration info *** */
10026 struct cmd_show_queue_region_info {
10027 cmdline_fixed_string_t show;
10028 cmdline_fixed_string_t port;
10030 cmdline_fixed_string_t cmd;
10034 cmd_show_queue_region_info_parsed(void *parsed_result,
10035 __attribute__((unused)) struct cmdline *cl,
10036 __attribute__((unused)) void *data)
10038 struct cmd_show_queue_region_info *res = parsed_result;
10039 int ret = -ENOTSUP;
10040 #ifdef RTE_LIBRTE_I40E_PMD
10041 struct rte_pmd_i40e_queue_regions rte_pmd_regions;
10042 enum rte_pmd_i40e_queue_region_op op_type;
10045 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10048 #ifdef RTE_LIBRTE_I40E_PMD
10049 memset(&rte_pmd_regions, 0, sizeof(rte_pmd_regions));
10051 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_INFO_GET;
10053 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
10054 op_type, &rte_pmd_regions);
10056 port_queue_region_info_display(res->port_id, &rte_pmd_regions);
10063 printf("function not implemented or supported\n");
10066 printf("queue region config info show error: (%s)\n",
10071 cmdline_parse_token_string_t cmd_show_queue_region_info_get =
10072 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
10074 cmdline_parse_token_string_t cmd_show_queue_region_info_port =
10075 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
10077 cmdline_parse_token_num_t cmd_show_queue_region_info_port_index =
10078 TOKEN_NUM_INITIALIZER(struct cmd_show_queue_region_info,
10080 cmdline_parse_token_string_t cmd_show_queue_region_info_cmd =
10081 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
10082 cmd, "queue-region");
10084 cmdline_parse_inst_t cmd_show_queue_region_info_all = {
10085 .f = cmd_show_queue_region_info_parsed,
10087 .help_str = "show port <port_id> queue-region"
10088 ": show all queue region related configuration info",
10090 (void *)&cmd_show_queue_region_info_get,
10091 (void *)&cmd_show_queue_region_info_port,
10092 (void *)&cmd_show_queue_region_info_port_index,
10093 (void *)&cmd_show_queue_region_info_cmd,
10098 /* *** ADD/REMOVE A 2tuple FILTER *** */
10099 struct cmd_2tuple_filter_result {
10100 cmdline_fixed_string_t filter;
10102 cmdline_fixed_string_t ops;
10103 cmdline_fixed_string_t dst_port;
10104 uint16_t dst_port_value;
10105 cmdline_fixed_string_t protocol;
10106 uint8_t protocol_value;
10107 cmdline_fixed_string_t mask;
10108 uint8_t mask_value;
10109 cmdline_fixed_string_t tcp_flags;
10110 uint8_t tcp_flags_value;
10111 cmdline_fixed_string_t priority;
10112 uint8_t priority_value;
10113 cmdline_fixed_string_t queue;
10118 cmd_2tuple_filter_parsed(void *parsed_result,
10119 __attribute__((unused)) struct cmdline *cl,
10120 __attribute__((unused)) void *data)
10122 struct rte_eth_ntuple_filter filter;
10123 struct cmd_2tuple_filter_result *res = parsed_result;
10126 ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_NTUPLE);
10128 printf("ntuple filter is not supported on port %u.\n",
10133 memset(&filter, 0, sizeof(struct rte_eth_ntuple_filter));
10135 filter.flags = RTE_2TUPLE_FLAGS;
10136 filter.dst_port_mask = (res->mask_value & 0x02) ? UINT16_MAX : 0;
10137 filter.proto_mask = (res->mask_value & 0x01) ? UINT8_MAX : 0;
10138 filter.proto = res->protocol_value;
10139 filter.priority = res->priority_value;
10140 if (res->tcp_flags_value != 0 && filter.proto != IPPROTO_TCP) {
10141 printf("nonzero tcp_flags is only meaningful"
10142 " when protocol is TCP.\n");
10145 if (res->tcp_flags_value > RTE_NTUPLE_TCP_FLAGS_MASK) {
10146 printf("invalid TCP flags.\n");
10150 if (res->tcp_flags_value != 0) {
10151 filter.flags |= RTE_NTUPLE_FLAGS_TCP_FLAG;
10152 filter.tcp_flags = res->tcp_flags_value;
10155 /* need convert to big endian. */
10156 filter.dst_port = rte_cpu_to_be_16(res->dst_port_value);
10157 filter.queue = res->queue_id;
10159 if (!strcmp(res->ops, "add"))
10160 ret = rte_eth_dev_filter_ctrl(res->port_id,
10161 RTE_ETH_FILTER_NTUPLE,
10162 RTE_ETH_FILTER_ADD,
10165 ret = rte_eth_dev_filter_ctrl(res->port_id,
10166 RTE_ETH_FILTER_NTUPLE,
10167 RTE_ETH_FILTER_DELETE,
10170 printf("2tuple filter programming error: (%s)\n",
10175 cmdline_parse_token_string_t cmd_2tuple_filter_filter =
10176 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
10177 filter, "2tuple_filter");
10178 cmdline_parse_token_num_t cmd_2tuple_filter_port_id =
10179 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
10181 cmdline_parse_token_string_t cmd_2tuple_filter_ops =
10182 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
10184 cmdline_parse_token_string_t cmd_2tuple_filter_dst_port =
10185 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
10186 dst_port, "dst_port");
10187 cmdline_parse_token_num_t cmd_2tuple_filter_dst_port_value =
10188 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
10189 dst_port_value, UINT16);
10190 cmdline_parse_token_string_t cmd_2tuple_filter_protocol =
10191 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
10192 protocol, "protocol");
10193 cmdline_parse_token_num_t cmd_2tuple_filter_protocol_value =
10194 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
10195 protocol_value, UINT8);
10196 cmdline_parse_token_string_t cmd_2tuple_filter_mask =
10197 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
10199 cmdline_parse_token_num_t cmd_2tuple_filter_mask_value =
10200 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
10202 cmdline_parse_token_string_t cmd_2tuple_filter_tcp_flags =
10203 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
10204 tcp_flags, "tcp_flags");
10205 cmdline_parse_token_num_t cmd_2tuple_filter_tcp_flags_value =
10206 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
10207 tcp_flags_value, UINT8);
10208 cmdline_parse_token_string_t cmd_2tuple_filter_priority =
10209 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
10210 priority, "priority");
10211 cmdline_parse_token_num_t cmd_2tuple_filter_priority_value =
10212 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
10213 priority_value, UINT8);
10214 cmdline_parse_token_string_t cmd_2tuple_filter_queue =
10215 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
10217 cmdline_parse_token_num_t cmd_2tuple_filter_queue_id =
10218 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
10221 cmdline_parse_inst_t cmd_2tuple_filter = {
10222 .f = cmd_2tuple_filter_parsed,
10224 .help_str = "2tuple_filter <port_id> add|del dst_port <value> protocol "
10225 "<value> mask <value> tcp_flags <value> priority <value> queue "
10226 "<queue_id>: Add a 2tuple filter",
10228 (void *)&cmd_2tuple_filter_filter,
10229 (void *)&cmd_2tuple_filter_port_id,
10230 (void *)&cmd_2tuple_filter_ops,
10231 (void *)&cmd_2tuple_filter_dst_port,
10232 (void *)&cmd_2tuple_filter_dst_port_value,
10233 (void *)&cmd_2tuple_filter_protocol,
10234 (void *)&cmd_2tuple_filter_protocol_value,
10235 (void *)&cmd_2tuple_filter_mask,
10236 (void *)&cmd_2tuple_filter_mask_value,
10237 (void *)&cmd_2tuple_filter_tcp_flags,
10238 (void *)&cmd_2tuple_filter_tcp_flags_value,
10239 (void *)&cmd_2tuple_filter_priority,
10240 (void *)&cmd_2tuple_filter_priority_value,
10241 (void *)&cmd_2tuple_filter_queue,
10242 (void *)&cmd_2tuple_filter_queue_id,
10247 /* *** ADD/REMOVE A 5tuple FILTER *** */
10248 struct cmd_5tuple_filter_result {
10249 cmdline_fixed_string_t filter;
10251 cmdline_fixed_string_t ops;
10252 cmdline_fixed_string_t dst_ip;
10253 cmdline_ipaddr_t dst_ip_value;
10254 cmdline_fixed_string_t src_ip;
10255 cmdline_ipaddr_t src_ip_value;
10256 cmdline_fixed_string_t dst_port;
10257 uint16_t dst_port_value;
10258 cmdline_fixed_string_t src_port;
10259 uint16_t src_port_value;
10260 cmdline_fixed_string_t protocol;
10261 uint8_t protocol_value;
10262 cmdline_fixed_string_t mask;
10263 uint8_t mask_value;
10264 cmdline_fixed_string_t tcp_flags;
10265 uint8_t tcp_flags_value;
10266 cmdline_fixed_string_t priority;
10267 uint8_t priority_value;
10268 cmdline_fixed_string_t queue;
10273 cmd_5tuple_filter_parsed(void *parsed_result,
10274 __attribute__((unused)) struct cmdline *cl,
10275 __attribute__((unused)) void *data)
10277 struct rte_eth_ntuple_filter filter;
10278 struct cmd_5tuple_filter_result *res = parsed_result;
10281 ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_NTUPLE);
10283 printf("ntuple filter is not supported on port %u.\n",
10288 memset(&filter, 0, sizeof(struct rte_eth_ntuple_filter));
10290 filter.flags = RTE_5TUPLE_FLAGS;
10291 filter.dst_ip_mask = (res->mask_value & 0x10) ? UINT32_MAX : 0;
10292 filter.src_ip_mask = (res->mask_value & 0x08) ? UINT32_MAX : 0;
10293 filter.dst_port_mask = (res->mask_value & 0x04) ? UINT16_MAX : 0;
10294 filter.src_port_mask = (res->mask_value & 0x02) ? UINT16_MAX : 0;
10295 filter.proto_mask = (res->mask_value & 0x01) ? UINT8_MAX : 0;
10296 filter.proto = res->protocol_value;
10297 filter.priority = res->priority_value;
10298 if (res->tcp_flags_value != 0 && filter.proto != IPPROTO_TCP) {
10299 printf("nonzero tcp_flags is only meaningful"
10300 " when protocol is TCP.\n");
10303 if (res->tcp_flags_value > RTE_NTUPLE_TCP_FLAGS_MASK) {
10304 printf("invalid TCP flags.\n");
10308 if (res->tcp_flags_value != 0) {
10309 filter.flags |= RTE_NTUPLE_FLAGS_TCP_FLAG;
10310 filter.tcp_flags = res->tcp_flags_value;
10313 if (res->dst_ip_value.family == AF_INET)
10314 /* no need to convert, already big endian. */
10315 filter.dst_ip = res->dst_ip_value.addr.ipv4.s_addr;
10317 if (filter.dst_ip_mask == 0) {
10318 printf("can not support ipv6 involved compare.\n");
10324 if (res->src_ip_value.family == AF_INET)
10325 /* no need to convert, already big endian. */
10326 filter.src_ip = res->src_ip_value.addr.ipv4.s_addr;
10328 if (filter.src_ip_mask == 0) {
10329 printf("can not support ipv6 involved compare.\n");
10334 /* need convert to big endian. */
10335 filter.dst_port = rte_cpu_to_be_16(res->dst_port_value);
10336 filter.src_port = rte_cpu_to_be_16(res->src_port_value);
10337 filter.queue = res->queue_id;
10339 if (!strcmp(res->ops, "add"))
10340 ret = rte_eth_dev_filter_ctrl(res->port_id,
10341 RTE_ETH_FILTER_NTUPLE,
10342 RTE_ETH_FILTER_ADD,
10345 ret = rte_eth_dev_filter_ctrl(res->port_id,
10346 RTE_ETH_FILTER_NTUPLE,
10347 RTE_ETH_FILTER_DELETE,
10350 printf("5tuple filter programming error: (%s)\n",
10354 cmdline_parse_token_string_t cmd_5tuple_filter_filter =
10355 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
10356 filter, "5tuple_filter");
10357 cmdline_parse_token_num_t cmd_5tuple_filter_port_id =
10358 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
10360 cmdline_parse_token_string_t cmd_5tuple_filter_ops =
10361 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
10363 cmdline_parse_token_string_t cmd_5tuple_filter_dst_ip =
10364 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
10366 cmdline_parse_token_ipaddr_t cmd_5tuple_filter_dst_ip_value =
10367 TOKEN_IPADDR_INITIALIZER(struct cmd_5tuple_filter_result,
10369 cmdline_parse_token_string_t cmd_5tuple_filter_src_ip =
10370 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
10372 cmdline_parse_token_ipaddr_t cmd_5tuple_filter_src_ip_value =
10373 TOKEN_IPADDR_INITIALIZER(struct cmd_5tuple_filter_result,
10375 cmdline_parse_token_string_t cmd_5tuple_filter_dst_port =
10376 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
10377 dst_port, "dst_port");
10378 cmdline_parse_token_num_t cmd_5tuple_filter_dst_port_value =
10379 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
10380 dst_port_value, UINT16);
10381 cmdline_parse_token_string_t cmd_5tuple_filter_src_port =
10382 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
10383 src_port, "src_port");
10384 cmdline_parse_token_num_t cmd_5tuple_filter_src_port_value =
10385 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
10386 src_port_value, UINT16);
10387 cmdline_parse_token_string_t cmd_5tuple_filter_protocol =
10388 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
10389 protocol, "protocol");
10390 cmdline_parse_token_num_t cmd_5tuple_filter_protocol_value =
10391 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
10392 protocol_value, UINT8);
10393 cmdline_parse_token_string_t cmd_5tuple_filter_mask =
10394 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
10396 cmdline_parse_token_num_t cmd_5tuple_filter_mask_value =
10397 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
10399 cmdline_parse_token_string_t cmd_5tuple_filter_tcp_flags =
10400 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
10401 tcp_flags, "tcp_flags");
10402 cmdline_parse_token_num_t cmd_5tuple_filter_tcp_flags_value =
10403 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
10404 tcp_flags_value, UINT8);
10405 cmdline_parse_token_string_t cmd_5tuple_filter_priority =
10406 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
10407 priority, "priority");
10408 cmdline_parse_token_num_t cmd_5tuple_filter_priority_value =
10409 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
10410 priority_value, UINT8);
10411 cmdline_parse_token_string_t cmd_5tuple_filter_queue =
10412 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
10414 cmdline_parse_token_num_t cmd_5tuple_filter_queue_id =
10415 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
10418 cmdline_parse_inst_t cmd_5tuple_filter = {
10419 .f = cmd_5tuple_filter_parsed,
10421 .help_str = "5tuple_filter <port_id> add|del dst_ip <value> "
10422 "src_ip <value> dst_port <value> src_port <value> "
10423 "protocol <value> mask <value> tcp_flags <value> "
10424 "priority <value> queue <queue_id>: Add/Del a 5tuple filter",
10426 (void *)&cmd_5tuple_filter_filter,
10427 (void *)&cmd_5tuple_filter_port_id,
10428 (void *)&cmd_5tuple_filter_ops,
10429 (void *)&cmd_5tuple_filter_dst_ip,
10430 (void *)&cmd_5tuple_filter_dst_ip_value,
10431 (void *)&cmd_5tuple_filter_src_ip,
10432 (void *)&cmd_5tuple_filter_src_ip_value,
10433 (void *)&cmd_5tuple_filter_dst_port,
10434 (void *)&cmd_5tuple_filter_dst_port_value,
10435 (void *)&cmd_5tuple_filter_src_port,
10436 (void *)&cmd_5tuple_filter_src_port_value,
10437 (void *)&cmd_5tuple_filter_protocol,
10438 (void *)&cmd_5tuple_filter_protocol_value,
10439 (void *)&cmd_5tuple_filter_mask,
10440 (void *)&cmd_5tuple_filter_mask_value,
10441 (void *)&cmd_5tuple_filter_tcp_flags,
10442 (void *)&cmd_5tuple_filter_tcp_flags_value,
10443 (void *)&cmd_5tuple_filter_priority,
10444 (void *)&cmd_5tuple_filter_priority_value,
10445 (void *)&cmd_5tuple_filter_queue,
10446 (void *)&cmd_5tuple_filter_queue_id,
10451 /* *** ADD/REMOVE A flex FILTER *** */
10452 struct cmd_flex_filter_result {
10453 cmdline_fixed_string_t filter;
10454 cmdline_fixed_string_t ops;
10456 cmdline_fixed_string_t len;
10458 cmdline_fixed_string_t bytes;
10459 cmdline_fixed_string_t bytes_value;
10460 cmdline_fixed_string_t mask;
10461 cmdline_fixed_string_t mask_value;
10462 cmdline_fixed_string_t priority;
10463 uint8_t priority_value;
10464 cmdline_fixed_string_t queue;
10468 static int xdigit2val(unsigned char c)
10473 else if (isupper(c))
10474 val = c - 'A' + 10;
10476 val = c - 'a' + 10;
10481 cmd_flex_filter_parsed(void *parsed_result,
10482 __attribute__((unused)) struct cmdline *cl,
10483 __attribute__((unused)) void *data)
10486 struct rte_eth_flex_filter filter;
10487 struct cmd_flex_filter_result *res = parsed_result;
10488 char *bytes_ptr, *mask_ptr;
10489 uint16_t len, i, j = 0;
10494 if (res->len_value > RTE_FLEX_FILTER_MAXLEN) {
10495 printf("the len exceed the max length 128\n");
10498 memset(&filter, 0, sizeof(struct rte_eth_flex_filter));
10499 filter.len = res->len_value;
10500 filter.priority = res->priority_value;
10501 filter.queue = res->queue_id;
10502 bytes_ptr = res->bytes_value;
10503 mask_ptr = res->mask_value;
10505 /* translate bytes string to array. */
10506 if (bytes_ptr[0] == '0' && ((bytes_ptr[1] == 'x') ||
10507 (bytes_ptr[1] == 'X')))
10509 len = strnlen(bytes_ptr, res->len_value * 2);
10510 if (len == 0 || (len % 8 != 0)) {
10511 printf("please check len and bytes input\n");
10514 for (i = 0; i < len; i++) {
10516 if (isxdigit(c) == 0) {
10517 /* invalid characters. */
10518 printf("invalid input\n");
10521 val = xdigit2val(c);
10524 filter.bytes[j] = byte;
10525 printf("bytes[%d]:%02x ", j, filter.bytes[j]);
10532 /* translate mask string to uint8_t array. */
10533 if (mask_ptr[0] == '0' && ((mask_ptr[1] == 'x') ||
10534 (mask_ptr[1] == 'X')))
10536 len = strnlen(mask_ptr, (res->len_value + 3) / 4);
10538 printf("invalid input\n");
10543 for (i = 0; i < len; i++) {
10545 if (isxdigit(c) == 0) {
10546 /* invalid characters. */
10547 printf("invalid input\n");
10550 val = xdigit2val(c);
10553 filter.mask[j] = byte;
10554 printf("mask[%d]:%02x ", j, filter.mask[j]);
10562 if (!strcmp(res->ops, "add"))
10563 ret = rte_eth_dev_filter_ctrl(res->port_id,
10564 RTE_ETH_FILTER_FLEXIBLE,
10565 RTE_ETH_FILTER_ADD,
10568 ret = rte_eth_dev_filter_ctrl(res->port_id,
10569 RTE_ETH_FILTER_FLEXIBLE,
10570 RTE_ETH_FILTER_DELETE,
10574 printf("flex filter setting error: (%s)\n", strerror(-ret));
10577 cmdline_parse_token_string_t cmd_flex_filter_filter =
10578 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
10579 filter, "flex_filter");
10580 cmdline_parse_token_num_t cmd_flex_filter_port_id =
10581 TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
10583 cmdline_parse_token_string_t cmd_flex_filter_ops =
10584 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
10586 cmdline_parse_token_string_t cmd_flex_filter_len =
10587 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
10589 cmdline_parse_token_num_t cmd_flex_filter_len_value =
10590 TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
10592 cmdline_parse_token_string_t cmd_flex_filter_bytes =
10593 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
10595 cmdline_parse_token_string_t cmd_flex_filter_bytes_value =
10596 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
10597 bytes_value, NULL);
10598 cmdline_parse_token_string_t cmd_flex_filter_mask =
10599 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
10601 cmdline_parse_token_string_t cmd_flex_filter_mask_value =
10602 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
10604 cmdline_parse_token_string_t cmd_flex_filter_priority =
10605 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
10606 priority, "priority");
10607 cmdline_parse_token_num_t cmd_flex_filter_priority_value =
10608 TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
10609 priority_value, UINT8);
10610 cmdline_parse_token_string_t cmd_flex_filter_queue =
10611 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
10613 cmdline_parse_token_num_t cmd_flex_filter_queue_id =
10614 TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
10616 cmdline_parse_inst_t cmd_flex_filter = {
10617 .f = cmd_flex_filter_parsed,
10619 .help_str = "flex_filter <port_id> add|del len <value> bytes "
10620 "<value> mask <value> priority <value> queue <queue_id>: "
10621 "Add/Del a flex filter",
10623 (void *)&cmd_flex_filter_filter,
10624 (void *)&cmd_flex_filter_port_id,
10625 (void *)&cmd_flex_filter_ops,
10626 (void *)&cmd_flex_filter_len,
10627 (void *)&cmd_flex_filter_len_value,
10628 (void *)&cmd_flex_filter_bytes,
10629 (void *)&cmd_flex_filter_bytes_value,
10630 (void *)&cmd_flex_filter_mask,
10631 (void *)&cmd_flex_filter_mask_value,
10632 (void *)&cmd_flex_filter_priority,
10633 (void *)&cmd_flex_filter_priority_value,
10634 (void *)&cmd_flex_filter_queue,
10635 (void *)&cmd_flex_filter_queue_id,
10640 /* *** Filters Control *** */
10642 /* *** deal with ethertype filter *** */
10643 struct cmd_ethertype_filter_result {
10644 cmdline_fixed_string_t filter;
10646 cmdline_fixed_string_t ops;
10647 cmdline_fixed_string_t mac;
10648 struct rte_ether_addr mac_addr;
10649 cmdline_fixed_string_t ethertype;
10650 uint16_t ethertype_value;
10651 cmdline_fixed_string_t drop;
10652 cmdline_fixed_string_t queue;
10656 cmdline_parse_token_string_t cmd_ethertype_filter_filter =
10657 TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
10658 filter, "ethertype_filter");
10659 cmdline_parse_token_num_t cmd_ethertype_filter_port_id =
10660 TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result,
10662 cmdline_parse_token_string_t cmd_ethertype_filter_ops =
10663 TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
10665 cmdline_parse_token_string_t cmd_ethertype_filter_mac =
10666 TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
10667 mac, "mac_addr#mac_ignr");
10668 cmdline_parse_token_etheraddr_t cmd_ethertype_filter_mac_addr =
10669 TOKEN_ETHERADDR_INITIALIZER(struct cmd_ethertype_filter_result,
10671 cmdline_parse_token_string_t cmd_ethertype_filter_ethertype =
10672 TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
10673 ethertype, "ethertype");
10674 cmdline_parse_token_num_t cmd_ethertype_filter_ethertype_value =
10675 TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result,
10676 ethertype_value, UINT16);
10677 cmdline_parse_token_string_t cmd_ethertype_filter_drop =
10678 TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
10680 cmdline_parse_token_string_t cmd_ethertype_filter_queue =
10681 TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
10683 cmdline_parse_token_num_t cmd_ethertype_filter_queue_id =
10684 TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result,
10688 cmd_ethertype_filter_parsed(void *parsed_result,
10689 __attribute__((unused)) struct cmdline *cl,
10690 __attribute__((unused)) void *data)
10692 struct cmd_ethertype_filter_result *res = parsed_result;
10693 struct rte_eth_ethertype_filter filter;
10696 ret = rte_eth_dev_filter_supported(res->port_id,
10697 RTE_ETH_FILTER_ETHERTYPE);
10699 printf("ethertype filter is not supported on port %u.\n",
10704 memset(&filter, 0, sizeof(filter));
10705 if (!strcmp(res->mac, "mac_addr")) {
10706 filter.flags |= RTE_ETHTYPE_FLAGS_MAC;
10707 rte_memcpy(&filter.mac_addr, &res->mac_addr,
10708 sizeof(struct rte_ether_addr));
10710 if (!strcmp(res->drop, "drop"))
10711 filter.flags |= RTE_ETHTYPE_FLAGS_DROP;
10712 filter.ether_type = res->ethertype_value;
10713 filter.queue = res->queue_id;
10715 if (!strcmp(res->ops, "add"))
10716 ret = rte_eth_dev_filter_ctrl(res->port_id,
10717 RTE_ETH_FILTER_ETHERTYPE,
10718 RTE_ETH_FILTER_ADD,
10721 ret = rte_eth_dev_filter_ctrl(res->port_id,
10722 RTE_ETH_FILTER_ETHERTYPE,
10723 RTE_ETH_FILTER_DELETE,
10726 printf("ethertype filter programming error: (%s)\n",
10730 cmdline_parse_inst_t cmd_ethertype_filter = {
10731 .f = cmd_ethertype_filter_parsed,
10733 .help_str = "ethertype_filter <port_id> add|del mac_addr|mac_ignr "
10734 "<mac_addr> ethertype <value> drop|fw queue <queue_id>: "
10735 "Add or delete an ethertype filter entry",
10737 (void *)&cmd_ethertype_filter_filter,
10738 (void *)&cmd_ethertype_filter_port_id,
10739 (void *)&cmd_ethertype_filter_ops,
10740 (void *)&cmd_ethertype_filter_mac,
10741 (void *)&cmd_ethertype_filter_mac_addr,
10742 (void *)&cmd_ethertype_filter_ethertype,
10743 (void *)&cmd_ethertype_filter_ethertype_value,
10744 (void *)&cmd_ethertype_filter_drop,
10745 (void *)&cmd_ethertype_filter_queue,
10746 (void *)&cmd_ethertype_filter_queue_id,
10751 /* *** deal with flow director filter *** */
10752 struct cmd_flow_director_result {
10753 cmdline_fixed_string_t flow_director_filter;
10755 cmdline_fixed_string_t mode;
10756 cmdline_fixed_string_t mode_value;
10757 cmdline_fixed_string_t ops;
10758 cmdline_fixed_string_t flow;
10759 cmdline_fixed_string_t flow_type;
10760 cmdline_fixed_string_t ether;
10761 uint16_t ether_type;
10762 cmdline_fixed_string_t src;
10763 cmdline_ipaddr_t ip_src;
10765 cmdline_fixed_string_t dst;
10766 cmdline_ipaddr_t ip_dst;
10768 cmdline_fixed_string_t verify_tag;
10769 uint32_t verify_tag_value;
10770 cmdline_fixed_string_t tos;
10772 cmdline_fixed_string_t proto;
10773 uint8_t proto_value;
10774 cmdline_fixed_string_t ttl;
10776 cmdline_fixed_string_t vlan;
10777 uint16_t vlan_value;
10778 cmdline_fixed_string_t flexbytes;
10779 cmdline_fixed_string_t flexbytes_value;
10780 cmdline_fixed_string_t pf_vf;
10781 cmdline_fixed_string_t drop;
10782 cmdline_fixed_string_t queue;
10784 cmdline_fixed_string_t fd_id;
10785 uint32_t fd_id_value;
10786 cmdline_fixed_string_t mac;
10787 struct rte_ether_addr mac_addr;
10788 cmdline_fixed_string_t tunnel;
10789 cmdline_fixed_string_t tunnel_type;
10790 cmdline_fixed_string_t tunnel_id;
10791 uint32_t tunnel_id_value;
10792 cmdline_fixed_string_t packet;
10797 parse_flexbytes(const char *q_arg, uint8_t *flexbytes, uint16_t max_num)
10800 const char *p, *p0 = q_arg;
10802 unsigned long int_fld;
10803 char *str_fld[max_num];
10808 p = strchr(p0, '(');
10812 p0 = strchr(p, ')');
10817 if (size >= sizeof(s))
10820 snprintf(s, sizeof(s), "%.*s", size, p);
10821 ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ',');
10822 if (ret < 0 || ret > max_num)
10824 for (i = 0; i < ret; i++) {
10826 int_fld = strtoul(str_fld[i], &end, 0);
10827 if (errno != 0 || *end != '\0' || int_fld > UINT8_MAX)
10829 flexbytes[i] = (uint8_t)int_fld;
10835 str2flowtype(char *string)
10838 static const struct {
10841 } flowtype_str[] = {
10842 {"raw", RTE_ETH_FLOW_RAW},
10843 {"ipv4", RTE_ETH_FLOW_IPV4},
10844 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
10845 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
10846 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
10847 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
10848 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
10849 {"ipv6", RTE_ETH_FLOW_IPV6},
10850 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
10851 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
10852 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
10853 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
10854 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
10855 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
10858 for (i = 0; i < RTE_DIM(flowtype_str); i++) {
10859 if (!strcmp(flowtype_str[i].str, string))
10860 return flowtype_str[i].type;
10863 if (isdigit(string[0]) && atoi(string) > 0 && atoi(string) < 64)
10864 return (uint16_t)atoi(string);
10866 return RTE_ETH_FLOW_UNKNOWN;
10869 static enum rte_eth_fdir_tunnel_type
10870 str2fdir_tunneltype(char *string)
10874 static const struct {
10876 enum rte_eth_fdir_tunnel_type type;
10877 } tunneltype_str[] = {
10878 {"NVGRE", RTE_FDIR_TUNNEL_TYPE_NVGRE},
10879 {"VxLAN", RTE_FDIR_TUNNEL_TYPE_VXLAN},
10882 for (i = 0; i < RTE_DIM(tunneltype_str); i++) {
10883 if (!strcmp(tunneltype_str[i].str, string))
10884 return tunneltype_str[i].type;
10886 return RTE_FDIR_TUNNEL_TYPE_UNKNOWN;
10889 #define IPV4_ADDR_TO_UINT(ip_addr, ip) \
10891 if ((ip_addr).family == AF_INET) \
10892 (ip) = (ip_addr).addr.ipv4.s_addr; \
10894 printf("invalid parameter.\n"); \
10899 #define IPV6_ADDR_TO_ARRAY(ip_addr, ip) \
10901 if ((ip_addr).family == AF_INET6) \
10902 rte_memcpy(&(ip), \
10903 &((ip_addr).addr.ipv6), \
10904 sizeof(struct in6_addr)); \
10906 printf("invalid parameter.\n"); \
10912 cmd_flow_director_filter_parsed(void *parsed_result,
10913 __attribute__((unused)) struct cmdline *cl,
10914 __attribute__((unused)) void *data)
10916 struct cmd_flow_director_result *res = parsed_result;
10917 struct rte_eth_fdir_filter entry;
10918 uint8_t flexbytes[RTE_ETH_FDIR_MAX_FLEXLEN];
10920 unsigned long vf_id;
10923 ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_FDIR);
10925 printf("flow director is not supported on port %u.\n",
10929 memset(flexbytes, 0, sizeof(flexbytes));
10930 memset(&entry, 0, sizeof(struct rte_eth_fdir_filter));
10932 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
10933 if (strcmp(res->mode_value, "MAC-VLAN")) {
10934 printf("Please set mode to MAC-VLAN.\n");
10937 } else if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL) {
10938 if (strcmp(res->mode_value, "Tunnel")) {
10939 printf("Please set mode to Tunnel.\n");
10943 if (!strcmp(res->mode_value, "raw")) {
10944 #ifdef RTE_LIBRTE_I40E_PMD
10945 struct rte_pmd_i40e_flow_type_mapping
10946 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX];
10947 struct rte_pmd_i40e_pkt_template_conf conf;
10948 uint16_t flow_type = str2flowtype(res->flow_type);
10949 uint16_t i, port = res->port_id;
10952 memset(&conf, 0, sizeof(conf));
10954 if (flow_type == RTE_ETH_FLOW_UNKNOWN) {
10955 printf("Invalid flow type specified.\n");
10958 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id,
10962 if (mapping[flow_type].pctype == 0ULL) {
10963 printf("Invalid flow type specified.\n");
10966 for (i = 0; i < RTE_PMD_I40E_PCTYPE_MAX; i++) {
10967 if (mapping[flow_type].pctype & (1ULL << i)) {
10968 conf.input.pctype = i;
10973 conf.input.packet = open_file(res->filepath,
10974 &conf.input.length);
10975 if (!conf.input.packet)
10977 if (!strcmp(res->drop, "drop"))
10978 conf.action.behavior =
10979 RTE_PMD_I40E_PKT_TEMPLATE_REJECT;
10981 conf.action.behavior =
10982 RTE_PMD_I40E_PKT_TEMPLATE_ACCEPT;
10983 conf.action.report_status =
10984 RTE_PMD_I40E_PKT_TEMPLATE_REPORT_ID;
10985 conf.action.rx_queue = res->queue_id;
10986 conf.soft_id = res->fd_id_value;
10987 add = strcmp(res->ops, "del") ? 1 : 0;
10988 ret = rte_pmd_i40e_flow_add_del_packet_template(port,
10992 printf("flow director config error: (%s)\n",
10994 close_file(conf.input.packet);
10997 } else if (strcmp(res->mode_value, "IP")) {
10998 printf("Please set mode to IP or raw.\n");
11001 entry.input.flow_type = str2flowtype(res->flow_type);
11004 ret = parse_flexbytes(res->flexbytes_value,
11006 RTE_ETH_FDIR_MAX_FLEXLEN);
11008 printf("error: Cannot parse flexbytes input.\n");
11012 switch (entry.input.flow_type) {
11013 case RTE_ETH_FLOW_FRAG_IPV4:
11014 case RTE_ETH_FLOW_NONFRAG_IPV4_OTHER:
11015 entry.input.flow.ip4_flow.proto = res->proto_value;
11017 case RTE_ETH_FLOW_NONFRAG_IPV4_UDP:
11018 case RTE_ETH_FLOW_NONFRAG_IPV4_TCP:
11019 IPV4_ADDR_TO_UINT(res->ip_dst,
11020 entry.input.flow.ip4_flow.dst_ip);
11021 IPV4_ADDR_TO_UINT(res->ip_src,
11022 entry.input.flow.ip4_flow.src_ip);
11023 entry.input.flow.ip4_flow.tos = res->tos_value;
11024 entry.input.flow.ip4_flow.ttl = res->ttl_value;
11025 /* need convert to big endian. */
11026 entry.input.flow.udp4_flow.dst_port =
11027 rte_cpu_to_be_16(res->port_dst);
11028 entry.input.flow.udp4_flow.src_port =
11029 rte_cpu_to_be_16(res->port_src);
11031 case RTE_ETH_FLOW_NONFRAG_IPV4_SCTP:
11032 IPV4_ADDR_TO_UINT(res->ip_dst,
11033 entry.input.flow.sctp4_flow.ip.dst_ip);
11034 IPV4_ADDR_TO_UINT(res->ip_src,
11035 entry.input.flow.sctp4_flow.ip.src_ip);
11036 entry.input.flow.ip4_flow.tos = res->tos_value;
11037 entry.input.flow.ip4_flow.ttl = res->ttl_value;
11038 /* need convert to big endian. */
11039 entry.input.flow.sctp4_flow.dst_port =
11040 rte_cpu_to_be_16(res->port_dst);
11041 entry.input.flow.sctp4_flow.src_port =
11042 rte_cpu_to_be_16(res->port_src);
11043 entry.input.flow.sctp4_flow.verify_tag =
11044 rte_cpu_to_be_32(res->verify_tag_value);
11046 case RTE_ETH_FLOW_FRAG_IPV6:
11047 case RTE_ETH_FLOW_NONFRAG_IPV6_OTHER:
11048 entry.input.flow.ipv6_flow.proto = res->proto_value;
11050 case RTE_ETH_FLOW_NONFRAG_IPV6_UDP:
11051 case RTE_ETH_FLOW_NONFRAG_IPV6_TCP:
11052 IPV6_ADDR_TO_ARRAY(res->ip_dst,
11053 entry.input.flow.ipv6_flow.dst_ip);
11054 IPV6_ADDR_TO_ARRAY(res->ip_src,
11055 entry.input.flow.ipv6_flow.src_ip);
11056 entry.input.flow.ipv6_flow.tc = res->tos_value;
11057 entry.input.flow.ipv6_flow.hop_limits = res->ttl_value;
11058 /* need convert to big endian. */
11059 entry.input.flow.udp6_flow.dst_port =
11060 rte_cpu_to_be_16(res->port_dst);
11061 entry.input.flow.udp6_flow.src_port =
11062 rte_cpu_to_be_16(res->port_src);
11064 case RTE_ETH_FLOW_NONFRAG_IPV6_SCTP:
11065 IPV6_ADDR_TO_ARRAY(res->ip_dst,
11066 entry.input.flow.sctp6_flow.ip.dst_ip);
11067 IPV6_ADDR_TO_ARRAY(res->ip_src,
11068 entry.input.flow.sctp6_flow.ip.src_ip);
11069 entry.input.flow.ipv6_flow.tc = res->tos_value;
11070 entry.input.flow.ipv6_flow.hop_limits = res->ttl_value;
11071 /* need convert to big endian. */
11072 entry.input.flow.sctp6_flow.dst_port =
11073 rte_cpu_to_be_16(res->port_dst);
11074 entry.input.flow.sctp6_flow.src_port =
11075 rte_cpu_to_be_16(res->port_src);
11076 entry.input.flow.sctp6_flow.verify_tag =
11077 rte_cpu_to_be_32(res->verify_tag_value);
11079 case RTE_ETH_FLOW_L2_PAYLOAD:
11080 entry.input.flow.l2_flow.ether_type =
11081 rte_cpu_to_be_16(res->ether_type);
11087 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN)
11088 rte_memcpy(&entry.input.flow.mac_vlan_flow.mac_addr,
11090 sizeof(struct rte_ether_addr));
11092 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL) {
11093 rte_memcpy(&entry.input.flow.tunnel_flow.mac_addr,
11095 sizeof(struct rte_ether_addr));
11096 entry.input.flow.tunnel_flow.tunnel_type =
11097 str2fdir_tunneltype(res->tunnel_type);
11098 entry.input.flow.tunnel_flow.tunnel_id =
11099 rte_cpu_to_be_32(res->tunnel_id_value);
11102 rte_memcpy(entry.input.flow_ext.flexbytes,
11104 RTE_ETH_FDIR_MAX_FLEXLEN);
11106 entry.input.flow_ext.vlan_tci = rte_cpu_to_be_16(res->vlan_value);
11108 entry.action.flex_off = 0; /*use 0 by default */
11109 if (!strcmp(res->drop, "drop"))
11110 entry.action.behavior = RTE_ETH_FDIR_REJECT;
11112 entry.action.behavior = RTE_ETH_FDIR_ACCEPT;
11114 if (fdir_conf.mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN &&
11115 fdir_conf.mode != RTE_FDIR_MODE_PERFECT_TUNNEL) {
11116 if (!strcmp(res->pf_vf, "pf"))
11117 entry.input.flow_ext.is_vf = 0;
11118 else if (!strncmp(res->pf_vf, "vf", 2)) {
11119 struct rte_eth_dev_info dev_info;
11121 ret = eth_dev_info_get_print_err(res->port_id,
11127 vf_id = strtoul(res->pf_vf + 2, &end, 10);
11128 if (errno != 0 || *end != '\0' ||
11129 vf_id >= dev_info.max_vfs) {
11130 printf("invalid parameter %s.\n", res->pf_vf);
11133 entry.input.flow_ext.is_vf = 1;
11134 entry.input.flow_ext.dst_id = (uint16_t)vf_id;
11136 printf("invalid parameter %s.\n", res->pf_vf);
11141 /* set to report FD ID by default */
11142 entry.action.report_status = RTE_ETH_FDIR_REPORT_ID;
11143 entry.action.rx_queue = res->queue_id;
11144 entry.soft_id = res->fd_id_value;
11145 if (!strcmp(res->ops, "add"))
11146 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
11147 RTE_ETH_FILTER_ADD, &entry);
11148 else if (!strcmp(res->ops, "del"))
11149 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
11150 RTE_ETH_FILTER_DELETE, &entry);
11152 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
11153 RTE_ETH_FILTER_UPDATE, &entry);
11155 printf("flow director programming error: (%s)\n",
11159 cmdline_parse_token_string_t cmd_flow_director_filter =
11160 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11161 flow_director_filter, "flow_director_filter");
11162 cmdline_parse_token_num_t cmd_flow_director_port_id =
11163 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
11165 cmdline_parse_token_string_t cmd_flow_director_ops =
11166 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11167 ops, "add#del#update");
11168 cmdline_parse_token_string_t cmd_flow_director_flow =
11169 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11171 cmdline_parse_token_string_t cmd_flow_director_flow_type =
11172 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11174 cmdline_parse_token_string_t cmd_flow_director_ether =
11175 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11177 cmdline_parse_token_num_t cmd_flow_director_ether_type =
11178 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
11179 ether_type, UINT16);
11180 cmdline_parse_token_string_t cmd_flow_director_src =
11181 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11183 cmdline_parse_token_ipaddr_t cmd_flow_director_ip_src =
11184 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_result,
11186 cmdline_parse_token_num_t cmd_flow_director_port_src =
11187 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
11189 cmdline_parse_token_string_t cmd_flow_director_dst =
11190 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11192 cmdline_parse_token_ipaddr_t cmd_flow_director_ip_dst =
11193 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_result,
11195 cmdline_parse_token_num_t cmd_flow_director_port_dst =
11196 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
11198 cmdline_parse_token_string_t cmd_flow_director_verify_tag =
11199 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11200 verify_tag, "verify_tag");
11201 cmdline_parse_token_num_t cmd_flow_director_verify_tag_value =
11202 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
11203 verify_tag_value, UINT32);
11204 cmdline_parse_token_string_t cmd_flow_director_tos =
11205 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11207 cmdline_parse_token_num_t cmd_flow_director_tos_value =
11208 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
11210 cmdline_parse_token_string_t cmd_flow_director_proto =
11211 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11213 cmdline_parse_token_num_t cmd_flow_director_proto_value =
11214 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
11215 proto_value, UINT8);
11216 cmdline_parse_token_string_t cmd_flow_director_ttl =
11217 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11219 cmdline_parse_token_num_t cmd_flow_director_ttl_value =
11220 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
11222 cmdline_parse_token_string_t cmd_flow_director_vlan =
11223 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11225 cmdline_parse_token_num_t cmd_flow_director_vlan_value =
11226 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
11227 vlan_value, UINT16);
11228 cmdline_parse_token_string_t cmd_flow_director_flexbytes =
11229 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11230 flexbytes, "flexbytes");
11231 cmdline_parse_token_string_t cmd_flow_director_flexbytes_value =
11232 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11233 flexbytes_value, NULL);
11234 cmdline_parse_token_string_t cmd_flow_director_drop =
11235 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11237 cmdline_parse_token_string_t cmd_flow_director_pf_vf =
11238 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11240 cmdline_parse_token_string_t cmd_flow_director_queue =
11241 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11243 cmdline_parse_token_num_t cmd_flow_director_queue_id =
11244 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
11246 cmdline_parse_token_string_t cmd_flow_director_fd_id =
11247 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11249 cmdline_parse_token_num_t cmd_flow_director_fd_id_value =
11250 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
11251 fd_id_value, UINT32);
11253 cmdline_parse_token_string_t cmd_flow_director_mode =
11254 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11256 cmdline_parse_token_string_t cmd_flow_director_mode_ip =
11257 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11259 cmdline_parse_token_string_t cmd_flow_director_mode_mac_vlan =
11260 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11261 mode_value, "MAC-VLAN");
11262 cmdline_parse_token_string_t cmd_flow_director_mode_tunnel =
11263 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11264 mode_value, "Tunnel");
11265 cmdline_parse_token_string_t cmd_flow_director_mode_raw =
11266 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11267 mode_value, "raw");
11268 cmdline_parse_token_string_t cmd_flow_director_mac =
11269 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11271 cmdline_parse_token_etheraddr_t cmd_flow_director_mac_addr =
11272 TOKEN_ETHERADDR_INITIALIZER(struct cmd_flow_director_result,
11274 cmdline_parse_token_string_t cmd_flow_director_tunnel =
11275 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11277 cmdline_parse_token_string_t cmd_flow_director_tunnel_type =
11278 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11279 tunnel_type, "NVGRE#VxLAN");
11280 cmdline_parse_token_string_t cmd_flow_director_tunnel_id =
11281 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11282 tunnel_id, "tunnel-id");
11283 cmdline_parse_token_num_t cmd_flow_director_tunnel_id_value =
11284 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
11285 tunnel_id_value, UINT32);
11286 cmdline_parse_token_string_t cmd_flow_director_packet =
11287 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11289 cmdline_parse_token_string_t cmd_flow_director_filepath =
11290 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
11293 cmdline_parse_inst_t cmd_add_del_ip_flow_director = {
11294 .f = cmd_flow_director_filter_parsed,
11296 .help_str = "flow_director_filter <port_id> mode IP add|del|update flow"
11297 " ipv4-other|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|"
11298 "ipv6-other|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|"
11299 "l2_payload src <src_ip> dst <dst_ip> tos <tos_value> "
11300 "proto <proto_value> ttl <ttl_value> vlan <vlan_value> "
11301 "flexbytes <flexbyte_values> drop|fw <pf_vf> queue <queue_id> "
11302 "fd_id <fd_id_value>: "
11303 "Add or delete an ip flow director entry on NIC",
11305 (void *)&cmd_flow_director_filter,
11306 (void *)&cmd_flow_director_port_id,
11307 (void *)&cmd_flow_director_mode,
11308 (void *)&cmd_flow_director_mode_ip,
11309 (void *)&cmd_flow_director_ops,
11310 (void *)&cmd_flow_director_flow,
11311 (void *)&cmd_flow_director_flow_type,
11312 (void *)&cmd_flow_director_src,
11313 (void *)&cmd_flow_director_ip_src,
11314 (void *)&cmd_flow_director_dst,
11315 (void *)&cmd_flow_director_ip_dst,
11316 (void *)&cmd_flow_director_tos,
11317 (void *)&cmd_flow_director_tos_value,
11318 (void *)&cmd_flow_director_proto,
11319 (void *)&cmd_flow_director_proto_value,
11320 (void *)&cmd_flow_director_ttl,
11321 (void *)&cmd_flow_director_ttl_value,
11322 (void *)&cmd_flow_director_vlan,
11323 (void *)&cmd_flow_director_vlan_value,
11324 (void *)&cmd_flow_director_flexbytes,
11325 (void *)&cmd_flow_director_flexbytes_value,
11326 (void *)&cmd_flow_director_drop,
11327 (void *)&cmd_flow_director_pf_vf,
11328 (void *)&cmd_flow_director_queue,
11329 (void *)&cmd_flow_director_queue_id,
11330 (void *)&cmd_flow_director_fd_id,
11331 (void *)&cmd_flow_director_fd_id_value,
11336 cmdline_parse_inst_t cmd_add_del_udp_flow_director = {
11337 .f = cmd_flow_director_filter_parsed,
11339 .help_str = "flow_director_filter ... : Add or delete an udp/tcp flow "
11340 "director entry on NIC",
11342 (void *)&cmd_flow_director_filter,
11343 (void *)&cmd_flow_director_port_id,
11344 (void *)&cmd_flow_director_mode,
11345 (void *)&cmd_flow_director_mode_ip,
11346 (void *)&cmd_flow_director_ops,
11347 (void *)&cmd_flow_director_flow,
11348 (void *)&cmd_flow_director_flow_type,
11349 (void *)&cmd_flow_director_src,
11350 (void *)&cmd_flow_director_ip_src,
11351 (void *)&cmd_flow_director_port_src,
11352 (void *)&cmd_flow_director_dst,
11353 (void *)&cmd_flow_director_ip_dst,
11354 (void *)&cmd_flow_director_port_dst,
11355 (void *)&cmd_flow_director_tos,
11356 (void *)&cmd_flow_director_tos_value,
11357 (void *)&cmd_flow_director_ttl,
11358 (void *)&cmd_flow_director_ttl_value,
11359 (void *)&cmd_flow_director_vlan,
11360 (void *)&cmd_flow_director_vlan_value,
11361 (void *)&cmd_flow_director_flexbytes,
11362 (void *)&cmd_flow_director_flexbytes_value,
11363 (void *)&cmd_flow_director_drop,
11364 (void *)&cmd_flow_director_pf_vf,
11365 (void *)&cmd_flow_director_queue,
11366 (void *)&cmd_flow_director_queue_id,
11367 (void *)&cmd_flow_director_fd_id,
11368 (void *)&cmd_flow_director_fd_id_value,
11373 cmdline_parse_inst_t cmd_add_del_sctp_flow_director = {
11374 .f = cmd_flow_director_filter_parsed,
11376 .help_str = "flow_director_filter ... : Add or delete a sctp flow "
11377 "director entry on NIC",
11379 (void *)&cmd_flow_director_filter,
11380 (void *)&cmd_flow_director_port_id,
11381 (void *)&cmd_flow_director_mode,
11382 (void *)&cmd_flow_director_mode_ip,
11383 (void *)&cmd_flow_director_ops,
11384 (void *)&cmd_flow_director_flow,
11385 (void *)&cmd_flow_director_flow_type,
11386 (void *)&cmd_flow_director_src,
11387 (void *)&cmd_flow_director_ip_src,
11388 (void *)&cmd_flow_director_port_src,
11389 (void *)&cmd_flow_director_dst,
11390 (void *)&cmd_flow_director_ip_dst,
11391 (void *)&cmd_flow_director_port_dst,
11392 (void *)&cmd_flow_director_verify_tag,
11393 (void *)&cmd_flow_director_verify_tag_value,
11394 (void *)&cmd_flow_director_tos,
11395 (void *)&cmd_flow_director_tos_value,
11396 (void *)&cmd_flow_director_ttl,
11397 (void *)&cmd_flow_director_ttl_value,
11398 (void *)&cmd_flow_director_vlan,
11399 (void *)&cmd_flow_director_vlan_value,
11400 (void *)&cmd_flow_director_flexbytes,
11401 (void *)&cmd_flow_director_flexbytes_value,
11402 (void *)&cmd_flow_director_drop,
11403 (void *)&cmd_flow_director_pf_vf,
11404 (void *)&cmd_flow_director_queue,
11405 (void *)&cmd_flow_director_queue_id,
11406 (void *)&cmd_flow_director_fd_id,
11407 (void *)&cmd_flow_director_fd_id_value,
11412 cmdline_parse_inst_t cmd_add_del_l2_flow_director = {
11413 .f = cmd_flow_director_filter_parsed,
11415 .help_str = "flow_director_filter ... : Add or delete a L2 flow "
11416 "director entry on NIC",
11418 (void *)&cmd_flow_director_filter,
11419 (void *)&cmd_flow_director_port_id,
11420 (void *)&cmd_flow_director_mode,
11421 (void *)&cmd_flow_director_mode_ip,
11422 (void *)&cmd_flow_director_ops,
11423 (void *)&cmd_flow_director_flow,
11424 (void *)&cmd_flow_director_flow_type,
11425 (void *)&cmd_flow_director_ether,
11426 (void *)&cmd_flow_director_ether_type,
11427 (void *)&cmd_flow_director_flexbytes,
11428 (void *)&cmd_flow_director_flexbytes_value,
11429 (void *)&cmd_flow_director_drop,
11430 (void *)&cmd_flow_director_pf_vf,
11431 (void *)&cmd_flow_director_queue,
11432 (void *)&cmd_flow_director_queue_id,
11433 (void *)&cmd_flow_director_fd_id,
11434 (void *)&cmd_flow_director_fd_id_value,
11439 cmdline_parse_inst_t cmd_add_del_mac_vlan_flow_director = {
11440 .f = cmd_flow_director_filter_parsed,
11442 .help_str = "flow_director_filter ... : Add or delete a MAC VLAN flow "
11443 "director entry on NIC",
11445 (void *)&cmd_flow_director_filter,
11446 (void *)&cmd_flow_director_port_id,
11447 (void *)&cmd_flow_director_mode,
11448 (void *)&cmd_flow_director_mode_mac_vlan,
11449 (void *)&cmd_flow_director_ops,
11450 (void *)&cmd_flow_director_mac,
11451 (void *)&cmd_flow_director_mac_addr,
11452 (void *)&cmd_flow_director_vlan,
11453 (void *)&cmd_flow_director_vlan_value,
11454 (void *)&cmd_flow_director_flexbytes,
11455 (void *)&cmd_flow_director_flexbytes_value,
11456 (void *)&cmd_flow_director_drop,
11457 (void *)&cmd_flow_director_queue,
11458 (void *)&cmd_flow_director_queue_id,
11459 (void *)&cmd_flow_director_fd_id,
11460 (void *)&cmd_flow_director_fd_id_value,
11465 cmdline_parse_inst_t cmd_add_del_tunnel_flow_director = {
11466 .f = cmd_flow_director_filter_parsed,
11468 .help_str = "flow_director_filter ... : Add or delete a tunnel flow "
11469 "director entry on NIC",
11471 (void *)&cmd_flow_director_filter,
11472 (void *)&cmd_flow_director_port_id,
11473 (void *)&cmd_flow_director_mode,
11474 (void *)&cmd_flow_director_mode_tunnel,
11475 (void *)&cmd_flow_director_ops,
11476 (void *)&cmd_flow_director_mac,
11477 (void *)&cmd_flow_director_mac_addr,
11478 (void *)&cmd_flow_director_vlan,
11479 (void *)&cmd_flow_director_vlan_value,
11480 (void *)&cmd_flow_director_tunnel,
11481 (void *)&cmd_flow_director_tunnel_type,
11482 (void *)&cmd_flow_director_tunnel_id,
11483 (void *)&cmd_flow_director_tunnel_id_value,
11484 (void *)&cmd_flow_director_flexbytes,
11485 (void *)&cmd_flow_director_flexbytes_value,
11486 (void *)&cmd_flow_director_drop,
11487 (void *)&cmd_flow_director_queue,
11488 (void *)&cmd_flow_director_queue_id,
11489 (void *)&cmd_flow_director_fd_id,
11490 (void *)&cmd_flow_director_fd_id_value,
11495 cmdline_parse_inst_t cmd_add_del_raw_flow_director = {
11496 .f = cmd_flow_director_filter_parsed,
11498 .help_str = "flow_director_filter ... : Add or delete a raw flow "
11499 "director entry on NIC",
11501 (void *)&cmd_flow_director_filter,
11502 (void *)&cmd_flow_director_port_id,
11503 (void *)&cmd_flow_director_mode,
11504 (void *)&cmd_flow_director_mode_raw,
11505 (void *)&cmd_flow_director_ops,
11506 (void *)&cmd_flow_director_flow,
11507 (void *)&cmd_flow_director_flow_type,
11508 (void *)&cmd_flow_director_drop,
11509 (void *)&cmd_flow_director_queue,
11510 (void *)&cmd_flow_director_queue_id,
11511 (void *)&cmd_flow_director_fd_id,
11512 (void *)&cmd_flow_director_fd_id_value,
11513 (void *)&cmd_flow_director_packet,
11514 (void *)&cmd_flow_director_filepath,
11519 struct cmd_flush_flow_director_result {
11520 cmdline_fixed_string_t flush_flow_director;
11524 cmdline_parse_token_string_t cmd_flush_flow_director_flush =
11525 TOKEN_STRING_INITIALIZER(struct cmd_flush_flow_director_result,
11526 flush_flow_director, "flush_flow_director");
11527 cmdline_parse_token_num_t cmd_flush_flow_director_port_id =
11528 TOKEN_NUM_INITIALIZER(struct cmd_flush_flow_director_result,
11532 cmd_flush_flow_director_parsed(void *parsed_result,
11533 __attribute__((unused)) struct cmdline *cl,
11534 __attribute__((unused)) void *data)
11536 struct cmd_flow_director_result *res = parsed_result;
11539 ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_FDIR);
11541 printf("flow director is not supported on port %u.\n",
11546 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
11547 RTE_ETH_FILTER_FLUSH, NULL);
11549 printf("flow director table flushing error: (%s)\n",
11553 cmdline_parse_inst_t cmd_flush_flow_director = {
11554 .f = cmd_flush_flow_director_parsed,
11556 .help_str = "flush_flow_director <port_id>: "
11557 "Flush all flow director entries of a device on NIC",
11559 (void *)&cmd_flush_flow_director_flush,
11560 (void *)&cmd_flush_flow_director_port_id,
11565 /* *** deal with flow director mask *** */
11566 struct cmd_flow_director_mask_result {
11567 cmdline_fixed_string_t flow_director_mask;
11569 cmdline_fixed_string_t mode;
11570 cmdline_fixed_string_t mode_value;
11571 cmdline_fixed_string_t vlan;
11572 uint16_t vlan_mask;
11573 cmdline_fixed_string_t src_mask;
11574 cmdline_ipaddr_t ipv4_src;
11575 cmdline_ipaddr_t ipv6_src;
11577 cmdline_fixed_string_t dst_mask;
11578 cmdline_ipaddr_t ipv4_dst;
11579 cmdline_ipaddr_t ipv6_dst;
11581 cmdline_fixed_string_t mac;
11582 uint8_t mac_addr_byte_mask;
11583 cmdline_fixed_string_t tunnel_id;
11584 uint32_t tunnel_id_mask;
11585 cmdline_fixed_string_t tunnel_type;
11586 uint8_t tunnel_type_mask;
11590 cmd_flow_director_mask_parsed(void *parsed_result,
11591 __attribute__((unused)) struct cmdline *cl,
11592 __attribute__((unused)) void *data)
11594 struct cmd_flow_director_mask_result *res = parsed_result;
11595 struct rte_eth_fdir_masks *mask;
11596 struct rte_port *port;
11598 port = &ports[res->port_id];
11599 /** Check if the port is not started **/
11600 if (port->port_status != RTE_PORT_STOPPED) {
11601 printf("Please stop port %d first\n", res->port_id);
11605 mask = &port->dev_conf.fdir_conf.mask;
11607 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
11608 if (strcmp(res->mode_value, "MAC-VLAN")) {
11609 printf("Please set mode to MAC-VLAN.\n");
11613 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
11614 } else if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL) {
11615 if (strcmp(res->mode_value, "Tunnel")) {
11616 printf("Please set mode to Tunnel.\n");
11620 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
11621 mask->mac_addr_byte_mask = res->mac_addr_byte_mask;
11622 mask->tunnel_id_mask = rte_cpu_to_be_32(res->tunnel_id_mask);
11623 mask->tunnel_type_mask = res->tunnel_type_mask;
11625 if (strcmp(res->mode_value, "IP")) {
11626 printf("Please set mode to IP.\n");
11630 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
11631 IPV4_ADDR_TO_UINT(res->ipv4_src, mask->ipv4_mask.src_ip);
11632 IPV4_ADDR_TO_UINT(res->ipv4_dst, mask->ipv4_mask.dst_ip);
11633 IPV6_ADDR_TO_ARRAY(res->ipv6_src, mask->ipv6_mask.src_ip);
11634 IPV6_ADDR_TO_ARRAY(res->ipv6_dst, mask->ipv6_mask.dst_ip);
11635 mask->src_port_mask = rte_cpu_to_be_16(res->port_src);
11636 mask->dst_port_mask = rte_cpu_to_be_16(res->port_dst);
11639 cmd_reconfig_device_queue(res->port_id, 1, 1);
11642 cmdline_parse_token_string_t cmd_flow_director_mask =
11643 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
11644 flow_director_mask, "flow_director_mask");
11645 cmdline_parse_token_num_t cmd_flow_director_mask_port_id =
11646 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
11648 cmdline_parse_token_string_t cmd_flow_director_mask_vlan =
11649 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
11651 cmdline_parse_token_num_t cmd_flow_director_mask_vlan_value =
11652 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
11653 vlan_mask, UINT16);
11654 cmdline_parse_token_string_t cmd_flow_director_mask_src =
11655 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
11656 src_mask, "src_mask");
11657 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_src =
11658 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
11660 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_src =
11661 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
11663 cmdline_parse_token_num_t cmd_flow_director_mask_port_src =
11664 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
11666 cmdline_parse_token_string_t cmd_flow_director_mask_dst =
11667 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
11668 dst_mask, "dst_mask");
11669 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_dst =
11670 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
11672 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_dst =
11673 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
11675 cmdline_parse_token_num_t cmd_flow_director_mask_port_dst =
11676 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
11679 cmdline_parse_token_string_t cmd_flow_director_mask_mode =
11680 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
11682 cmdline_parse_token_string_t cmd_flow_director_mask_mode_ip =
11683 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
11685 cmdline_parse_token_string_t cmd_flow_director_mask_mode_mac_vlan =
11686 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
11687 mode_value, "MAC-VLAN");
11688 cmdline_parse_token_string_t cmd_flow_director_mask_mode_tunnel =
11689 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
11690 mode_value, "Tunnel");
11691 cmdline_parse_token_string_t cmd_flow_director_mask_mac =
11692 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
11694 cmdline_parse_token_num_t cmd_flow_director_mask_mac_value =
11695 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
11696 mac_addr_byte_mask, UINT8);
11697 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_type =
11698 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
11699 tunnel_type, "tunnel-type");
11700 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_type_value =
11701 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
11702 tunnel_type_mask, UINT8);
11703 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_id =
11704 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
11705 tunnel_id, "tunnel-id");
11706 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_id_value =
11707 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
11708 tunnel_id_mask, UINT32);
11710 cmdline_parse_inst_t cmd_set_flow_director_ip_mask = {
11711 .f = cmd_flow_director_mask_parsed,
11713 .help_str = "flow_director_mask ... : "
11714 "Set IP mode flow director's mask on NIC",
11716 (void *)&cmd_flow_director_mask,
11717 (void *)&cmd_flow_director_mask_port_id,
11718 (void *)&cmd_flow_director_mask_mode,
11719 (void *)&cmd_flow_director_mask_mode_ip,
11720 (void *)&cmd_flow_director_mask_vlan,
11721 (void *)&cmd_flow_director_mask_vlan_value,
11722 (void *)&cmd_flow_director_mask_src,
11723 (void *)&cmd_flow_director_mask_ipv4_src,
11724 (void *)&cmd_flow_director_mask_ipv6_src,
11725 (void *)&cmd_flow_director_mask_port_src,
11726 (void *)&cmd_flow_director_mask_dst,
11727 (void *)&cmd_flow_director_mask_ipv4_dst,
11728 (void *)&cmd_flow_director_mask_ipv6_dst,
11729 (void *)&cmd_flow_director_mask_port_dst,
11734 cmdline_parse_inst_t cmd_set_flow_director_mac_vlan_mask = {
11735 .f = cmd_flow_director_mask_parsed,
11737 .help_str = "flow_director_mask ... : Set MAC VLAN mode "
11738 "flow director's mask on NIC",
11740 (void *)&cmd_flow_director_mask,
11741 (void *)&cmd_flow_director_mask_port_id,
11742 (void *)&cmd_flow_director_mask_mode,
11743 (void *)&cmd_flow_director_mask_mode_mac_vlan,
11744 (void *)&cmd_flow_director_mask_vlan,
11745 (void *)&cmd_flow_director_mask_vlan_value,
11750 cmdline_parse_inst_t cmd_set_flow_director_tunnel_mask = {
11751 .f = cmd_flow_director_mask_parsed,
11753 .help_str = "flow_director_mask ... : Set tunnel mode "
11754 "flow director's mask on NIC",
11756 (void *)&cmd_flow_director_mask,
11757 (void *)&cmd_flow_director_mask_port_id,
11758 (void *)&cmd_flow_director_mask_mode,
11759 (void *)&cmd_flow_director_mask_mode_tunnel,
11760 (void *)&cmd_flow_director_mask_vlan,
11761 (void *)&cmd_flow_director_mask_vlan_value,
11762 (void *)&cmd_flow_director_mask_mac,
11763 (void *)&cmd_flow_director_mask_mac_value,
11764 (void *)&cmd_flow_director_mask_tunnel_type,
11765 (void *)&cmd_flow_director_mask_tunnel_type_value,
11766 (void *)&cmd_flow_director_mask_tunnel_id,
11767 (void *)&cmd_flow_director_mask_tunnel_id_value,
11772 /* *** deal with flow director mask on flexible payload *** */
11773 struct cmd_flow_director_flex_mask_result {
11774 cmdline_fixed_string_t flow_director_flexmask;
11776 cmdline_fixed_string_t flow;
11777 cmdline_fixed_string_t flow_type;
11778 cmdline_fixed_string_t mask;
11782 cmd_flow_director_flex_mask_parsed(void *parsed_result,
11783 __attribute__((unused)) struct cmdline *cl,
11784 __attribute__((unused)) void *data)
11786 struct cmd_flow_director_flex_mask_result *res = parsed_result;
11787 struct rte_eth_fdir_info fdir_info;
11788 struct rte_eth_fdir_flex_mask flex_mask;
11789 struct rte_port *port;
11790 uint64_t flow_type_mask;
11794 port = &ports[res->port_id];
11795 /** Check if the port is not started **/
11796 if (port->port_status != RTE_PORT_STOPPED) {
11797 printf("Please stop port %d first\n", res->port_id);
11801 memset(&flex_mask, 0, sizeof(struct rte_eth_fdir_flex_mask));
11802 ret = parse_flexbytes(res->mask,
11804 RTE_ETH_FDIR_MAX_FLEXLEN);
11806 printf("error: Cannot parse mask input.\n");
11810 memset(&fdir_info, 0, sizeof(fdir_info));
11811 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
11812 RTE_ETH_FILTER_INFO, &fdir_info);
11814 printf("Cannot get FDir filter info\n");
11818 if (!strcmp(res->flow_type, "none")) {
11819 /* means don't specify the flow type */
11820 flex_mask.flow_type = RTE_ETH_FLOW_UNKNOWN;
11821 for (i = 0; i < RTE_ETH_FLOW_MAX; i++)
11822 memset(&port->dev_conf.fdir_conf.flex_conf.flex_mask[i],
11823 0, sizeof(struct rte_eth_fdir_flex_mask));
11824 port->dev_conf.fdir_conf.flex_conf.nb_flexmasks = 1;
11825 rte_memcpy(&port->dev_conf.fdir_conf.flex_conf.flex_mask[0],
11827 sizeof(struct rte_eth_fdir_flex_mask));
11828 cmd_reconfig_device_queue(res->port_id, 1, 1);
11831 flow_type_mask = fdir_info.flow_types_mask[0];
11832 if (!strcmp(res->flow_type, "all")) {
11833 if (!flow_type_mask) {
11834 printf("No flow type supported\n");
11837 for (i = RTE_ETH_FLOW_UNKNOWN; i < RTE_ETH_FLOW_MAX; i++) {
11838 if (flow_type_mask & (1ULL << i)) {
11839 flex_mask.flow_type = i;
11840 fdir_set_flex_mask(res->port_id, &flex_mask);
11843 cmd_reconfig_device_queue(res->port_id, 1, 1);
11846 flex_mask.flow_type = str2flowtype(res->flow_type);
11847 if (!(flow_type_mask & (1ULL << flex_mask.flow_type))) {
11848 printf("Flow type %s not supported on port %d\n",
11849 res->flow_type, res->port_id);
11852 fdir_set_flex_mask(res->port_id, &flex_mask);
11853 cmd_reconfig_device_queue(res->port_id, 1, 1);
11856 cmdline_parse_token_string_t cmd_flow_director_flexmask =
11857 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
11858 flow_director_flexmask,
11859 "flow_director_flex_mask");
11860 cmdline_parse_token_num_t cmd_flow_director_flexmask_port_id =
11861 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flex_mask_result,
11863 cmdline_parse_token_string_t cmd_flow_director_flexmask_flow =
11864 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
11866 cmdline_parse_token_string_t cmd_flow_director_flexmask_flow_type =
11867 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
11868 flow_type, "none#ipv4-other#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
11869 "ipv6-other#ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#l2_payload#all");
11870 cmdline_parse_token_string_t cmd_flow_director_flexmask_mask =
11871 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
11874 cmdline_parse_inst_t cmd_set_flow_director_flex_mask = {
11875 .f = cmd_flow_director_flex_mask_parsed,
11877 .help_str = "flow_director_flex_mask ... : "
11878 "Set flow director's flex mask on NIC",
11880 (void *)&cmd_flow_director_flexmask,
11881 (void *)&cmd_flow_director_flexmask_port_id,
11882 (void *)&cmd_flow_director_flexmask_flow,
11883 (void *)&cmd_flow_director_flexmask_flow_type,
11884 (void *)&cmd_flow_director_flexmask_mask,
11889 /* *** deal with flow director flexible payload configuration *** */
11890 struct cmd_flow_director_flexpayload_result {
11891 cmdline_fixed_string_t flow_director_flexpayload;
11893 cmdline_fixed_string_t payload_layer;
11894 cmdline_fixed_string_t payload_cfg;
11898 parse_offsets(const char *q_arg, uint16_t *offsets, uint16_t max_num)
11901 const char *p, *p0 = q_arg;
11903 unsigned long int_fld;
11904 char *str_fld[max_num];
11909 p = strchr(p0, '(');
11913 p0 = strchr(p, ')');
11918 if (size >= sizeof(s))
11921 snprintf(s, sizeof(s), "%.*s", size, p);
11922 ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ',');
11923 if (ret < 0 || ret > max_num)
11925 for (i = 0; i < ret; i++) {
11927 int_fld = strtoul(str_fld[i], &end, 0);
11928 if (errno != 0 || *end != '\0' || int_fld > UINT16_MAX)
11930 offsets[i] = (uint16_t)int_fld;
11936 cmd_flow_director_flxpld_parsed(void *parsed_result,
11937 __attribute__((unused)) struct cmdline *cl,
11938 __attribute__((unused)) void *data)
11940 struct cmd_flow_director_flexpayload_result *res = parsed_result;
11941 struct rte_eth_flex_payload_cfg flex_cfg;
11942 struct rte_port *port;
11945 port = &ports[res->port_id];
11946 /** Check if the port is not started **/
11947 if (port->port_status != RTE_PORT_STOPPED) {
11948 printf("Please stop port %d first\n", res->port_id);
11952 memset(&flex_cfg, 0, sizeof(struct rte_eth_flex_payload_cfg));
11954 if (!strcmp(res->payload_layer, "raw"))
11955 flex_cfg.type = RTE_ETH_RAW_PAYLOAD;
11956 else if (!strcmp(res->payload_layer, "l2"))
11957 flex_cfg.type = RTE_ETH_L2_PAYLOAD;
11958 else if (!strcmp(res->payload_layer, "l3"))
11959 flex_cfg.type = RTE_ETH_L3_PAYLOAD;
11960 else if (!strcmp(res->payload_layer, "l4"))
11961 flex_cfg.type = RTE_ETH_L4_PAYLOAD;
11963 ret = parse_offsets(res->payload_cfg, flex_cfg.src_offset,
11964 RTE_ETH_FDIR_MAX_FLEXLEN);
11966 printf("error: Cannot parse flex payload input.\n");
11970 fdir_set_flex_payload(res->port_id, &flex_cfg);
11971 cmd_reconfig_device_queue(res->port_id, 1, 1);
11974 cmdline_parse_token_string_t cmd_flow_director_flexpayload =
11975 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
11976 flow_director_flexpayload,
11977 "flow_director_flex_payload");
11978 cmdline_parse_token_num_t cmd_flow_director_flexpayload_port_id =
11979 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flexpayload_result,
11981 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_layer =
11982 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
11983 payload_layer, "raw#l2#l3#l4");
11984 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_cfg =
11985 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
11986 payload_cfg, NULL);
11988 cmdline_parse_inst_t cmd_set_flow_director_flex_payload = {
11989 .f = cmd_flow_director_flxpld_parsed,
11991 .help_str = "flow_director_flexpayload ... : "
11992 "Set flow director's flex payload on NIC",
11994 (void *)&cmd_flow_director_flexpayload,
11995 (void *)&cmd_flow_director_flexpayload_port_id,
11996 (void *)&cmd_flow_director_flexpayload_payload_layer,
11997 (void *)&cmd_flow_director_flexpayload_payload_cfg,
12002 /* Generic flow interface command. */
12003 extern cmdline_parse_inst_t cmd_flow;
12005 /* *** Classification Filters Control *** */
12006 /* *** Get symmetric hash enable per port *** */
12007 struct cmd_get_sym_hash_ena_per_port_result {
12008 cmdline_fixed_string_t get_sym_hash_ena_per_port;
12013 cmd_get_sym_hash_per_port_parsed(void *parsed_result,
12014 __rte_unused struct cmdline *cl,
12015 __rte_unused void *data)
12017 struct cmd_get_sym_hash_ena_per_port_result *res = parsed_result;
12018 struct rte_eth_hash_filter_info info;
12021 if (rte_eth_dev_filter_supported(res->port_id,
12022 RTE_ETH_FILTER_HASH) < 0) {
12023 printf("RTE_ETH_FILTER_HASH not supported on port: %d\n",
12028 memset(&info, 0, sizeof(info));
12029 info.info_type = RTE_ETH_HASH_FILTER_SYM_HASH_ENA_PER_PORT;
12030 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
12031 RTE_ETH_FILTER_GET, &info);
12034 printf("Cannot get symmetric hash enable per port "
12035 "on port %u\n", res->port_id);
12039 printf("Symmetric hash is %s on port %u\n", info.info.enable ?
12040 "enabled" : "disabled", res->port_id);
12043 cmdline_parse_token_string_t cmd_get_sym_hash_ena_per_port_all =
12044 TOKEN_STRING_INITIALIZER(struct cmd_get_sym_hash_ena_per_port_result,
12045 get_sym_hash_ena_per_port, "get_sym_hash_ena_per_port");
12046 cmdline_parse_token_num_t cmd_get_sym_hash_ena_per_port_port_id =
12047 TOKEN_NUM_INITIALIZER(struct cmd_get_sym_hash_ena_per_port_result,
12050 cmdline_parse_inst_t cmd_get_sym_hash_ena_per_port = {
12051 .f = cmd_get_sym_hash_per_port_parsed,
12053 .help_str = "get_sym_hash_ena_per_port <port_id>",
12055 (void *)&cmd_get_sym_hash_ena_per_port_all,
12056 (void *)&cmd_get_sym_hash_ena_per_port_port_id,
12061 /* *** Set symmetric hash enable per port *** */
12062 struct cmd_set_sym_hash_ena_per_port_result {
12063 cmdline_fixed_string_t set_sym_hash_ena_per_port;
12064 cmdline_fixed_string_t enable;
12069 cmd_set_sym_hash_per_port_parsed(void *parsed_result,
12070 __rte_unused struct cmdline *cl,
12071 __rte_unused void *data)
12073 struct cmd_set_sym_hash_ena_per_port_result *res = parsed_result;
12074 struct rte_eth_hash_filter_info info;
12077 if (rte_eth_dev_filter_supported(res->port_id,
12078 RTE_ETH_FILTER_HASH) < 0) {
12079 printf("RTE_ETH_FILTER_HASH not supported on port: %d\n",
12084 memset(&info, 0, sizeof(info));
12085 info.info_type = RTE_ETH_HASH_FILTER_SYM_HASH_ENA_PER_PORT;
12086 if (!strcmp(res->enable, "enable"))
12087 info.info.enable = 1;
12088 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
12089 RTE_ETH_FILTER_SET, &info);
12091 printf("Cannot set symmetric hash enable per port on "
12092 "port %u\n", res->port_id);
12095 printf("Symmetric hash has been set to %s on port %u\n",
12096 res->enable, res->port_id);
12099 cmdline_parse_token_string_t cmd_set_sym_hash_ena_per_port_all =
12100 TOKEN_STRING_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result,
12101 set_sym_hash_ena_per_port, "set_sym_hash_ena_per_port");
12102 cmdline_parse_token_num_t cmd_set_sym_hash_ena_per_port_port_id =
12103 TOKEN_NUM_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result,
12105 cmdline_parse_token_string_t cmd_set_sym_hash_ena_per_port_enable =
12106 TOKEN_STRING_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result,
12107 enable, "enable#disable");
12109 cmdline_parse_inst_t cmd_set_sym_hash_ena_per_port = {
12110 .f = cmd_set_sym_hash_per_port_parsed,
12112 .help_str = "set_sym_hash_ena_per_port <port_id> enable|disable",
12114 (void *)&cmd_set_sym_hash_ena_per_port_all,
12115 (void *)&cmd_set_sym_hash_ena_per_port_port_id,
12116 (void *)&cmd_set_sym_hash_ena_per_port_enable,
12121 /* Get global config of hash function */
12122 struct cmd_get_hash_global_config_result {
12123 cmdline_fixed_string_t get_hash_global_config;
12128 flowtype_to_str(uint16_t ftype)
12134 } ftype_table[] = {
12135 {"ipv4", RTE_ETH_FLOW_IPV4},
12136 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
12137 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
12138 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
12139 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
12140 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
12141 {"ipv6", RTE_ETH_FLOW_IPV6},
12142 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
12143 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
12144 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
12145 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
12146 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
12147 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
12148 {"port", RTE_ETH_FLOW_PORT},
12149 {"vxlan", RTE_ETH_FLOW_VXLAN},
12150 {"geneve", RTE_ETH_FLOW_GENEVE},
12151 {"nvgre", RTE_ETH_FLOW_NVGRE},
12152 {"vxlan-gpe", RTE_ETH_FLOW_VXLAN_GPE},
12155 for (i = 0; i < RTE_DIM(ftype_table); i++) {
12156 if (ftype_table[i].ftype == ftype)
12157 return ftype_table[i].str;
12164 cmd_get_hash_global_config_parsed(void *parsed_result,
12165 __rte_unused struct cmdline *cl,
12166 __rte_unused void *data)
12168 struct cmd_get_hash_global_config_result *res = parsed_result;
12169 struct rte_eth_hash_filter_info info;
12170 uint32_t idx, offset;
12175 if (rte_eth_dev_filter_supported(res->port_id,
12176 RTE_ETH_FILTER_HASH) < 0) {
12177 printf("RTE_ETH_FILTER_HASH not supported on port %d\n",
12182 memset(&info, 0, sizeof(info));
12183 info.info_type = RTE_ETH_HASH_FILTER_GLOBAL_CONFIG;
12184 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
12185 RTE_ETH_FILTER_GET, &info);
12187 printf("Cannot get hash global configurations by port %d\n",
12192 switch (info.info.global_conf.hash_func) {
12193 case RTE_ETH_HASH_FUNCTION_TOEPLITZ:
12194 printf("Hash function is Toeplitz\n");
12196 case RTE_ETH_HASH_FUNCTION_SIMPLE_XOR:
12197 printf("Hash function is Simple XOR\n");
12199 case RTE_ETH_HASH_FUNCTION_SYMMETRIC_TOEPLITZ:
12200 printf("Hash function is Symmetric Toeplitz\n");
12203 printf("Unknown hash function\n");
12207 for (i = 0; i < RTE_ETH_FLOW_MAX; i++) {
12208 idx = i / UINT64_BIT;
12209 offset = i % UINT64_BIT;
12210 if (!(info.info.global_conf.valid_bit_mask[idx] &
12213 str = flowtype_to_str(i);
12216 printf("Symmetric hash is %s globally for flow type %s "
12218 ((info.info.global_conf.sym_hash_enable_mask[idx] &
12219 (1ULL << offset)) ? "enabled" : "disabled"), str,
12224 cmdline_parse_token_string_t cmd_get_hash_global_config_all =
12225 TOKEN_STRING_INITIALIZER(struct cmd_get_hash_global_config_result,
12226 get_hash_global_config, "get_hash_global_config");
12227 cmdline_parse_token_num_t cmd_get_hash_global_config_port_id =
12228 TOKEN_NUM_INITIALIZER(struct cmd_get_hash_global_config_result,
12231 cmdline_parse_inst_t cmd_get_hash_global_config = {
12232 .f = cmd_get_hash_global_config_parsed,
12234 .help_str = "get_hash_global_config <port_id>",
12236 (void *)&cmd_get_hash_global_config_all,
12237 (void *)&cmd_get_hash_global_config_port_id,
12242 /* Set global config of hash function */
12243 struct cmd_set_hash_global_config_result {
12244 cmdline_fixed_string_t set_hash_global_config;
12246 cmdline_fixed_string_t hash_func;
12247 cmdline_fixed_string_t flow_type;
12248 cmdline_fixed_string_t enable;
12252 cmd_set_hash_global_config_parsed(void *parsed_result,
12253 __rte_unused struct cmdline *cl,
12254 __rte_unused void *data)
12256 struct cmd_set_hash_global_config_result *res = parsed_result;
12257 struct rte_eth_hash_filter_info info;
12258 uint32_t ftype, idx, offset;
12261 if (rte_eth_dev_filter_supported(res->port_id,
12262 RTE_ETH_FILTER_HASH) < 0) {
12263 printf("RTE_ETH_FILTER_HASH not supported on port %d\n",
12267 memset(&info, 0, sizeof(info));
12268 info.info_type = RTE_ETH_HASH_FILTER_GLOBAL_CONFIG;
12269 if (!strcmp(res->hash_func, "toeplitz"))
12270 info.info.global_conf.hash_func =
12271 RTE_ETH_HASH_FUNCTION_TOEPLITZ;
12272 else if (!strcmp(res->hash_func, "simple_xor"))
12273 info.info.global_conf.hash_func =
12274 RTE_ETH_HASH_FUNCTION_SIMPLE_XOR;
12275 else if (!strcmp(res->hash_func, "symmetric_toeplitz"))
12276 info.info.global_conf.hash_func =
12277 RTE_ETH_HASH_FUNCTION_SYMMETRIC_TOEPLITZ;
12278 else if (!strcmp(res->hash_func, "default"))
12279 info.info.global_conf.hash_func =
12280 RTE_ETH_HASH_FUNCTION_DEFAULT;
12282 ftype = str2flowtype(res->flow_type);
12283 idx = ftype / UINT64_BIT;
12284 offset = ftype % UINT64_BIT;
12285 info.info.global_conf.valid_bit_mask[idx] |= (1ULL << offset);
12286 if (!strcmp(res->enable, "enable"))
12287 info.info.global_conf.sym_hash_enable_mask[idx] |=
12289 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
12290 RTE_ETH_FILTER_SET, &info);
12292 printf("Cannot set global hash configurations by port %d\n",
12295 printf("Global hash configurations have been set "
12296 "successfully by port %d\n", res->port_id);
12299 cmdline_parse_token_string_t cmd_set_hash_global_config_all =
12300 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
12301 set_hash_global_config, "set_hash_global_config");
12302 cmdline_parse_token_num_t cmd_set_hash_global_config_port_id =
12303 TOKEN_NUM_INITIALIZER(struct cmd_set_hash_global_config_result,
12305 cmdline_parse_token_string_t cmd_set_hash_global_config_hash_func =
12306 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
12307 hash_func, "toeplitz#simple_xor#symmetric_toeplitz#default");
12308 cmdline_parse_token_string_t cmd_set_hash_global_config_flow_type =
12309 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
12311 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#ipv4-other#ipv6#"
12312 "ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#ipv6-other#l2_payload");
12313 cmdline_parse_token_string_t cmd_set_hash_global_config_enable =
12314 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
12315 enable, "enable#disable");
12317 cmdline_parse_inst_t cmd_set_hash_global_config = {
12318 .f = cmd_set_hash_global_config_parsed,
12320 .help_str = "set_hash_global_config <port_id> "
12321 "toeplitz|simple_xor|symmetric_toeplitz|default "
12322 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
12323 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
12324 "l2_payload enable|disable",
12326 (void *)&cmd_set_hash_global_config_all,
12327 (void *)&cmd_set_hash_global_config_port_id,
12328 (void *)&cmd_set_hash_global_config_hash_func,
12329 (void *)&cmd_set_hash_global_config_flow_type,
12330 (void *)&cmd_set_hash_global_config_enable,
12335 /* Set hash input set */
12336 struct cmd_set_hash_input_set_result {
12337 cmdline_fixed_string_t set_hash_input_set;
12339 cmdline_fixed_string_t flow_type;
12340 cmdline_fixed_string_t inset_field;
12341 cmdline_fixed_string_t select;
12344 static enum rte_eth_input_set_field
12345 str2inset(char *string)
12349 static const struct {
12351 enum rte_eth_input_set_field inset;
12352 } inset_table[] = {
12353 {"ethertype", RTE_ETH_INPUT_SET_L2_ETHERTYPE},
12354 {"ovlan", RTE_ETH_INPUT_SET_L2_OUTER_VLAN},
12355 {"ivlan", RTE_ETH_INPUT_SET_L2_INNER_VLAN},
12356 {"src-ipv4", RTE_ETH_INPUT_SET_L3_SRC_IP4},
12357 {"dst-ipv4", RTE_ETH_INPUT_SET_L3_DST_IP4},
12358 {"ipv4-tos", RTE_ETH_INPUT_SET_L3_IP4_TOS},
12359 {"ipv4-proto", RTE_ETH_INPUT_SET_L3_IP4_PROTO},
12360 {"ipv4-ttl", RTE_ETH_INPUT_SET_L3_IP4_TTL},
12361 {"src-ipv6", RTE_ETH_INPUT_SET_L3_SRC_IP6},
12362 {"dst-ipv6", RTE_ETH_INPUT_SET_L3_DST_IP6},
12363 {"ipv6-tc", RTE_ETH_INPUT_SET_L3_IP6_TC},
12364 {"ipv6-next-header", RTE_ETH_INPUT_SET_L3_IP6_NEXT_HEADER},
12365 {"ipv6-hop-limits", RTE_ETH_INPUT_SET_L3_IP6_HOP_LIMITS},
12366 {"udp-src-port", RTE_ETH_INPUT_SET_L4_UDP_SRC_PORT},
12367 {"udp-dst-port", RTE_ETH_INPUT_SET_L4_UDP_DST_PORT},
12368 {"tcp-src-port", RTE_ETH_INPUT_SET_L4_TCP_SRC_PORT},
12369 {"tcp-dst-port", RTE_ETH_INPUT_SET_L4_TCP_DST_PORT},
12370 {"sctp-src-port", RTE_ETH_INPUT_SET_L4_SCTP_SRC_PORT},
12371 {"sctp-dst-port", RTE_ETH_INPUT_SET_L4_SCTP_DST_PORT},
12372 {"sctp-veri-tag", RTE_ETH_INPUT_SET_L4_SCTP_VERIFICATION_TAG},
12373 {"udp-key", RTE_ETH_INPUT_SET_TUNNEL_L4_UDP_KEY},
12374 {"gre-key", RTE_ETH_INPUT_SET_TUNNEL_GRE_KEY},
12375 {"fld-1st", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_1ST_WORD},
12376 {"fld-2nd", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_2ND_WORD},
12377 {"fld-3rd", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_3RD_WORD},
12378 {"fld-4th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_4TH_WORD},
12379 {"fld-5th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_5TH_WORD},
12380 {"fld-6th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_6TH_WORD},
12381 {"fld-7th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_7TH_WORD},
12382 {"fld-8th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_8TH_WORD},
12383 {"none", RTE_ETH_INPUT_SET_NONE},
12386 for (i = 0; i < RTE_DIM(inset_table); i++) {
12387 if (!strcmp(string, inset_table[i].str))
12388 return inset_table[i].inset;
12391 return RTE_ETH_INPUT_SET_UNKNOWN;
12395 cmd_set_hash_input_set_parsed(void *parsed_result,
12396 __rte_unused struct cmdline *cl,
12397 __rte_unused void *data)
12399 struct cmd_set_hash_input_set_result *res = parsed_result;
12400 struct rte_eth_hash_filter_info info;
12402 memset(&info, 0, sizeof(info));
12403 info.info_type = RTE_ETH_HASH_FILTER_INPUT_SET_SELECT;
12404 info.info.input_set_conf.flow_type = str2flowtype(res->flow_type);
12405 info.info.input_set_conf.field[0] = str2inset(res->inset_field);
12406 info.info.input_set_conf.inset_size = 1;
12407 if (!strcmp(res->select, "select"))
12408 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_SELECT;
12409 else if (!strcmp(res->select, "add"))
12410 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_ADD;
12411 rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
12412 RTE_ETH_FILTER_SET, &info);
12415 cmdline_parse_token_string_t cmd_set_hash_input_set_cmd =
12416 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
12417 set_hash_input_set, "set_hash_input_set");
12418 cmdline_parse_token_num_t cmd_set_hash_input_set_port_id =
12419 TOKEN_NUM_INITIALIZER(struct cmd_set_hash_input_set_result,
12421 cmdline_parse_token_string_t cmd_set_hash_input_set_flow_type =
12422 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
12424 cmdline_parse_token_string_t cmd_set_hash_input_set_field =
12425 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
12427 "ovlan#ivlan#src-ipv4#dst-ipv4#src-ipv6#dst-ipv6#"
12428 "ipv4-tos#ipv4-proto#ipv6-tc#ipv6-next-header#udp-src-port#"
12429 "udp-dst-port#tcp-src-port#tcp-dst-port#sctp-src-port#"
12430 "sctp-dst-port#sctp-veri-tag#udp-key#gre-key#fld-1st#"
12431 "fld-2nd#fld-3rd#fld-4th#fld-5th#fld-6th#fld-7th#"
12433 cmdline_parse_token_string_t cmd_set_hash_input_set_select =
12434 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
12435 select, "select#add");
12437 cmdline_parse_inst_t cmd_set_hash_input_set = {
12438 .f = cmd_set_hash_input_set_parsed,
12440 .help_str = "set_hash_input_set <port_id> "
12441 "ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
12442 "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload|<flowtype_id> "
12443 "ovlan|ivlan|src-ipv4|dst-ipv4|src-ipv6|dst-ipv6|ipv4-tos|ipv4-proto|"
12444 "ipv6-tc|ipv6-next-header|udp-src-port|udp-dst-port|tcp-src-port|"
12445 "tcp-dst-port|sctp-src-port|sctp-dst-port|sctp-veri-tag|udp-key|"
12446 "gre-key|fld-1st|fld-2nd|fld-3rd|fld-4th|fld-5th|fld-6th|"
12447 "fld-7th|fld-8th|none select|add",
12449 (void *)&cmd_set_hash_input_set_cmd,
12450 (void *)&cmd_set_hash_input_set_port_id,
12451 (void *)&cmd_set_hash_input_set_flow_type,
12452 (void *)&cmd_set_hash_input_set_field,
12453 (void *)&cmd_set_hash_input_set_select,
12458 /* Set flow director input set */
12459 struct cmd_set_fdir_input_set_result {
12460 cmdline_fixed_string_t set_fdir_input_set;
12462 cmdline_fixed_string_t flow_type;
12463 cmdline_fixed_string_t inset_field;
12464 cmdline_fixed_string_t select;
12468 cmd_set_fdir_input_set_parsed(void *parsed_result,
12469 __rte_unused struct cmdline *cl,
12470 __rte_unused void *data)
12472 struct cmd_set_fdir_input_set_result *res = parsed_result;
12473 struct rte_eth_fdir_filter_info info;
12475 memset(&info, 0, sizeof(info));
12476 info.info_type = RTE_ETH_FDIR_FILTER_INPUT_SET_SELECT;
12477 info.info.input_set_conf.flow_type = str2flowtype(res->flow_type);
12478 info.info.input_set_conf.field[0] = str2inset(res->inset_field);
12479 info.info.input_set_conf.inset_size = 1;
12480 if (!strcmp(res->select, "select"))
12481 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_SELECT;
12482 else if (!strcmp(res->select, "add"))
12483 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_ADD;
12484 rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
12485 RTE_ETH_FILTER_SET, &info);
12488 cmdline_parse_token_string_t cmd_set_fdir_input_set_cmd =
12489 TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
12490 set_fdir_input_set, "set_fdir_input_set");
12491 cmdline_parse_token_num_t cmd_set_fdir_input_set_port_id =
12492 TOKEN_NUM_INITIALIZER(struct cmd_set_fdir_input_set_result,
12494 cmdline_parse_token_string_t cmd_set_fdir_input_set_flow_type =
12495 TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
12497 "ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#ipv4-other#"
12498 "ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#ipv6-other#l2_payload");
12499 cmdline_parse_token_string_t cmd_set_fdir_input_set_field =
12500 TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
12502 "ivlan#ethertype#src-ipv4#dst-ipv4#src-ipv6#dst-ipv6#"
12503 "ipv4-tos#ipv4-proto#ipv4-ttl#ipv6-tc#ipv6-next-header#"
12504 "ipv6-hop-limits#udp-src-port#udp-dst-port#"
12505 "tcp-src-port#tcp-dst-port#sctp-src-port#sctp-dst-port#"
12506 "sctp-veri-tag#none");
12507 cmdline_parse_token_string_t cmd_set_fdir_input_set_select =
12508 TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
12509 select, "select#add");
12511 cmdline_parse_inst_t cmd_set_fdir_input_set = {
12512 .f = cmd_set_fdir_input_set_parsed,
12514 .help_str = "set_fdir_input_set <port_id> "
12515 "ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
12516 "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload "
12517 "ivlan|ethertype|src-ipv4|dst-ipv4|src-ipv6|dst-ipv6|"
12518 "ipv4-tos|ipv4-proto|ipv4-ttl|ipv6-tc|ipv6-next-header|"
12519 "ipv6-hop-limits|udp-src-port|udp-dst-port|"
12520 "tcp-src-port|tcp-dst-port|sctp-src-port|sctp-dst-port|"
12521 "sctp-veri-tag|none select|add",
12523 (void *)&cmd_set_fdir_input_set_cmd,
12524 (void *)&cmd_set_fdir_input_set_port_id,
12525 (void *)&cmd_set_fdir_input_set_flow_type,
12526 (void *)&cmd_set_fdir_input_set_field,
12527 (void *)&cmd_set_fdir_input_set_select,
12532 /* *** ADD/REMOVE A MULTICAST MAC ADDRESS TO/FROM A PORT *** */
12533 struct cmd_mcast_addr_result {
12534 cmdline_fixed_string_t mcast_addr_cmd;
12535 cmdline_fixed_string_t what;
12537 struct rte_ether_addr mc_addr;
12540 static void cmd_mcast_addr_parsed(void *parsed_result,
12541 __attribute__((unused)) struct cmdline *cl,
12542 __attribute__((unused)) void *data)
12544 struct cmd_mcast_addr_result *res = parsed_result;
12546 if (!rte_is_multicast_ether_addr(&res->mc_addr)) {
12547 printf("Invalid multicast addr %02X:%02X:%02X:%02X:%02X:%02X\n",
12548 res->mc_addr.addr_bytes[0], res->mc_addr.addr_bytes[1],
12549 res->mc_addr.addr_bytes[2], res->mc_addr.addr_bytes[3],
12550 res->mc_addr.addr_bytes[4], res->mc_addr.addr_bytes[5]);
12553 if (strcmp(res->what, "add") == 0)
12554 mcast_addr_add(res->port_num, &res->mc_addr);
12556 mcast_addr_remove(res->port_num, &res->mc_addr);
12559 cmdline_parse_token_string_t cmd_mcast_addr_cmd =
12560 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result,
12561 mcast_addr_cmd, "mcast_addr");
12562 cmdline_parse_token_string_t cmd_mcast_addr_what =
12563 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, what,
12565 cmdline_parse_token_num_t cmd_mcast_addr_portnum =
12566 TOKEN_NUM_INITIALIZER(struct cmd_mcast_addr_result, port_num, UINT16);
12567 cmdline_parse_token_etheraddr_t cmd_mcast_addr_addr =
12568 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
12570 cmdline_parse_inst_t cmd_mcast_addr = {
12571 .f = cmd_mcast_addr_parsed,
12573 .help_str = "mcast_addr add|remove <port_id> <mcast_addr>: "
12574 "Add/Remove multicast MAC address on port_id",
12576 (void *)&cmd_mcast_addr_cmd,
12577 (void *)&cmd_mcast_addr_what,
12578 (void *)&cmd_mcast_addr_portnum,
12579 (void *)&cmd_mcast_addr_addr,
12584 /* l2 tunnel config
12585 * only support E-tag now.
12588 /* Ether type config */
12589 struct cmd_config_l2_tunnel_eth_type_result {
12590 cmdline_fixed_string_t port;
12591 cmdline_fixed_string_t config;
12592 cmdline_fixed_string_t all;
12594 cmdline_fixed_string_t l2_tunnel;
12595 cmdline_fixed_string_t l2_tunnel_type;
12596 cmdline_fixed_string_t eth_type;
12597 uint16_t eth_type_val;
12600 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_port =
12601 TOKEN_STRING_INITIALIZER
12602 (struct cmd_config_l2_tunnel_eth_type_result,
12604 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_config =
12605 TOKEN_STRING_INITIALIZER
12606 (struct cmd_config_l2_tunnel_eth_type_result,
12608 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_all_str =
12609 TOKEN_STRING_INITIALIZER
12610 (struct cmd_config_l2_tunnel_eth_type_result,
12612 cmdline_parse_token_num_t cmd_config_l2_tunnel_eth_type_id =
12613 TOKEN_NUM_INITIALIZER
12614 (struct cmd_config_l2_tunnel_eth_type_result,
12616 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_l2_tunnel =
12617 TOKEN_STRING_INITIALIZER
12618 (struct cmd_config_l2_tunnel_eth_type_result,
12619 l2_tunnel, "l2-tunnel");
12620 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_l2_tunnel_type =
12621 TOKEN_STRING_INITIALIZER
12622 (struct cmd_config_l2_tunnel_eth_type_result,
12623 l2_tunnel_type, "E-tag");
12624 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_eth_type =
12625 TOKEN_STRING_INITIALIZER
12626 (struct cmd_config_l2_tunnel_eth_type_result,
12627 eth_type, "ether-type");
12628 cmdline_parse_token_num_t cmd_config_l2_tunnel_eth_type_eth_type_val =
12629 TOKEN_NUM_INITIALIZER
12630 (struct cmd_config_l2_tunnel_eth_type_result,
12631 eth_type_val, UINT16);
12633 static enum rte_eth_tunnel_type
12634 str2fdir_l2_tunnel_type(char *string)
12638 static const struct {
12640 enum rte_eth_tunnel_type type;
12641 } l2_tunnel_type_str[] = {
12642 {"E-tag", RTE_L2_TUNNEL_TYPE_E_TAG},
12645 for (i = 0; i < RTE_DIM(l2_tunnel_type_str); i++) {
12646 if (!strcmp(l2_tunnel_type_str[i].str, string))
12647 return l2_tunnel_type_str[i].type;
12649 return RTE_TUNNEL_TYPE_NONE;
12652 /* ether type config for all ports */
12654 cmd_config_l2_tunnel_eth_type_all_parsed
12655 (void *parsed_result,
12656 __attribute__((unused)) struct cmdline *cl,
12657 __attribute__((unused)) void *data)
12659 struct cmd_config_l2_tunnel_eth_type_result *res = parsed_result;
12660 struct rte_eth_l2_tunnel_conf entry;
12663 entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
12664 entry.ether_type = res->eth_type_val;
12666 RTE_ETH_FOREACH_DEV(pid) {
12667 rte_eth_dev_l2_tunnel_eth_type_conf(pid, &entry);
12671 cmdline_parse_inst_t cmd_config_l2_tunnel_eth_type_all = {
12672 .f = cmd_config_l2_tunnel_eth_type_all_parsed,
12674 .help_str = "port config all l2-tunnel E-tag ether-type <value>",
12676 (void *)&cmd_config_l2_tunnel_eth_type_port,
12677 (void *)&cmd_config_l2_tunnel_eth_type_config,
12678 (void *)&cmd_config_l2_tunnel_eth_type_all_str,
12679 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel,
12680 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel_type,
12681 (void *)&cmd_config_l2_tunnel_eth_type_eth_type,
12682 (void *)&cmd_config_l2_tunnel_eth_type_eth_type_val,
12687 /* ether type config for a specific port */
12689 cmd_config_l2_tunnel_eth_type_specific_parsed(
12690 void *parsed_result,
12691 __attribute__((unused)) struct cmdline *cl,
12692 __attribute__((unused)) void *data)
12694 struct cmd_config_l2_tunnel_eth_type_result *res =
12696 struct rte_eth_l2_tunnel_conf entry;
12698 if (port_id_is_invalid(res->id, ENABLED_WARN))
12701 entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
12702 entry.ether_type = res->eth_type_val;
12704 rte_eth_dev_l2_tunnel_eth_type_conf(res->id, &entry);
12707 cmdline_parse_inst_t cmd_config_l2_tunnel_eth_type_specific = {
12708 .f = cmd_config_l2_tunnel_eth_type_specific_parsed,
12710 .help_str = "port config <port_id> l2-tunnel E-tag ether-type <value>",
12712 (void *)&cmd_config_l2_tunnel_eth_type_port,
12713 (void *)&cmd_config_l2_tunnel_eth_type_config,
12714 (void *)&cmd_config_l2_tunnel_eth_type_id,
12715 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel,
12716 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel_type,
12717 (void *)&cmd_config_l2_tunnel_eth_type_eth_type,
12718 (void *)&cmd_config_l2_tunnel_eth_type_eth_type_val,
12723 /* Enable/disable l2 tunnel */
12724 struct cmd_config_l2_tunnel_en_dis_result {
12725 cmdline_fixed_string_t port;
12726 cmdline_fixed_string_t config;
12727 cmdline_fixed_string_t all;
12729 cmdline_fixed_string_t l2_tunnel;
12730 cmdline_fixed_string_t l2_tunnel_type;
12731 cmdline_fixed_string_t en_dis;
12734 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_port =
12735 TOKEN_STRING_INITIALIZER
12736 (struct cmd_config_l2_tunnel_en_dis_result,
12738 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_config =
12739 TOKEN_STRING_INITIALIZER
12740 (struct cmd_config_l2_tunnel_en_dis_result,
12742 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_all_str =
12743 TOKEN_STRING_INITIALIZER
12744 (struct cmd_config_l2_tunnel_en_dis_result,
12746 cmdline_parse_token_num_t cmd_config_l2_tunnel_en_dis_id =
12747 TOKEN_NUM_INITIALIZER
12748 (struct cmd_config_l2_tunnel_en_dis_result,
12750 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_l2_tunnel =
12751 TOKEN_STRING_INITIALIZER
12752 (struct cmd_config_l2_tunnel_en_dis_result,
12753 l2_tunnel, "l2-tunnel");
12754 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_l2_tunnel_type =
12755 TOKEN_STRING_INITIALIZER
12756 (struct cmd_config_l2_tunnel_en_dis_result,
12757 l2_tunnel_type, "E-tag");
12758 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_en_dis =
12759 TOKEN_STRING_INITIALIZER
12760 (struct cmd_config_l2_tunnel_en_dis_result,
12761 en_dis, "enable#disable");
12763 /* enable/disable l2 tunnel for all ports */
12765 cmd_config_l2_tunnel_en_dis_all_parsed(
12766 void *parsed_result,
12767 __attribute__((unused)) struct cmdline *cl,
12768 __attribute__((unused)) void *data)
12770 struct cmd_config_l2_tunnel_en_dis_result *res = parsed_result;
12771 struct rte_eth_l2_tunnel_conf entry;
12775 entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
12777 if (!strcmp("enable", res->en_dis))
12782 RTE_ETH_FOREACH_DEV(pid) {
12783 rte_eth_dev_l2_tunnel_offload_set(pid,
12785 ETH_L2_TUNNEL_ENABLE_MASK,
12790 cmdline_parse_inst_t cmd_config_l2_tunnel_en_dis_all = {
12791 .f = cmd_config_l2_tunnel_en_dis_all_parsed,
12793 .help_str = "port config all l2-tunnel E-tag enable|disable",
12795 (void *)&cmd_config_l2_tunnel_en_dis_port,
12796 (void *)&cmd_config_l2_tunnel_en_dis_config,
12797 (void *)&cmd_config_l2_tunnel_en_dis_all_str,
12798 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel,
12799 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel_type,
12800 (void *)&cmd_config_l2_tunnel_en_dis_en_dis,
12805 /* enable/disable l2 tunnel for a port */
12807 cmd_config_l2_tunnel_en_dis_specific_parsed(
12808 void *parsed_result,
12809 __attribute__((unused)) struct cmdline *cl,
12810 __attribute__((unused)) void *data)
12812 struct cmd_config_l2_tunnel_en_dis_result *res =
12814 struct rte_eth_l2_tunnel_conf entry;
12816 if (port_id_is_invalid(res->id, ENABLED_WARN))
12819 entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
12821 if (!strcmp("enable", res->en_dis))
12822 rte_eth_dev_l2_tunnel_offload_set(res->id,
12824 ETH_L2_TUNNEL_ENABLE_MASK,
12827 rte_eth_dev_l2_tunnel_offload_set(res->id,
12829 ETH_L2_TUNNEL_ENABLE_MASK,
12833 cmdline_parse_inst_t cmd_config_l2_tunnel_en_dis_specific = {
12834 .f = cmd_config_l2_tunnel_en_dis_specific_parsed,
12836 .help_str = "port config <port_id> l2-tunnel E-tag enable|disable",
12838 (void *)&cmd_config_l2_tunnel_en_dis_port,
12839 (void *)&cmd_config_l2_tunnel_en_dis_config,
12840 (void *)&cmd_config_l2_tunnel_en_dis_id,
12841 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel,
12842 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel_type,
12843 (void *)&cmd_config_l2_tunnel_en_dis_en_dis,
12848 /* E-tag configuration */
12850 /* Common result structure for all E-tag configuration */
12851 struct cmd_config_e_tag_result {
12852 cmdline_fixed_string_t e_tag;
12853 cmdline_fixed_string_t set;
12854 cmdline_fixed_string_t insertion;
12855 cmdline_fixed_string_t stripping;
12856 cmdline_fixed_string_t forwarding;
12857 cmdline_fixed_string_t filter;
12858 cmdline_fixed_string_t add;
12859 cmdline_fixed_string_t del;
12860 cmdline_fixed_string_t on;
12861 cmdline_fixed_string_t off;
12862 cmdline_fixed_string_t on_off;
12863 cmdline_fixed_string_t port_tag_id;
12864 uint32_t port_tag_id_val;
12865 cmdline_fixed_string_t e_tag_id;
12866 uint16_t e_tag_id_val;
12867 cmdline_fixed_string_t dst_pool;
12868 uint8_t dst_pool_val;
12869 cmdline_fixed_string_t port;
12871 cmdline_fixed_string_t vf;
12875 /* Common CLI fields for all E-tag configuration */
12876 cmdline_parse_token_string_t cmd_config_e_tag_e_tag =
12877 TOKEN_STRING_INITIALIZER
12878 (struct cmd_config_e_tag_result,
12880 cmdline_parse_token_string_t cmd_config_e_tag_set =
12881 TOKEN_STRING_INITIALIZER
12882 (struct cmd_config_e_tag_result,
12884 cmdline_parse_token_string_t cmd_config_e_tag_insertion =
12885 TOKEN_STRING_INITIALIZER
12886 (struct cmd_config_e_tag_result,
12887 insertion, "insertion");
12888 cmdline_parse_token_string_t cmd_config_e_tag_stripping =
12889 TOKEN_STRING_INITIALIZER
12890 (struct cmd_config_e_tag_result,
12891 stripping, "stripping");
12892 cmdline_parse_token_string_t cmd_config_e_tag_forwarding =
12893 TOKEN_STRING_INITIALIZER
12894 (struct cmd_config_e_tag_result,
12895 forwarding, "forwarding");
12896 cmdline_parse_token_string_t cmd_config_e_tag_filter =
12897 TOKEN_STRING_INITIALIZER
12898 (struct cmd_config_e_tag_result,
12900 cmdline_parse_token_string_t cmd_config_e_tag_add =
12901 TOKEN_STRING_INITIALIZER
12902 (struct cmd_config_e_tag_result,
12904 cmdline_parse_token_string_t cmd_config_e_tag_del =
12905 TOKEN_STRING_INITIALIZER
12906 (struct cmd_config_e_tag_result,
12908 cmdline_parse_token_string_t cmd_config_e_tag_on =
12909 TOKEN_STRING_INITIALIZER
12910 (struct cmd_config_e_tag_result,
12912 cmdline_parse_token_string_t cmd_config_e_tag_off =
12913 TOKEN_STRING_INITIALIZER
12914 (struct cmd_config_e_tag_result,
12916 cmdline_parse_token_string_t cmd_config_e_tag_on_off =
12917 TOKEN_STRING_INITIALIZER
12918 (struct cmd_config_e_tag_result,
12920 cmdline_parse_token_string_t cmd_config_e_tag_port_tag_id =
12921 TOKEN_STRING_INITIALIZER
12922 (struct cmd_config_e_tag_result,
12923 port_tag_id, "port-tag-id");
12924 cmdline_parse_token_num_t cmd_config_e_tag_port_tag_id_val =
12925 TOKEN_NUM_INITIALIZER
12926 (struct cmd_config_e_tag_result,
12927 port_tag_id_val, UINT32);
12928 cmdline_parse_token_string_t cmd_config_e_tag_e_tag_id =
12929 TOKEN_STRING_INITIALIZER
12930 (struct cmd_config_e_tag_result,
12931 e_tag_id, "e-tag-id");
12932 cmdline_parse_token_num_t cmd_config_e_tag_e_tag_id_val =
12933 TOKEN_NUM_INITIALIZER
12934 (struct cmd_config_e_tag_result,
12935 e_tag_id_val, UINT16);
12936 cmdline_parse_token_string_t cmd_config_e_tag_dst_pool =
12937 TOKEN_STRING_INITIALIZER
12938 (struct cmd_config_e_tag_result,
12939 dst_pool, "dst-pool");
12940 cmdline_parse_token_num_t cmd_config_e_tag_dst_pool_val =
12941 TOKEN_NUM_INITIALIZER
12942 (struct cmd_config_e_tag_result,
12943 dst_pool_val, UINT8);
12944 cmdline_parse_token_string_t cmd_config_e_tag_port =
12945 TOKEN_STRING_INITIALIZER
12946 (struct cmd_config_e_tag_result,
12948 cmdline_parse_token_num_t cmd_config_e_tag_port_id =
12949 TOKEN_NUM_INITIALIZER
12950 (struct cmd_config_e_tag_result,
12952 cmdline_parse_token_string_t cmd_config_e_tag_vf =
12953 TOKEN_STRING_INITIALIZER
12954 (struct cmd_config_e_tag_result,
12956 cmdline_parse_token_num_t cmd_config_e_tag_vf_id =
12957 TOKEN_NUM_INITIALIZER
12958 (struct cmd_config_e_tag_result,
12961 /* E-tag insertion configuration */
12963 cmd_config_e_tag_insertion_en_parsed(
12964 void *parsed_result,
12965 __attribute__((unused)) struct cmdline *cl,
12966 __attribute__((unused)) void *data)
12968 struct cmd_config_e_tag_result *res =
12970 struct rte_eth_l2_tunnel_conf entry;
12972 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12975 entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
12976 entry.tunnel_id = res->port_tag_id_val;
12977 entry.vf_id = res->vf_id;
12978 rte_eth_dev_l2_tunnel_offload_set(res->port_id,
12980 ETH_L2_TUNNEL_INSERTION_MASK,
12985 cmd_config_e_tag_insertion_dis_parsed(
12986 void *parsed_result,
12987 __attribute__((unused)) struct cmdline *cl,
12988 __attribute__((unused)) void *data)
12990 struct cmd_config_e_tag_result *res =
12992 struct rte_eth_l2_tunnel_conf entry;
12994 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12997 entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
12998 entry.vf_id = res->vf_id;
13000 rte_eth_dev_l2_tunnel_offload_set(res->port_id,
13002 ETH_L2_TUNNEL_INSERTION_MASK,
13006 cmdline_parse_inst_t cmd_config_e_tag_insertion_en = {
13007 .f = cmd_config_e_tag_insertion_en_parsed,
13009 .help_str = "E-tag ... : E-tag insertion enable",
13011 (void *)&cmd_config_e_tag_e_tag,
13012 (void *)&cmd_config_e_tag_set,
13013 (void *)&cmd_config_e_tag_insertion,
13014 (void *)&cmd_config_e_tag_on,
13015 (void *)&cmd_config_e_tag_port_tag_id,
13016 (void *)&cmd_config_e_tag_port_tag_id_val,
13017 (void *)&cmd_config_e_tag_port,
13018 (void *)&cmd_config_e_tag_port_id,
13019 (void *)&cmd_config_e_tag_vf,
13020 (void *)&cmd_config_e_tag_vf_id,
13025 cmdline_parse_inst_t cmd_config_e_tag_insertion_dis = {
13026 .f = cmd_config_e_tag_insertion_dis_parsed,
13028 .help_str = "E-tag ... : E-tag insertion disable",
13030 (void *)&cmd_config_e_tag_e_tag,
13031 (void *)&cmd_config_e_tag_set,
13032 (void *)&cmd_config_e_tag_insertion,
13033 (void *)&cmd_config_e_tag_off,
13034 (void *)&cmd_config_e_tag_port,
13035 (void *)&cmd_config_e_tag_port_id,
13036 (void *)&cmd_config_e_tag_vf,
13037 (void *)&cmd_config_e_tag_vf_id,
13042 /* E-tag stripping configuration */
13044 cmd_config_e_tag_stripping_parsed(
13045 void *parsed_result,
13046 __attribute__((unused)) struct cmdline *cl,
13047 __attribute__((unused)) void *data)
13049 struct cmd_config_e_tag_result *res =
13051 struct rte_eth_l2_tunnel_conf entry;
13053 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13056 entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
13058 if (!strcmp(res->on_off, "on"))
13059 rte_eth_dev_l2_tunnel_offload_set
13062 ETH_L2_TUNNEL_STRIPPING_MASK,
13065 rte_eth_dev_l2_tunnel_offload_set
13068 ETH_L2_TUNNEL_STRIPPING_MASK,
13072 cmdline_parse_inst_t cmd_config_e_tag_stripping_en_dis = {
13073 .f = cmd_config_e_tag_stripping_parsed,
13075 .help_str = "E-tag ... : E-tag stripping enable/disable",
13077 (void *)&cmd_config_e_tag_e_tag,
13078 (void *)&cmd_config_e_tag_set,
13079 (void *)&cmd_config_e_tag_stripping,
13080 (void *)&cmd_config_e_tag_on_off,
13081 (void *)&cmd_config_e_tag_port,
13082 (void *)&cmd_config_e_tag_port_id,
13087 /* E-tag forwarding configuration */
13089 cmd_config_e_tag_forwarding_parsed(
13090 void *parsed_result,
13091 __attribute__((unused)) struct cmdline *cl,
13092 __attribute__((unused)) void *data)
13094 struct cmd_config_e_tag_result *res = parsed_result;
13095 struct rte_eth_l2_tunnel_conf entry;
13097 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13100 entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
13102 if (!strcmp(res->on_off, "on"))
13103 rte_eth_dev_l2_tunnel_offload_set
13106 ETH_L2_TUNNEL_FORWARDING_MASK,
13109 rte_eth_dev_l2_tunnel_offload_set
13112 ETH_L2_TUNNEL_FORWARDING_MASK,
13116 cmdline_parse_inst_t cmd_config_e_tag_forwarding_en_dis = {
13117 .f = cmd_config_e_tag_forwarding_parsed,
13119 .help_str = "E-tag ... : E-tag forwarding enable/disable",
13121 (void *)&cmd_config_e_tag_e_tag,
13122 (void *)&cmd_config_e_tag_set,
13123 (void *)&cmd_config_e_tag_forwarding,
13124 (void *)&cmd_config_e_tag_on_off,
13125 (void *)&cmd_config_e_tag_port,
13126 (void *)&cmd_config_e_tag_port_id,
13131 /* E-tag filter configuration */
13133 cmd_config_e_tag_filter_add_parsed(
13134 void *parsed_result,
13135 __attribute__((unused)) struct cmdline *cl,
13136 __attribute__((unused)) void *data)
13138 struct cmd_config_e_tag_result *res = parsed_result;
13139 struct rte_eth_l2_tunnel_conf entry;
13142 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13145 if (res->e_tag_id_val > 0x3fff) {
13146 printf("e-tag-id must be equal or less than 0x3fff.\n");
13150 ret = rte_eth_dev_filter_supported(res->port_id,
13151 RTE_ETH_FILTER_L2_TUNNEL);
13153 printf("E-tag filter is not supported on port %u.\n",
13158 entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
13159 entry.tunnel_id = res->e_tag_id_val;
13160 entry.pool = res->dst_pool_val;
13162 ret = rte_eth_dev_filter_ctrl(res->port_id,
13163 RTE_ETH_FILTER_L2_TUNNEL,
13164 RTE_ETH_FILTER_ADD,
13167 printf("E-tag filter programming error: (%s)\n",
13171 cmdline_parse_inst_t cmd_config_e_tag_filter_add = {
13172 .f = cmd_config_e_tag_filter_add_parsed,
13174 .help_str = "E-tag ... : E-tag filter add",
13176 (void *)&cmd_config_e_tag_e_tag,
13177 (void *)&cmd_config_e_tag_set,
13178 (void *)&cmd_config_e_tag_filter,
13179 (void *)&cmd_config_e_tag_add,
13180 (void *)&cmd_config_e_tag_e_tag_id,
13181 (void *)&cmd_config_e_tag_e_tag_id_val,
13182 (void *)&cmd_config_e_tag_dst_pool,
13183 (void *)&cmd_config_e_tag_dst_pool_val,
13184 (void *)&cmd_config_e_tag_port,
13185 (void *)&cmd_config_e_tag_port_id,
13191 cmd_config_e_tag_filter_del_parsed(
13192 void *parsed_result,
13193 __attribute__((unused)) struct cmdline *cl,
13194 __attribute__((unused)) void *data)
13196 struct cmd_config_e_tag_result *res = parsed_result;
13197 struct rte_eth_l2_tunnel_conf entry;
13200 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13203 if (res->e_tag_id_val > 0x3fff) {
13204 printf("e-tag-id must be less than 0x3fff.\n");
13208 ret = rte_eth_dev_filter_supported(res->port_id,
13209 RTE_ETH_FILTER_L2_TUNNEL);
13211 printf("E-tag filter is not supported on port %u.\n",
13216 entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
13217 entry.tunnel_id = res->e_tag_id_val;
13219 ret = rte_eth_dev_filter_ctrl(res->port_id,
13220 RTE_ETH_FILTER_L2_TUNNEL,
13221 RTE_ETH_FILTER_DELETE,
13224 printf("E-tag filter programming error: (%s)\n",
13228 cmdline_parse_inst_t cmd_config_e_tag_filter_del = {
13229 .f = cmd_config_e_tag_filter_del_parsed,
13231 .help_str = "E-tag ... : E-tag filter delete",
13233 (void *)&cmd_config_e_tag_e_tag,
13234 (void *)&cmd_config_e_tag_set,
13235 (void *)&cmd_config_e_tag_filter,
13236 (void *)&cmd_config_e_tag_del,
13237 (void *)&cmd_config_e_tag_e_tag_id,
13238 (void *)&cmd_config_e_tag_e_tag_id_val,
13239 (void *)&cmd_config_e_tag_port,
13240 (void *)&cmd_config_e_tag_port_id,
13245 /* vf vlan anti spoof configuration */
13247 /* Common result structure for vf vlan anti spoof */
13248 struct cmd_vf_vlan_anti_spoof_result {
13249 cmdline_fixed_string_t set;
13250 cmdline_fixed_string_t vf;
13251 cmdline_fixed_string_t vlan;
13252 cmdline_fixed_string_t antispoof;
13255 cmdline_fixed_string_t on_off;
13258 /* Common CLI fields for vf vlan anti spoof enable disable */
13259 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_set =
13260 TOKEN_STRING_INITIALIZER
13261 (struct cmd_vf_vlan_anti_spoof_result,
13263 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vf =
13264 TOKEN_STRING_INITIALIZER
13265 (struct cmd_vf_vlan_anti_spoof_result,
13267 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vlan =
13268 TOKEN_STRING_INITIALIZER
13269 (struct cmd_vf_vlan_anti_spoof_result,
13271 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_antispoof =
13272 TOKEN_STRING_INITIALIZER
13273 (struct cmd_vf_vlan_anti_spoof_result,
13274 antispoof, "antispoof");
13275 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_port_id =
13276 TOKEN_NUM_INITIALIZER
13277 (struct cmd_vf_vlan_anti_spoof_result,
13279 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_vf_id =
13280 TOKEN_NUM_INITIALIZER
13281 (struct cmd_vf_vlan_anti_spoof_result,
13283 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_on_off =
13284 TOKEN_STRING_INITIALIZER
13285 (struct cmd_vf_vlan_anti_spoof_result,
13289 cmd_set_vf_vlan_anti_spoof_parsed(
13290 void *parsed_result,
13291 __attribute__((unused)) struct cmdline *cl,
13292 __attribute__((unused)) void *data)
13294 struct cmd_vf_vlan_anti_spoof_result *res = parsed_result;
13295 int ret = -ENOTSUP;
13297 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
13299 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13302 #ifdef RTE_LIBRTE_IXGBE_PMD
13303 if (ret == -ENOTSUP)
13304 ret = rte_pmd_ixgbe_set_vf_vlan_anti_spoof(res->port_id,
13305 res->vf_id, is_on);
13307 #ifdef RTE_LIBRTE_I40E_PMD
13308 if (ret == -ENOTSUP)
13309 ret = rte_pmd_i40e_set_vf_vlan_anti_spoof(res->port_id,
13310 res->vf_id, is_on);
13312 #ifdef RTE_LIBRTE_BNXT_PMD
13313 if (ret == -ENOTSUP)
13314 ret = rte_pmd_bnxt_set_vf_vlan_anti_spoof(res->port_id,
13315 res->vf_id, is_on);
13322 printf("invalid vf_id %d\n", res->vf_id);
13325 printf("invalid port_id %d\n", res->port_id);
13328 printf("function not implemented\n");
13331 printf("programming error: (%s)\n", strerror(-ret));
13335 cmdline_parse_inst_t cmd_set_vf_vlan_anti_spoof = {
13336 .f = cmd_set_vf_vlan_anti_spoof_parsed,
13338 .help_str = "set vf vlan antispoof <port_id> <vf_id> on|off",
13340 (void *)&cmd_vf_vlan_anti_spoof_set,
13341 (void *)&cmd_vf_vlan_anti_spoof_vf,
13342 (void *)&cmd_vf_vlan_anti_spoof_vlan,
13343 (void *)&cmd_vf_vlan_anti_spoof_antispoof,
13344 (void *)&cmd_vf_vlan_anti_spoof_port_id,
13345 (void *)&cmd_vf_vlan_anti_spoof_vf_id,
13346 (void *)&cmd_vf_vlan_anti_spoof_on_off,
13351 /* vf mac anti spoof configuration */
13353 /* Common result structure for vf mac anti spoof */
13354 struct cmd_vf_mac_anti_spoof_result {
13355 cmdline_fixed_string_t set;
13356 cmdline_fixed_string_t vf;
13357 cmdline_fixed_string_t mac;
13358 cmdline_fixed_string_t antispoof;
13361 cmdline_fixed_string_t on_off;
13364 /* Common CLI fields for vf mac anti spoof enable disable */
13365 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_set =
13366 TOKEN_STRING_INITIALIZER
13367 (struct cmd_vf_mac_anti_spoof_result,
13369 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_vf =
13370 TOKEN_STRING_INITIALIZER
13371 (struct cmd_vf_mac_anti_spoof_result,
13373 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_mac =
13374 TOKEN_STRING_INITIALIZER
13375 (struct cmd_vf_mac_anti_spoof_result,
13377 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_antispoof =
13378 TOKEN_STRING_INITIALIZER
13379 (struct cmd_vf_mac_anti_spoof_result,
13380 antispoof, "antispoof");
13381 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_port_id =
13382 TOKEN_NUM_INITIALIZER
13383 (struct cmd_vf_mac_anti_spoof_result,
13385 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_vf_id =
13386 TOKEN_NUM_INITIALIZER
13387 (struct cmd_vf_mac_anti_spoof_result,
13389 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_on_off =
13390 TOKEN_STRING_INITIALIZER
13391 (struct cmd_vf_mac_anti_spoof_result,
13395 cmd_set_vf_mac_anti_spoof_parsed(
13396 void *parsed_result,
13397 __attribute__((unused)) struct cmdline *cl,
13398 __attribute__((unused)) void *data)
13400 struct cmd_vf_mac_anti_spoof_result *res = parsed_result;
13401 int ret = -ENOTSUP;
13403 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
13405 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13408 #ifdef RTE_LIBRTE_IXGBE_PMD
13409 if (ret == -ENOTSUP)
13410 ret = rte_pmd_ixgbe_set_vf_mac_anti_spoof(res->port_id,
13411 res->vf_id, is_on);
13413 #ifdef RTE_LIBRTE_I40E_PMD
13414 if (ret == -ENOTSUP)
13415 ret = rte_pmd_i40e_set_vf_mac_anti_spoof(res->port_id,
13416 res->vf_id, is_on);
13418 #ifdef RTE_LIBRTE_BNXT_PMD
13419 if (ret == -ENOTSUP)
13420 ret = rte_pmd_bnxt_set_vf_mac_anti_spoof(res->port_id,
13421 res->vf_id, is_on);
13428 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
13431 printf("invalid port_id %d\n", res->port_id);
13434 printf("function not implemented\n");
13437 printf("programming error: (%s)\n", strerror(-ret));
13441 cmdline_parse_inst_t cmd_set_vf_mac_anti_spoof = {
13442 .f = cmd_set_vf_mac_anti_spoof_parsed,
13444 .help_str = "set vf mac antispoof <port_id> <vf_id> on|off",
13446 (void *)&cmd_vf_mac_anti_spoof_set,
13447 (void *)&cmd_vf_mac_anti_spoof_vf,
13448 (void *)&cmd_vf_mac_anti_spoof_mac,
13449 (void *)&cmd_vf_mac_anti_spoof_antispoof,
13450 (void *)&cmd_vf_mac_anti_spoof_port_id,
13451 (void *)&cmd_vf_mac_anti_spoof_vf_id,
13452 (void *)&cmd_vf_mac_anti_spoof_on_off,
13457 /* vf vlan strip queue configuration */
13459 /* Common result structure for vf mac anti spoof */
13460 struct cmd_vf_vlan_stripq_result {
13461 cmdline_fixed_string_t set;
13462 cmdline_fixed_string_t vf;
13463 cmdline_fixed_string_t vlan;
13464 cmdline_fixed_string_t stripq;
13467 cmdline_fixed_string_t on_off;
13470 /* Common CLI fields for vf vlan strip enable disable */
13471 cmdline_parse_token_string_t cmd_vf_vlan_stripq_set =
13472 TOKEN_STRING_INITIALIZER
13473 (struct cmd_vf_vlan_stripq_result,
13475 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vf =
13476 TOKEN_STRING_INITIALIZER
13477 (struct cmd_vf_vlan_stripq_result,
13479 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vlan =
13480 TOKEN_STRING_INITIALIZER
13481 (struct cmd_vf_vlan_stripq_result,
13483 cmdline_parse_token_string_t cmd_vf_vlan_stripq_stripq =
13484 TOKEN_STRING_INITIALIZER
13485 (struct cmd_vf_vlan_stripq_result,
13487 cmdline_parse_token_num_t cmd_vf_vlan_stripq_port_id =
13488 TOKEN_NUM_INITIALIZER
13489 (struct cmd_vf_vlan_stripq_result,
13491 cmdline_parse_token_num_t cmd_vf_vlan_stripq_vf_id =
13492 TOKEN_NUM_INITIALIZER
13493 (struct cmd_vf_vlan_stripq_result,
13495 cmdline_parse_token_string_t cmd_vf_vlan_stripq_on_off =
13496 TOKEN_STRING_INITIALIZER
13497 (struct cmd_vf_vlan_stripq_result,
13501 cmd_set_vf_vlan_stripq_parsed(
13502 void *parsed_result,
13503 __attribute__((unused)) struct cmdline *cl,
13504 __attribute__((unused)) void *data)
13506 struct cmd_vf_vlan_stripq_result *res = parsed_result;
13507 int ret = -ENOTSUP;
13509 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
13511 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13514 #ifdef RTE_LIBRTE_IXGBE_PMD
13515 if (ret == -ENOTSUP)
13516 ret = rte_pmd_ixgbe_set_vf_vlan_stripq(res->port_id,
13517 res->vf_id, is_on);
13519 #ifdef RTE_LIBRTE_I40E_PMD
13520 if (ret == -ENOTSUP)
13521 ret = rte_pmd_i40e_set_vf_vlan_stripq(res->port_id,
13522 res->vf_id, is_on);
13524 #ifdef RTE_LIBRTE_BNXT_PMD
13525 if (ret == -ENOTSUP)
13526 ret = rte_pmd_bnxt_set_vf_vlan_stripq(res->port_id,
13527 res->vf_id, is_on);
13534 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
13537 printf("invalid port_id %d\n", res->port_id);
13540 printf("function not implemented\n");
13543 printf("programming error: (%s)\n", strerror(-ret));
13547 cmdline_parse_inst_t cmd_set_vf_vlan_stripq = {
13548 .f = cmd_set_vf_vlan_stripq_parsed,
13550 .help_str = "set vf vlan stripq <port_id> <vf_id> on|off",
13552 (void *)&cmd_vf_vlan_stripq_set,
13553 (void *)&cmd_vf_vlan_stripq_vf,
13554 (void *)&cmd_vf_vlan_stripq_vlan,
13555 (void *)&cmd_vf_vlan_stripq_stripq,
13556 (void *)&cmd_vf_vlan_stripq_port_id,
13557 (void *)&cmd_vf_vlan_stripq_vf_id,
13558 (void *)&cmd_vf_vlan_stripq_on_off,
13563 /* vf vlan insert configuration */
13565 /* Common result structure for vf vlan insert */
13566 struct cmd_vf_vlan_insert_result {
13567 cmdline_fixed_string_t set;
13568 cmdline_fixed_string_t vf;
13569 cmdline_fixed_string_t vlan;
13570 cmdline_fixed_string_t insert;
13576 /* Common CLI fields for vf vlan insert enable disable */
13577 cmdline_parse_token_string_t cmd_vf_vlan_insert_set =
13578 TOKEN_STRING_INITIALIZER
13579 (struct cmd_vf_vlan_insert_result,
13581 cmdline_parse_token_string_t cmd_vf_vlan_insert_vf =
13582 TOKEN_STRING_INITIALIZER
13583 (struct cmd_vf_vlan_insert_result,
13585 cmdline_parse_token_string_t cmd_vf_vlan_insert_vlan =
13586 TOKEN_STRING_INITIALIZER
13587 (struct cmd_vf_vlan_insert_result,
13589 cmdline_parse_token_string_t cmd_vf_vlan_insert_insert =
13590 TOKEN_STRING_INITIALIZER
13591 (struct cmd_vf_vlan_insert_result,
13593 cmdline_parse_token_num_t cmd_vf_vlan_insert_port_id =
13594 TOKEN_NUM_INITIALIZER
13595 (struct cmd_vf_vlan_insert_result,
13597 cmdline_parse_token_num_t cmd_vf_vlan_insert_vf_id =
13598 TOKEN_NUM_INITIALIZER
13599 (struct cmd_vf_vlan_insert_result,
13601 cmdline_parse_token_num_t cmd_vf_vlan_insert_vlan_id =
13602 TOKEN_NUM_INITIALIZER
13603 (struct cmd_vf_vlan_insert_result,
13607 cmd_set_vf_vlan_insert_parsed(
13608 void *parsed_result,
13609 __attribute__((unused)) struct cmdline *cl,
13610 __attribute__((unused)) void *data)
13612 struct cmd_vf_vlan_insert_result *res = parsed_result;
13613 int ret = -ENOTSUP;
13615 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13618 #ifdef RTE_LIBRTE_IXGBE_PMD
13619 if (ret == -ENOTSUP)
13620 ret = rte_pmd_ixgbe_set_vf_vlan_insert(res->port_id, res->vf_id,
13623 #ifdef RTE_LIBRTE_I40E_PMD
13624 if (ret == -ENOTSUP)
13625 ret = rte_pmd_i40e_set_vf_vlan_insert(res->port_id, res->vf_id,
13628 #ifdef RTE_LIBRTE_BNXT_PMD
13629 if (ret == -ENOTSUP)
13630 ret = rte_pmd_bnxt_set_vf_vlan_insert(res->port_id, res->vf_id,
13638 printf("invalid vf_id %d or vlan_id %d\n", res->vf_id, res->vlan_id);
13641 printf("invalid port_id %d\n", res->port_id);
13644 printf("function not implemented\n");
13647 printf("programming error: (%s)\n", strerror(-ret));
13651 cmdline_parse_inst_t cmd_set_vf_vlan_insert = {
13652 .f = cmd_set_vf_vlan_insert_parsed,
13654 .help_str = "set vf vlan insert <port_id> <vf_id> <vlan_id>",
13656 (void *)&cmd_vf_vlan_insert_set,
13657 (void *)&cmd_vf_vlan_insert_vf,
13658 (void *)&cmd_vf_vlan_insert_vlan,
13659 (void *)&cmd_vf_vlan_insert_insert,
13660 (void *)&cmd_vf_vlan_insert_port_id,
13661 (void *)&cmd_vf_vlan_insert_vf_id,
13662 (void *)&cmd_vf_vlan_insert_vlan_id,
13667 /* tx loopback configuration */
13669 /* Common result structure for tx loopback */
13670 struct cmd_tx_loopback_result {
13671 cmdline_fixed_string_t set;
13672 cmdline_fixed_string_t tx;
13673 cmdline_fixed_string_t loopback;
13675 cmdline_fixed_string_t on_off;
13678 /* Common CLI fields for tx loopback enable disable */
13679 cmdline_parse_token_string_t cmd_tx_loopback_set =
13680 TOKEN_STRING_INITIALIZER
13681 (struct cmd_tx_loopback_result,
13683 cmdline_parse_token_string_t cmd_tx_loopback_tx =
13684 TOKEN_STRING_INITIALIZER
13685 (struct cmd_tx_loopback_result,
13687 cmdline_parse_token_string_t cmd_tx_loopback_loopback =
13688 TOKEN_STRING_INITIALIZER
13689 (struct cmd_tx_loopback_result,
13690 loopback, "loopback");
13691 cmdline_parse_token_num_t cmd_tx_loopback_port_id =
13692 TOKEN_NUM_INITIALIZER
13693 (struct cmd_tx_loopback_result,
13695 cmdline_parse_token_string_t cmd_tx_loopback_on_off =
13696 TOKEN_STRING_INITIALIZER
13697 (struct cmd_tx_loopback_result,
13701 cmd_set_tx_loopback_parsed(
13702 void *parsed_result,
13703 __attribute__((unused)) struct cmdline *cl,
13704 __attribute__((unused)) void *data)
13706 struct cmd_tx_loopback_result *res = parsed_result;
13707 int ret = -ENOTSUP;
13709 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
13711 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13714 #ifdef RTE_LIBRTE_IXGBE_PMD
13715 if (ret == -ENOTSUP)
13716 ret = rte_pmd_ixgbe_set_tx_loopback(res->port_id, is_on);
13718 #ifdef RTE_LIBRTE_I40E_PMD
13719 if (ret == -ENOTSUP)
13720 ret = rte_pmd_i40e_set_tx_loopback(res->port_id, is_on);
13722 #ifdef RTE_LIBRTE_BNXT_PMD
13723 if (ret == -ENOTSUP)
13724 ret = rte_pmd_bnxt_set_tx_loopback(res->port_id, is_on);
13726 #if defined RTE_LIBRTE_DPAA_BUS && defined RTE_LIBRTE_DPAA_PMD
13727 if (ret == -ENOTSUP)
13728 ret = rte_pmd_dpaa_set_tx_loopback(res->port_id, is_on);
13735 printf("invalid is_on %d\n", is_on);
13738 printf("invalid port_id %d\n", res->port_id);
13741 printf("function not implemented\n");
13744 printf("programming error: (%s)\n", strerror(-ret));
13748 cmdline_parse_inst_t cmd_set_tx_loopback = {
13749 .f = cmd_set_tx_loopback_parsed,
13751 .help_str = "set tx loopback <port_id> on|off",
13753 (void *)&cmd_tx_loopback_set,
13754 (void *)&cmd_tx_loopback_tx,
13755 (void *)&cmd_tx_loopback_loopback,
13756 (void *)&cmd_tx_loopback_port_id,
13757 (void *)&cmd_tx_loopback_on_off,
13762 /* all queues drop enable configuration */
13764 /* Common result structure for all queues drop enable */
13765 struct cmd_all_queues_drop_en_result {
13766 cmdline_fixed_string_t set;
13767 cmdline_fixed_string_t all;
13768 cmdline_fixed_string_t queues;
13769 cmdline_fixed_string_t drop;
13771 cmdline_fixed_string_t on_off;
13774 /* Common CLI fields for tx loopback enable disable */
13775 cmdline_parse_token_string_t cmd_all_queues_drop_en_set =
13776 TOKEN_STRING_INITIALIZER
13777 (struct cmd_all_queues_drop_en_result,
13779 cmdline_parse_token_string_t cmd_all_queues_drop_en_all =
13780 TOKEN_STRING_INITIALIZER
13781 (struct cmd_all_queues_drop_en_result,
13783 cmdline_parse_token_string_t cmd_all_queues_drop_en_queues =
13784 TOKEN_STRING_INITIALIZER
13785 (struct cmd_all_queues_drop_en_result,
13787 cmdline_parse_token_string_t cmd_all_queues_drop_en_drop =
13788 TOKEN_STRING_INITIALIZER
13789 (struct cmd_all_queues_drop_en_result,
13791 cmdline_parse_token_num_t cmd_all_queues_drop_en_port_id =
13792 TOKEN_NUM_INITIALIZER
13793 (struct cmd_all_queues_drop_en_result,
13795 cmdline_parse_token_string_t cmd_all_queues_drop_en_on_off =
13796 TOKEN_STRING_INITIALIZER
13797 (struct cmd_all_queues_drop_en_result,
13801 cmd_set_all_queues_drop_en_parsed(
13802 void *parsed_result,
13803 __attribute__((unused)) struct cmdline *cl,
13804 __attribute__((unused)) void *data)
13806 struct cmd_all_queues_drop_en_result *res = parsed_result;
13807 int ret = -ENOTSUP;
13808 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
13810 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13813 #ifdef RTE_LIBRTE_IXGBE_PMD
13814 if (ret == -ENOTSUP)
13815 ret = rte_pmd_ixgbe_set_all_queues_drop_en(res->port_id, is_on);
13817 #ifdef RTE_LIBRTE_BNXT_PMD
13818 if (ret == -ENOTSUP)
13819 ret = rte_pmd_bnxt_set_all_queues_drop_en(res->port_id, is_on);
13825 printf("invalid is_on %d\n", is_on);
13828 printf("invalid port_id %d\n", res->port_id);
13831 printf("function not implemented\n");
13834 printf("programming error: (%s)\n", strerror(-ret));
13838 cmdline_parse_inst_t cmd_set_all_queues_drop_en = {
13839 .f = cmd_set_all_queues_drop_en_parsed,
13841 .help_str = "set all queues drop <port_id> on|off",
13843 (void *)&cmd_all_queues_drop_en_set,
13844 (void *)&cmd_all_queues_drop_en_all,
13845 (void *)&cmd_all_queues_drop_en_queues,
13846 (void *)&cmd_all_queues_drop_en_drop,
13847 (void *)&cmd_all_queues_drop_en_port_id,
13848 (void *)&cmd_all_queues_drop_en_on_off,
13853 /* vf split drop enable configuration */
13855 /* Common result structure for vf split drop enable */
13856 struct cmd_vf_split_drop_en_result {
13857 cmdline_fixed_string_t set;
13858 cmdline_fixed_string_t vf;
13859 cmdline_fixed_string_t split;
13860 cmdline_fixed_string_t drop;
13863 cmdline_fixed_string_t on_off;
13866 /* Common CLI fields for vf split drop enable disable */
13867 cmdline_parse_token_string_t cmd_vf_split_drop_en_set =
13868 TOKEN_STRING_INITIALIZER
13869 (struct cmd_vf_split_drop_en_result,
13871 cmdline_parse_token_string_t cmd_vf_split_drop_en_vf =
13872 TOKEN_STRING_INITIALIZER
13873 (struct cmd_vf_split_drop_en_result,
13875 cmdline_parse_token_string_t cmd_vf_split_drop_en_split =
13876 TOKEN_STRING_INITIALIZER
13877 (struct cmd_vf_split_drop_en_result,
13879 cmdline_parse_token_string_t cmd_vf_split_drop_en_drop =
13880 TOKEN_STRING_INITIALIZER
13881 (struct cmd_vf_split_drop_en_result,
13883 cmdline_parse_token_num_t cmd_vf_split_drop_en_port_id =
13884 TOKEN_NUM_INITIALIZER
13885 (struct cmd_vf_split_drop_en_result,
13887 cmdline_parse_token_num_t cmd_vf_split_drop_en_vf_id =
13888 TOKEN_NUM_INITIALIZER
13889 (struct cmd_vf_split_drop_en_result,
13891 cmdline_parse_token_string_t cmd_vf_split_drop_en_on_off =
13892 TOKEN_STRING_INITIALIZER
13893 (struct cmd_vf_split_drop_en_result,
13897 cmd_set_vf_split_drop_en_parsed(
13898 void *parsed_result,
13899 __attribute__((unused)) struct cmdline *cl,
13900 __attribute__((unused)) void *data)
13902 struct cmd_vf_split_drop_en_result *res = parsed_result;
13903 int ret = -ENOTSUP;
13904 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
13906 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13909 #ifdef RTE_LIBRTE_IXGBE_PMD
13910 ret = rte_pmd_ixgbe_set_vf_split_drop_en(res->port_id, res->vf_id,
13917 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
13920 printf("invalid port_id %d\n", res->port_id);
13923 printf("not supported on port %d\n", res->port_id);
13926 printf("programming error: (%s)\n", strerror(-ret));
13930 cmdline_parse_inst_t cmd_set_vf_split_drop_en = {
13931 .f = cmd_set_vf_split_drop_en_parsed,
13933 .help_str = "set vf split drop <port_id> <vf_id> on|off",
13935 (void *)&cmd_vf_split_drop_en_set,
13936 (void *)&cmd_vf_split_drop_en_vf,
13937 (void *)&cmd_vf_split_drop_en_split,
13938 (void *)&cmd_vf_split_drop_en_drop,
13939 (void *)&cmd_vf_split_drop_en_port_id,
13940 (void *)&cmd_vf_split_drop_en_vf_id,
13941 (void *)&cmd_vf_split_drop_en_on_off,
13946 /* vf mac address configuration */
13948 /* Common result structure for vf mac address */
13949 struct cmd_set_vf_mac_addr_result {
13950 cmdline_fixed_string_t set;
13951 cmdline_fixed_string_t vf;
13952 cmdline_fixed_string_t mac;
13953 cmdline_fixed_string_t addr;
13956 struct rte_ether_addr mac_addr;
13960 /* Common CLI fields for vf split drop enable disable */
13961 cmdline_parse_token_string_t cmd_set_vf_mac_addr_set =
13962 TOKEN_STRING_INITIALIZER
13963 (struct cmd_set_vf_mac_addr_result,
13965 cmdline_parse_token_string_t cmd_set_vf_mac_addr_vf =
13966 TOKEN_STRING_INITIALIZER
13967 (struct cmd_set_vf_mac_addr_result,
13969 cmdline_parse_token_string_t cmd_set_vf_mac_addr_mac =
13970 TOKEN_STRING_INITIALIZER
13971 (struct cmd_set_vf_mac_addr_result,
13973 cmdline_parse_token_string_t cmd_set_vf_mac_addr_addr =
13974 TOKEN_STRING_INITIALIZER
13975 (struct cmd_set_vf_mac_addr_result,
13977 cmdline_parse_token_num_t cmd_set_vf_mac_addr_port_id =
13978 TOKEN_NUM_INITIALIZER
13979 (struct cmd_set_vf_mac_addr_result,
13981 cmdline_parse_token_num_t cmd_set_vf_mac_addr_vf_id =
13982 TOKEN_NUM_INITIALIZER
13983 (struct cmd_set_vf_mac_addr_result,
13985 cmdline_parse_token_etheraddr_t cmd_set_vf_mac_addr_mac_addr =
13986 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_mac_addr_result,
13990 cmd_set_vf_mac_addr_parsed(
13991 void *parsed_result,
13992 __attribute__((unused)) struct cmdline *cl,
13993 __attribute__((unused)) void *data)
13995 struct cmd_set_vf_mac_addr_result *res = parsed_result;
13996 int ret = -ENOTSUP;
13998 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14001 #ifdef RTE_LIBRTE_IXGBE_PMD
14002 if (ret == -ENOTSUP)
14003 ret = rte_pmd_ixgbe_set_vf_mac_addr(res->port_id, res->vf_id,
14006 #ifdef RTE_LIBRTE_I40E_PMD
14007 if (ret == -ENOTSUP)
14008 ret = rte_pmd_i40e_set_vf_mac_addr(res->port_id, res->vf_id,
14011 #ifdef RTE_LIBRTE_BNXT_PMD
14012 if (ret == -ENOTSUP)
14013 ret = rte_pmd_bnxt_set_vf_mac_addr(res->port_id, res->vf_id,
14021 printf("invalid vf_id %d or mac_addr\n", res->vf_id);
14024 printf("invalid port_id %d\n", res->port_id);
14027 printf("function not implemented\n");
14030 printf("programming error: (%s)\n", strerror(-ret));
14034 cmdline_parse_inst_t cmd_set_vf_mac_addr = {
14035 .f = cmd_set_vf_mac_addr_parsed,
14037 .help_str = "set vf mac addr <port_id> <vf_id> <mac_addr>",
14039 (void *)&cmd_set_vf_mac_addr_set,
14040 (void *)&cmd_set_vf_mac_addr_vf,
14041 (void *)&cmd_set_vf_mac_addr_mac,
14042 (void *)&cmd_set_vf_mac_addr_addr,
14043 (void *)&cmd_set_vf_mac_addr_port_id,
14044 (void *)&cmd_set_vf_mac_addr_vf_id,
14045 (void *)&cmd_set_vf_mac_addr_mac_addr,
14050 /* MACsec configuration */
14052 /* Common result structure for MACsec offload enable */
14053 struct cmd_macsec_offload_on_result {
14054 cmdline_fixed_string_t set;
14055 cmdline_fixed_string_t macsec;
14056 cmdline_fixed_string_t offload;
14058 cmdline_fixed_string_t on;
14059 cmdline_fixed_string_t encrypt;
14060 cmdline_fixed_string_t en_on_off;
14061 cmdline_fixed_string_t replay_protect;
14062 cmdline_fixed_string_t rp_on_off;
14065 /* Common CLI fields for MACsec offload disable */
14066 cmdline_parse_token_string_t cmd_macsec_offload_on_set =
14067 TOKEN_STRING_INITIALIZER
14068 (struct cmd_macsec_offload_on_result,
14070 cmdline_parse_token_string_t cmd_macsec_offload_on_macsec =
14071 TOKEN_STRING_INITIALIZER
14072 (struct cmd_macsec_offload_on_result,
14074 cmdline_parse_token_string_t cmd_macsec_offload_on_offload =
14075 TOKEN_STRING_INITIALIZER
14076 (struct cmd_macsec_offload_on_result,
14077 offload, "offload");
14078 cmdline_parse_token_num_t cmd_macsec_offload_on_port_id =
14079 TOKEN_NUM_INITIALIZER
14080 (struct cmd_macsec_offload_on_result,
14082 cmdline_parse_token_string_t cmd_macsec_offload_on_on =
14083 TOKEN_STRING_INITIALIZER
14084 (struct cmd_macsec_offload_on_result,
14086 cmdline_parse_token_string_t cmd_macsec_offload_on_encrypt =
14087 TOKEN_STRING_INITIALIZER
14088 (struct cmd_macsec_offload_on_result,
14089 encrypt, "encrypt");
14090 cmdline_parse_token_string_t cmd_macsec_offload_on_en_on_off =
14091 TOKEN_STRING_INITIALIZER
14092 (struct cmd_macsec_offload_on_result,
14093 en_on_off, "on#off");
14094 cmdline_parse_token_string_t cmd_macsec_offload_on_replay_protect =
14095 TOKEN_STRING_INITIALIZER
14096 (struct cmd_macsec_offload_on_result,
14097 replay_protect, "replay-protect");
14098 cmdline_parse_token_string_t cmd_macsec_offload_on_rp_on_off =
14099 TOKEN_STRING_INITIALIZER
14100 (struct cmd_macsec_offload_on_result,
14101 rp_on_off, "on#off");
14104 cmd_set_macsec_offload_on_parsed(
14105 void *parsed_result,
14106 __attribute__((unused)) struct cmdline *cl,
14107 __attribute__((unused)) void *data)
14109 struct cmd_macsec_offload_on_result *res = parsed_result;
14110 int ret = -ENOTSUP;
14111 portid_t port_id = res->port_id;
14112 int en = (strcmp(res->en_on_off, "on") == 0) ? 1 : 0;
14113 int rp = (strcmp(res->rp_on_off, "on") == 0) ? 1 : 0;
14114 struct rte_eth_dev_info dev_info;
14116 if (port_id_is_invalid(port_id, ENABLED_WARN))
14118 if (!port_is_stopped(port_id)) {
14119 printf("Please stop port %d first\n", port_id);
14123 ret = eth_dev_info_get_print_err(port_id, &dev_info);
14127 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) {
14128 #ifdef RTE_LIBRTE_IXGBE_PMD
14129 ret = rte_pmd_ixgbe_macsec_enable(port_id, en, rp);
14137 ports[port_id].dev_conf.txmode.offloads |=
14138 DEV_TX_OFFLOAD_MACSEC_INSERT;
14139 cmd_reconfig_device_queue(port_id, 1, 1);
14142 printf("invalid port_id %d\n", port_id);
14145 printf("not supported on port %d\n", port_id);
14148 printf("programming error: (%s)\n", strerror(-ret));
14152 cmdline_parse_inst_t cmd_set_macsec_offload_on = {
14153 .f = cmd_set_macsec_offload_on_parsed,
14155 .help_str = "set macsec offload <port_id> on "
14156 "encrypt on|off replay-protect on|off",
14158 (void *)&cmd_macsec_offload_on_set,
14159 (void *)&cmd_macsec_offload_on_macsec,
14160 (void *)&cmd_macsec_offload_on_offload,
14161 (void *)&cmd_macsec_offload_on_port_id,
14162 (void *)&cmd_macsec_offload_on_on,
14163 (void *)&cmd_macsec_offload_on_encrypt,
14164 (void *)&cmd_macsec_offload_on_en_on_off,
14165 (void *)&cmd_macsec_offload_on_replay_protect,
14166 (void *)&cmd_macsec_offload_on_rp_on_off,
14171 /* Common result structure for MACsec offload disable */
14172 struct cmd_macsec_offload_off_result {
14173 cmdline_fixed_string_t set;
14174 cmdline_fixed_string_t macsec;
14175 cmdline_fixed_string_t offload;
14177 cmdline_fixed_string_t off;
14180 /* Common CLI fields for MACsec offload disable */
14181 cmdline_parse_token_string_t cmd_macsec_offload_off_set =
14182 TOKEN_STRING_INITIALIZER
14183 (struct cmd_macsec_offload_off_result,
14185 cmdline_parse_token_string_t cmd_macsec_offload_off_macsec =
14186 TOKEN_STRING_INITIALIZER
14187 (struct cmd_macsec_offload_off_result,
14189 cmdline_parse_token_string_t cmd_macsec_offload_off_offload =
14190 TOKEN_STRING_INITIALIZER
14191 (struct cmd_macsec_offload_off_result,
14192 offload, "offload");
14193 cmdline_parse_token_num_t cmd_macsec_offload_off_port_id =
14194 TOKEN_NUM_INITIALIZER
14195 (struct cmd_macsec_offload_off_result,
14197 cmdline_parse_token_string_t cmd_macsec_offload_off_off =
14198 TOKEN_STRING_INITIALIZER
14199 (struct cmd_macsec_offload_off_result,
14203 cmd_set_macsec_offload_off_parsed(
14204 void *parsed_result,
14205 __attribute__((unused)) struct cmdline *cl,
14206 __attribute__((unused)) void *data)
14208 struct cmd_macsec_offload_off_result *res = parsed_result;
14209 int ret = -ENOTSUP;
14210 struct rte_eth_dev_info dev_info;
14211 portid_t port_id = res->port_id;
14213 if (port_id_is_invalid(port_id, ENABLED_WARN))
14215 if (!port_is_stopped(port_id)) {
14216 printf("Please stop port %d first\n", port_id);
14220 ret = eth_dev_info_get_print_err(port_id, &dev_info);
14224 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) {
14225 #ifdef RTE_LIBRTE_IXGBE_PMD
14226 ret = rte_pmd_ixgbe_macsec_disable(port_id);
14231 ports[port_id].dev_conf.txmode.offloads &=
14232 ~DEV_TX_OFFLOAD_MACSEC_INSERT;
14233 cmd_reconfig_device_queue(port_id, 1, 1);
14236 printf("invalid port_id %d\n", port_id);
14239 printf("not supported on port %d\n", port_id);
14242 printf("programming error: (%s)\n", strerror(-ret));
14246 cmdline_parse_inst_t cmd_set_macsec_offload_off = {
14247 .f = cmd_set_macsec_offload_off_parsed,
14249 .help_str = "set macsec offload <port_id> off",
14251 (void *)&cmd_macsec_offload_off_set,
14252 (void *)&cmd_macsec_offload_off_macsec,
14253 (void *)&cmd_macsec_offload_off_offload,
14254 (void *)&cmd_macsec_offload_off_port_id,
14255 (void *)&cmd_macsec_offload_off_off,
14260 /* Common result structure for MACsec secure connection configure */
14261 struct cmd_macsec_sc_result {
14262 cmdline_fixed_string_t set;
14263 cmdline_fixed_string_t macsec;
14264 cmdline_fixed_string_t sc;
14265 cmdline_fixed_string_t tx_rx;
14267 struct rte_ether_addr mac;
14271 /* Common CLI fields for MACsec secure connection configure */
14272 cmdline_parse_token_string_t cmd_macsec_sc_set =
14273 TOKEN_STRING_INITIALIZER
14274 (struct cmd_macsec_sc_result,
14276 cmdline_parse_token_string_t cmd_macsec_sc_macsec =
14277 TOKEN_STRING_INITIALIZER
14278 (struct cmd_macsec_sc_result,
14280 cmdline_parse_token_string_t cmd_macsec_sc_sc =
14281 TOKEN_STRING_INITIALIZER
14282 (struct cmd_macsec_sc_result,
14284 cmdline_parse_token_string_t cmd_macsec_sc_tx_rx =
14285 TOKEN_STRING_INITIALIZER
14286 (struct cmd_macsec_sc_result,
14288 cmdline_parse_token_num_t cmd_macsec_sc_port_id =
14289 TOKEN_NUM_INITIALIZER
14290 (struct cmd_macsec_sc_result,
14292 cmdline_parse_token_etheraddr_t cmd_macsec_sc_mac =
14293 TOKEN_ETHERADDR_INITIALIZER
14294 (struct cmd_macsec_sc_result,
14296 cmdline_parse_token_num_t cmd_macsec_sc_pi =
14297 TOKEN_NUM_INITIALIZER
14298 (struct cmd_macsec_sc_result,
14302 cmd_set_macsec_sc_parsed(
14303 void *parsed_result,
14304 __attribute__((unused)) struct cmdline *cl,
14305 __attribute__((unused)) void *data)
14307 struct cmd_macsec_sc_result *res = parsed_result;
14308 int ret = -ENOTSUP;
14309 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0;
14311 #ifdef RTE_LIBRTE_IXGBE_PMD
14313 rte_pmd_ixgbe_macsec_config_txsc(res->port_id,
14314 res->mac.addr_bytes) :
14315 rte_pmd_ixgbe_macsec_config_rxsc(res->port_id,
14316 res->mac.addr_bytes, res->pi);
14318 RTE_SET_USED(is_tx);
14324 printf("invalid port_id %d\n", res->port_id);
14327 printf("not supported on port %d\n", res->port_id);
14330 printf("programming error: (%s)\n", strerror(-ret));
14334 cmdline_parse_inst_t cmd_set_macsec_sc = {
14335 .f = cmd_set_macsec_sc_parsed,
14337 .help_str = "set macsec sc tx|rx <port_id> <mac> <pi>",
14339 (void *)&cmd_macsec_sc_set,
14340 (void *)&cmd_macsec_sc_macsec,
14341 (void *)&cmd_macsec_sc_sc,
14342 (void *)&cmd_macsec_sc_tx_rx,
14343 (void *)&cmd_macsec_sc_port_id,
14344 (void *)&cmd_macsec_sc_mac,
14345 (void *)&cmd_macsec_sc_pi,
14350 /* Common result structure for MACsec secure connection configure */
14351 struct cmd_macsec_sa_result {
14352 cmdline_fixed_string_t set;
14353 cmdline_fixed_string_t macsec;
14354 cmdline_fixed_string_t sa;
14355 cmdline_fixed_string_t tx_rx;
14360 cmdline_fixed_string_t key;
14363 /* Common CLI fields for MACsec secure connection configure */
14364 cmdline_parse_token_string_t cmd_macsec_sa_set =
14365 TOKEN_STRING_INITIALIZER
14366 (struct cmd_macsec_sa_result,
14368 cmdline_parse_token_string_t cmd_macsec_sa_macsec =
14369 TOKEN_STRING_INITIALIZER
14370 (struct cmd_macsec_sa_result,
14372 cmdline_parse_token_string_t cmd_macsec_sa_sa =
14373 TOKEN_STRING_INITIALIZER
14374 (struct cmd_macsec_sa_result,
14376 cmdline_parse_token_string_t cmd_macsec_sa_tx_rx =
14377 TOKEN_STRING_INITIALIZER
14378 (struct cmd_macsec_sa_result,
14380 cmdline_parse_token_num_t cmd_macsec_sa_port_id =
14381 TOKEN_NUM_INITIALIZER
14382 (struct cmd_macsec_sa_result,
14384 cmdline_parse_token_num_t cmd_macsec_sa_idx =
14385 TOKEN_NUM_INITIALIZER
14386 (struct cmd_macsec_sa_result,
14388 cmdline_parse_token_num_t cmd_macsec_sa_an =
14389 TOKEN_NUM_INITIALIZER
14390 (struct cmd_macsec_sa_result,
14392 cmdline_parse_token_num_t cmd_macsec_sa_pn =
14393 TOKEN_NUM_INITIALIZER
14394 (struct cmd_macsec_sa_result,
14396 cmdline_parse_token_string_t cmd_macsec_sa_key =
14397 TOKEN_STRING_INITIALIZER
14398 (struct cmd_macsec_sa_result,
14402 cmd_set_macsec_sa_parsed(
14403 void *parsed_result,
14404 __attribute__((unused)) struct cmdline *cl,
14405 __attribute__((unused)) void *data)
14407 struct cmd_macsec_sa_result *res = parsed_result;
14408 int ret = -ENOTSUP;
14409 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0;
14410 uint8_t key[16] = { 0 };
14416 key_len = strlen(res->key) / 2;
14420 for (i = 0; i < key_len; i++) {
14421 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
14424 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
14427 key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
14430 #ifdef RTE_LIBRTE_IXGBE_PMD
14432 rte_pmd_ixgbe_macsec_select_txsa(res->port_id,
14433 res->idx, res->an, res->pn, key) :
14434 rte_pmd_ixgbe_macsec_select_rxsa(res->port_id,
14435 res->idx, res->an, res->pn, key);
14437 RTE_SET_USED(is_tx);
14444 printf("invalid idx %d or an %d\n", res->idx, res->an);
14447 printf("invalid port_id %d\n", res->port_id);
14450 printf("not supported on port %d\n", res->port_id);
14453 printf("programming error: (%s)\n", strerror(-ret));
14457 cmdline_parse_inst_t cmd_set_macsec_sa = {
14458 .f = cmd_set_macsec_sa_parsed,
14460 .help_str = "set macsec sa tx|rx <port_id> <idx> <an> <pn> <key>",
14462 (void *)&cmd_macsec_sa_set,
14463 (void *)&cmd_macsec_sa_macsec,
14464 (void *)&cmd_macsec_sa_sa,
14465 (void *)&cmd_macsec_sa_tx_rx,
14466 (void *)&cmd_macsec_sa_port_id,
14467 (void *)&cmd_macsec_sa_idx,
14468 (void *)&cmd_macsec_sa_an,
14469 (void *)&cmd_macsec_sa_pn,
14470 (void *)&cmd_macsec_sa_key,
14475 /* VF unicast promiscuous mode configuration */
14477 /* Common result structure for VF unicast promiscuous mode */
14478 struct cmd_vf_promisc_result {
14479 cmdline_fixed_string_t set;
14480 cmdline_fixed_string_t vf;
14481 cmdline_fixed_string_t promisc;
14484 cmdline_fixed_string_t on_off;
14487 /* Common CLI fields for VF unicast promiscuous mode enable disable */
14488 cmdline_parse_token_string_t cmd_vf_promisc_set =
14489 TOKEN_STRING_INITIALIZER
14490 (struct cmd_vf_promisc_result,
14492 cmdline_parse_token_string_t cmd_vf_promisc_vf =
14493 TOKEN_STRING_INITIALIZER
14494 (struct cmd_vf_promisc_result,
14496 cmdline_parse_token_string_t cmd_vf_promisc_promisc =
14497 TOKEN_STRING_INITIALIZER
14498 (struct cmd_vf_promisc_result,
14499 promisc, "promisc");
14500 cmdline_parse_token_num_t cmd_vf_promisc_port_id =
14501 TOKEN_NUM_INITIALIZER
14502 (struct cmd_vf_promisc_result,
14504 cmdline_parse_token_num_t cmd_vf_promisc_vf_id =
14505 TOKEN_NUM_INITIALIZER
14506 (struct cmd_vf_promisc_result,
14508 cmdline_parse_token_string_t cmd_vf_promisc_on_off =
14509 TOKEN_STRING_INITIALIZER
14510 (struct cmd_vf_promisc_result,
14514 cmd_set_vf_promisc_parsed(
14515 void *parsed_result,
14516 __attribute__((unused)) struct cmdline *cl,
14517 __attribute__((unused)) void *data)
14519 struct cmd_vf_promisc_result *res = parsed_result;
14520 int ret = -ENOTSUP;
14522 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
14524 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14527 #ifdef RTE_LIBRTE_I40E_PMD
14528 ret = rte_pmd_i40e_set_vf_unicast_promisc(res->port_id,
14529 res->vf_id, is_on);
14536 printf("invalid vf_id %d\n", res->vf_id);
14539 printf("invalid port_id %d\n", res->port_id);
14542 printf("function not implemented\n");
14545 printf("programming error: (%s)\n", strerror(-ret));
14549 cmdline_parse_inst_t cmd_set_vf_promisc = {
14550 .f = cmd_set_vf_promisc_parsed,
14552 .help_str = "set vf promisc <port_id> <vf_id> on|off: "
14553 "Set unicast promiscuous mode for a VF from the PF",
14555 (void *)&cmd_vf_promisc_set,
14556 (void *)&cmd_vf_promisc_vf,
14557 (void *)&cmd_vf_promisc_promisc,
14558 (void *)&cmd_vf_promisc_port_id,
14559 (void *)&cmd_vf_promisc_vf_id,
14560 (void *)&cmd_vf_promisc_on_off,
14565 /* VF multicast promiscuous mode configuration */
14567 /* Common result structure for VF multicast promiscuous mode */
14568 struct cmd_vf_allmulti_result {
14569 cmdline_fixed_string_t set;
14570 cmdline_fixed_string_t vf;
14571 cmdline_fixed_string_t allmulti;
14574 cmdline_fixed_string_t on_off;
14577 /* Common CLI fields for VF multicast promiscuous mode enable disable */
14578 cmdline_parse_token_string_t cmd_vf_allmulti_set =
14579 TOKEN_STRING_INITIALIZER
14580 (struct cmd_vf_allmulti_result,
14582 cmdline_parse_token_string_t cmd_vf_allmulti_vf =
14583 TOKEN_STRING_INITIALIZER
14584 (struct cmd_vf_allmulti_result,
14586 cmdline_parse_token_string_t cmd_vf_allmulti_allmulti =
14587 TOKEN_STRING_INITIALIZER
14588 (struct cmd_vf_allmulti_result,
14589 allmulti, "allmulti");
14590 cmdline_parse_token_num_t cmd_vf_allmulti_port_id =
14591 TOKEN_NUM_INITIALIZER
14592 (struct cmd_vf_allmulti_result,
14594 cmdline_parse_token_num_t cmd_vf_allmulti_vf_id =
14595 TOKEN_NUM_INITIALIZER
14596 (struct cmd_vf_allmulti_result,
14598 cmdline_parse_token_string_t cmd_vf_allmulti_on_off =
14599 TOKEN_STRING_INITIALIZER
14600 (struct cmd_vf_allmulti_result,
14604 cmd_set_vf_allmulti_parsed(
14605 void *parsed_result,
14606 __attribute__((unused)) struct cmdline *cl,
14607 __attribute__((unused)) void *data)
14609 struct cmd_vf_allmulti_result *res = parsed_result;
14610 int ret = -ENOTSUP;
14612 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
14614 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14617 #ifdef RTE_LIBRTE_I40E_PMD
14618 ret = rte_pmd_i40e_set_vf_multicast_promisc(res->port_id,
14619 res->vf_id, is_on);
14626 printf("invalid vf_id %d\n", res->vf_id);
14629 printf("invalid port_id %d\n", res->port_id);
14632 printf("function not implemented\n");
14635 printf("programming error: (%s)\n", strerror(-ret));
14639 cmdline_parse_inst_t cmd_set_vf_allmulti = {
14640 .f = cmd_set_vf_allmulti_parsed,
14642 .help_str = "set vf allmulti <port_id> <vf_id> on|off: "
14643 "Set multicast promiscuous mode for a VF from the PF",
14645 (void *)&cmd_vf_allmulti_set,
14646 (void *)&cmd_vf_allmulti_vf,
14647 (void *)&cmd_vf_allmulti_allmulti,
14648 (void *)&cmd_vf_allmulti_port_id,
14649 (void *)&cmd_vf_allmulti_vf_id,
14650 (void *)&cmd_vf_allmulti_on_off,
14655 /* vf broadcast mode configuration */
14657 /* Common result structure for vf broadcast */
14658 struct cmd_set_vf_broadcast_result {
14659 cmdline_fixed_string_t set;
14660 cmdline_fixed_string_t vf;
14661 cmdline_fixed_string_t broadcast;
14664 cmdline_fixed_string_t on_off;
14667 /* Common CLI fields for vf broadcast enable disable */
14668 cmdline_parse_token_string_t cmd_set_vf_broadcast_set =
14669 TOKEN_STRING_INITIALIZER
14670 (struct cmd_set_vf_broadcast_result,
14672 cmdline_parse_token_string_t cmd_set_vf_broadcast_vf =
14673 TOKEN_STRING_INITIALIZER
14674 (struct cmd_set_vf_broadcast_result,
14676 cmdline_parse_token_string_t cmd_set_vf_broadcast_broadcast =
14677 TOKEN_STRING_INITIALIZER
14678 (struct cmd_set_vf_broadcast_result,
14679 broadcast, "broadcast");
14680 cmdline_parse_token_num_t cmd_set_vf_broadcast_port_id =
14681 TOKEN_NUM_INITIALIZER
14682 (struct cmd_set_vf_broadcast_result,
14684 cmdline_parse_token_num_t cmd_set_vf_broadcast_vf_id =
14685 TOKEN_NUM_INITIALIZER
14686 (struct cmd_set_vf_broadcast_result,
14688 cmdline_parse_token_string_t cmd_set_vf_broadcast_on_off =
14689 TOKEN_STRING_INITIALIZER
14690 (struct cmd_set_vf_broadcast_result,
14694 cmd_set_vf_broadcast_parsed(
14695 void *parsed_result,
14696 __attribute__((unused)) struct cmdline *cl,
14697 __attribute__((unused)) void *data)
14699 struct cmd_set_vf_broadcast_result *res = parsed_result;
14700 int ret = -ENOTSUP;
14702 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
14704 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14707 #ifdef RTE_LIBRTE_I40E_PMD
14708 ret = rte_pmd_i40e_set_vf_broadcast(res->port_id,
14709 res->vf_id, is_on);
14716 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
14719 printf("invalid port_id %d\n", res->port_id);
14722 printf("function not implemented\n");
14725 printf("programming error: (%s)\n", strerror(-ret));
14729 cmdline_parse_inst_t cmd_set_vf_broadcast = {
14730 .f = cmd_set_vf_broadcast_parsed,
14732 .help_str = "set vf broadcast <port_id> <vf_id> on|off",
14734 (void *)&cmd_set_vf_broadcast_set,
14735 (void *)&cmd_set_vf_broadcast_vf,
14736 (void *)&cmd_set_vf_broadcast_broadcast,
14737 (void *)&cmd_set_vf_broadcast_port_id,
14738 (void *)&cmd_set_vf_broadcast_vf_id,
14739 (void *)&cmd_set_vf_broadcast_on_off,
14744 /* vf vlan tag configuration */
14746 /* Common result structure for vf vlan tag */
14747 struct cmd_set_vf_vlan_tag_result {
14748 cmdline_fixed_string_t set;
14749 cmdline_fixed_string_t vf;
14750 cmdline_fixed_string_t vlan;
14751 cmdline_fixed_string_t tag;
14754 cmdline_fixed_string_t on_off;
14757 /* Common CLI fields for vf vlan tag enable disable */
14758 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_set =
14759 TOKEN_STRING_INITIALIZER
14760 (struct cmd_set_vf_vlan_tag_result,
14762 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vf =
14763 TOKEN_STRING_INITIALIZER
14764 (struct cmd_set_vf_vlan_tag_result,
14766 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vlan =
14767 TOKEN_STRING_INITIALIZER
14768 (struct cmd_set_vf_vlan_tag_result,
14770 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_tag =
14771 TOKEN_STRING_INITIALIZER
14772 (struct cmd_set_vf_vlan_tag_result,
14774 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_port_id =
14775 TOKEN_NUM_INITIALIZER
14776 (struct cmd_set_vf_vlan_tag_result,
14778 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_vf_id =
14779 TOKEN_NUM_INITIALIZER
14780 (struct cmd_set_vf_vlan_tag_result,
14782 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_on_off =
14783 TOKEN_STRING_INITIALIZER
14784 (struct cmd_set_vf_vlan_tag_result,
14788 cmd_set_vf_vlan_tag_parsed(
14789 void *parsed_result,
14790 __attribute__((unused)) struct cmdline *cl,
14791 __attribute__((unused)) void *data)
14793 struct cmd_set_vf_vlan_tag_result *res = parsed_result;
14794 int ret = -ENOTSUP;
14796 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
14798 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14801 #ifdef RTE_LIBRTE_I40E_PMD
14802 ret = rte_pmd_i40e_set_vf_vlan_tag(res->port_id,
14803 res->vf_id, is_on);
14810 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
14813 printf("invalid port_id %d\n", res->port_id);
14816 printf("function not implemented\n");
14819 printf("programming error: (%s)\n", strerror(-ret));
14823 cmdline_parse_inst_t cmd_set_vf_vlan_tag = {
14824 .f = cmd_set_vf_vlan_tag_parsed,
14826 .help_str = "set vf vlan tag <port_id> <vf_id> on|off",
14828 (void *)&cmd_set_vf_vlan_tag_set,
14829 (void *)&cmd_set_vf_vlan_tag_vf,
14830 (void *)&cmd_set_vf_vlan_tag_vlan,
14831 (void *)&cmd_set_vf_vlan_tag_tag,
14832 (void *)&cmd_set_vf_vlan_tag_port_id,
14833 (void *)&cmd_set_vf_vlan_tag_vf_id,
14834 (void *)&cmd_set_vf_vlan_tag_on_off,
14839 /* Common definition of VF and TC TX bandwidth configuration */
14840 struct cmd_vf_tc_bw_result {
14841 cmdline_fixed_string_t set;
14842 cmdline_fixed_string_t vf;
14843 cmdline_fixed_string_t tc;
14844 cmdline_fixed_string_t tx;
14845 cmdline_fixed_string_t min_bw;
14846 cmdline_fixed_string_t max_bw;
14847 cmdline_fixed_string_t strict_link_prio;
14852 cmdline_fixed_string_t bw_list;
14856 cmdline_parse_token_string_t cmd_vf_tc_bw_set =
14857 TOKEN_STRING_INITIALIZER
14858 (struct cmd_vf_tc_bw_result,
14860 cmdline_parse_token_string_t cmd_vf_tc_bw_vf =
14861 TOKEN_STRING_INITIALIZER
14862 (struct cmd_vf_tc_bw_result,
14864 cmdline_parse_token_string_t cmd_vf_tc_bw_tc =
14865 TOKEN_STRING_INITIALIZER
14866 (struct cmd_vf_tc_bw_result,
14868 cmdline_parse_token_string_t cmd_vf_tc_bw_tx =
14869 TOKEN_STRING_INITIALIZER
14870 (struct cmd_vf_tc_bw_result,
14872 cmdline_parse_token_string_t cmd_vf_tc_bw_strict_link_prio =
14873 TOKEN_STRING_INITIALIZER
14874 (struct cmd_vf_tc_bw_result,
14875 strict_link_prio, "strict-link-priority");
14876 cmdline_parse_token_string_t cmd_vf_tc_bw_min_bw =
14877 TOKEN_STRING_INITIALIZER
14878 (struct cmd_vf_tc_bw_result,
14879 min_bw, "min-bandwidth");
14880 cmdline_parse_token_string_t cmd_vf_tc_bw_max_bw =
14881 TOKEN_STRING_INITIALIZER
14882 (struct cmd_vf_tc_bw_result,
14883 max_bw, "max-bandwidth");
14884 cmdline_parse_token_num_t cmd_vf_tc_bw_port_id =
14885 TOKEN_NUM_INITIALIZER
14886 (struct cmd_vf_tc_bw_result,
14888 cmdline_parse_token_num_t cmd_vf_tc_bw_vf_id =
14889 TOKEN_NUM_INITIALIZER
14890 (struct cmd_vf_tc_bw_result,
14892 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_no =
14893 TOKEN_NUM_INITIALIZER
14894 (struct cmd_vf_tc_bw_result,
14896 cmdline_parse_token_num_t cmd_vf_tc_bw_bw =
14897 TOKEN_NUM_INITIALIZER
14898 (struct cmd_vf_tc_bw_result,
14900 cmdline_parse_token_string_t cmd_vf_tc_bw_bw_list =
14901 TOKEN_STRING_INITIALIZER
14902 (struct cmd_vf_tc_bw_result,
14904 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_map =
14905 TOKEN_NUM_INITIALIZER
14906 (struct cmd_vf_tc_bw_result,
14909 /* VF max bandwidth setting */
14911 cmd_vf_max_bw_parsed(
14912 void *parsed_result,
14913 __attribute__((unused)) struct cmdline *cl,
14914 __attribute__((unused)) void *data)
14916 struct cmd_vf_tc_bw_result *res = parsed_result;
14917 int ret = -ENOTSUP;
14919 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14922 #ifdef RTE_LIBRTE_I40E_PMD
14923 ret = rte_pmd_i40e_set_vf_max_bw(res->port_id,
14924 res->vf_id, res->bw);
14931 printf("invalid vf_id %d or bandwidth %d\n",
14932 res->vf_id, res->bw);
14935 printf("invalid port_id %d\n", res->port_id);
14938 printf("function not implemented\n");
14941 printf("programming error: (%s)\n", strerror(-ret));
14945 cmdline_parse_inst_t cmd_vf_max_bw = {
14946 .f = cmd_vf_max_bw_parsed,
14948 .help_str = "set vf tx max-bandwidth <port_id> <vf_id> <bandwidth>",
14950 (void *)&cmd_vf_tc_bw_set,
14951 (void *)&cmd_vf_tc_bw_vf,
14952 (void *)&cmd_vf_tc_bw_tx,
14953 (void *)&cmd_vf_tc_bw_max_bw,
14954 (void *)&cmd_vf_tc_bw_port_id,
14955 (void *)&cmd_vf_tc_bw_vf_id,
14956 (void *)&cmd_vf_tc_bw_bw,
14962 vf_tc_min_bw_parse_bw_list(uint8_t *bw_list,
14967 const char *p, *p0 = str;
14974 p = strchr(p0, '(');
14976 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
14980 p0 = strchr(p, ')');
14982 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
14986 if (size >= sizeof(s)) {
14987 printf("The string size exceeds the internal buffer size\n");
14990 snprintf(s, sizeof(s), "%.*s", size, p);
14991 ret = rte_strsplit(s, sizeof(s), str_fld, 16, ',');
14993 printf("Failed to get the bandwidth list. ");
14997 for (i = 0; i < ret; i++)
14998 bw_list[i] = (uint8_t)strtoul(str_fld[i], &end, 0);
15003 /* TC min bandwidth setting */
15005 cmd_vf_tc_min_bw_parsed(
15006 void *parsed_result,
15007 __attribute__((unused)) struct cmdline *cl,
15008 __attribute__((unused)) void *data)
15010 struct cmd_vf_tc_bw_result *res = parsed_result;
15013 int ret = -ENOTSUP;
15015 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15018 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list);
15022 #ifdef RTE_LIBRTE_I40E_PMD
15023 ret = rte_pmd_i40e_set_vf_tc_bw_alloc(res->port_id, res->vf_id,
15031 printf("invalid vf_id %d or bandwidth\n", res->vf_id);
15034 printf("invalid port_id %d\n", res->port_id);
15037 printf("function not implemented\n");
15040 printf("programming error: (%s)\n", strerror(-ret));
15044 cmdline_parse_inst_t cmd_vf_tc_min_bw = {
15045 .f = cmd_vf_tc_min_bw_parsed,
15047 .help_str = "set vf tc tx min-bandwidth <port_id> <vf_id>"
15048 " <bw1, bw2, ...>",
15050 (void *)&cmd_vf_tc_bw_set,
15051 (void *)&cmd_vf_tc_bw_vf,
15052 (void *)&cmd_vf_tc_bw_tc,
15053 (void *)&cmd_vf_tc_bw_tx,
15054 (void *)&cmd_vf_tc_bw_min_bw,
15055 (void *)&cmd_vf_tc_bw_port_id,
15056 (void *)&cmd_vf_tc_bw_vf_id,
15057 (void *)&cmd_vf_tc_bw_bw_list,
15063 cmd_tc_min_bw_parsed(
15064 void *parsed_result,
15065 __attribute__((unused)) struct cmdline *cl,
15066 __attribute__((unused)) void *data)
15068 struct cmd_vf_tc_bw_result *res = parsed_result;
15069 struct rte_port *port;
15072 int ret = -ENOTSUP;
15074 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15077 port = &ports[res->port_id];
15078 /** Check if the port is not started **/
15079 if (port->port_status != RTE_PORT_STOPPED) {
15080 printf("Please stop port %d first\n", res->port_id);
15084 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list);
15088 #ifdef RTE_LIBRTE_IXGBE_PMD
15089 ret = rte_pmd_ixgbe_set_tc_bw_alloc(res->port_id, tc_num, bw);
15096 printf("invalid bandwidth\n");
15099 printf("invalid port_id %d\n", res->port_id);
15102 printf("function not implemented\n");
15105 printf("programming error: (%s)\n", strerror(-ret));
15109 cmdline_parse_inst_t cmd_tc_min_bw = {
15110 .f = cmd_tc_min_bw_parsed,
15112 .help_str = "set tc tx min-bandwidth <port_id> <bw1, bw2, ...>",
15114 (void *)&cmd_vf_tc_bw_set,
15115 (void *)&cmd_vf_tc_bw_tc,
15116 (void *)&cmd_vf_tc_bw_tx,
15117 (void *)&cmd_vf_tc_bw_min_bw,
15118 (void *)&cmd_vf_tc_bw_port_id,
15119 (void *)&cmd_vf_tc_bw_bw_list,
15124 /* TC max bandwidth setting */
15126 cmd_vf_tc_max_bw_parsed(
15127 void *parsed_result,
15128 __attribute__((unused)) struct cmdline *cl,
15129 __attribute__((unused)) void *data)
15131 struct cmd_vf_tc_bw_result *res = parsed_result;
15132 int ret = -ENOTSUP;
15134 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15137 #ifdef RTE_LIBRTE_I40E_PMD
15138 ret = rte_pmd_i40e_set_vf_tc_max_bw(res->port_id, res->vf_id,
15139 res->tc_no, res->bw);
15146 printf("invalid vf_id %d, tc_no %d or bandwidth %d\n",
15147 res->vf_id, res->tc_no, res->bw);
15150 printf("invalid port_id %d\n", res->port_id);
15153 printf("function not implemented\n");
15156 printf("programming error: (%s)\n", strerror(-ret));
15160 cmdline_parse_inst_t cmd_vf_tc_max_bw = {
15161 .f = cmd_vf_tc_max_bw_parsed,
15163 .help_str = "set vf tc tx max-bandwidth <port_id> <vf_id> <tc_no>"
15166 (void *)&cmd_vf_tc_bw_set,
15167 (void *)&cmd_vf_tc_bw_vf,
15168 (void *)&cmd_vf_tc_bw_tc,
15169 (void *)&cmd_vf_tc_bw_tx,
15170 (void *)&cmd_vf_tc_bw_max_bw,
15171 (void *)&cmd_vf_tc_bw_port_id,
15172 (void *)&cmd_vf_tc_bw_vf_id,
15173 (void *)&cmd_vf_tc_bw_tc_no,
15174 (void *)&cmd_vf_tc_bw_bw,
15180 #if defined RTE_LIBRTE_PMD_SOFTNIC && defined RTE_LIBRTE_SCHED
15182 /* *** Set Port default Traffic Management Hierarchy *** */
15183 struct cmd_set_port_tm_hierarchy_default_result {
15184 cmdline_fixed_string_t set;
15185 cmdline_fixed_string_t port;
15186 cmdline_fixed_string_t tm;
15187 cmdline_fixed_string_t hierarchy;
15188 cmdline_fixed_string_t def;
15192 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_set =
15193 TOKEN_STRING_INITIALIZER(
15194 struct cmd_set_port_tm_hierarchy_default_result, set, "set");
15195 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_port =
15196 TOKEN_STRING_INITIALIZER(
15197 struct cmd_set_port_tm_hierarchy_default_result, port, "port");
15198 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_tm =
15199 TOKEN_STRING_INITIALIZER(
15200 struct cmd_set_port_tm_hierarchy_default_result, tm, "tm");
15201 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_hierarchy =
15202 TOKEN_STRING_INITIALIZER(
15203 struct cmd_set_port_tm_hierarchy_default_result,
15204 hierarchy, "hierarchy");
15205 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_default =
15206 TOKEN_STRING_INITIALIZER(
15207 struct cmd_set_port_tm_hierarchy_default_result,
15209 cmdline_parse_token_num_t cmd_set_port_tm_hierarchy_default_port_id =
15210 TOKEN_NUM_INITIALIZER(
15211 struct cmd_set_port_tm_hierarchy_default_result,
15214 static void cmd_set_port_tm_hierarchy_default_parsed(void *parsed_result,
15215 __attribute__((unused)) struct cmdline *cl,
15216 __attribute__((unused)) void *data)
15218 struct cmd_set_port_tm_hierarchy_default_result *res = parsed_result;
15219 struct rte_port *p;
15220 portid_t port_id = res->port_id;
15222 if (port_id_is_invalid(port_id, ENABLED_WARN))
15225 p = &ports[port_id];
15227 /* Forward mode: tm */
15228 if (strcmp(cur_fwd_config.fwd_eng->fwd_mode_name, "softnic")) {
15229 printf(" softnicfwd mode not enabled(error)\n");
15233 /* Set the default tm hierarchy */
15234 p->softport.default_tm_hierarchy_enable = 1;
15237 cmdline_parse_inst_t cmd_set_port_tm_hierarchy_default = {
15238 .f = cmd_set_port_tm_hierarchy_default_parsed,
15240 .help_str = "set port tm hierarchy default <port_id>",
15242 (void *)&cmd_set_port_tm_hierarchy_default_set,
15243 (void *)&cmd_set_port_tm_hierarchy_default_port,
15244 (void *)&cmd_set_port_tm_hierarchy_default_tm,
15245 (void *)&cmd_set_port_tm_hierarchy_default_hierarchy,
15246 (void *)&cmd_set_port_tm_hierarchy_default_default,
15247 (void *)&cmd_set_port_tm_hierarchy_default_port_id,
15253 /** Set VXLAN encapsulation details */
15254 struct cmd_set_vxlan_result {
15255 cmdline_fixed_string_t set;
15256 cmdline_fixed_string_t vxlan;
15257 cmdline_fixed_string_t pos_token;
15258 cmdline_fixed_string_t ip_version;
15259 uint32_t vlan_present:1;
15263 cmdline_ipaddr_t ip_src;
15264 cmdline_ipaddr_t ip_dst;
15268 struct rte_ether_addr eth_src;
15269 struct rte_ether_addr eth_dst;
15272 cmdline_parse_token_string_t cmd_set_vxlan_set =
15273 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, set, "set");
15274 cmdline_parse_token_string_t cmd_set_vxlan_vxlan =
15275 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan, "vxlan");
15276 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_tos_ttl =
15277 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan,
15279 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_with_vlan =
15280 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan,
15281 "vxlan-with-vlan");
15282 cmdline_parse_token_string_t cmd_set_vxlan_ip_version =
15283 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
15285 cmdline_parse_token_string_t cmd_set_vxlan_ip_version_value =
15286 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, ip_version,
15288 cmdline_parse_token_string_t cmd_set_vxlan_vni =
15289 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
15291 cmdline_parse_token_num_t cmd_set_vxlan_vni_value =
15292 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, vni, UINT32);
15293 cmdline_parse_token_string_t cmd_set_vxlan_udp_src =
15294 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
15296 cmdline_parse_token_num_t cmd_set_vxlan_udp_src_value =
15297 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_src, UINT16);
15298 cmdline_parse_token_string_t cmd_set_vxlan_udp_dst =
15299 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
15301 cmdline_parse_token_num_t cmd_set_vxlan_udp_dst_value =
15302 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_dst, UINT16);
15303 cmdline_parse_token_string_t cmd_set_vxlan_ip_tos =
15304 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
15306 cmdline_parse_token_num_t cmd_set_vxlan_ip_tos_value =
15307 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tos, UINT8);
15308 cmdline_parse_token_string_t cmd_set_vxlan_ip_ttl =
15309 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
15311 cmdline_parse_token_num_t cmd_set_vxlan_ip_ttl_value =
15312 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, ttl, UINT8);
15313 cmdline_parse_token_string_t cmd_set_vxlan_ip_src =
15314 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
15316 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_src_value =
15317 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_src);
15318 cmdline_parse_token_string_t cmd_set_vxlan_ip_dst =
15319 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
15321 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_dst_value =
15322 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_dst);
15323 cmdline_parse_token_string_t cmd_set_vxlan_vlan =
15324 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
15326 cmdline_parse_token_num_t cmd_set_vxlan_vlan_value =
15327 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tci, UINT16);
15328 cmdline_parse_token_string_t cmd_set_vxlan_eth_src =
15329 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
15331 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_src_value =
15332 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_src);
15333 cmdline_parse_token_string_t cmd_set_vxlan_eth_dst =
15334 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
15336 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_dst_value =
15337 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_dst);
15339 static void cmd_set_vxlan_parsed(void *parsed_result,
15340 __attribute__((unused)) struct cmdline *cl,
15341 __attribute__((unused)) void *data)
15343 struct cmd_set_vxlan_result *res = parsed_result;
15348 .vxlan_id = rte_cpu_to_be_32(res->vni) & RTE_BE32(0x00ffffff),
15351 vxlan_encap_conf.select_tos_ttl = 0;
15352 if (strcmp(res->vxlan, "vxlan") == 0)
15353 vxlan_encap_conf.select_vlan = 0;
15354 else if (strcmp(res->vxlan, "vxlan-with-vlan") == 0)
15355 vxlan_encap_conf.select_vlan = 1;
15356 else if (strcmp(res->vxlan, "vxlan-tos-ttl") == 0) {
15357 vxlan_encap_conf.select_vlan = 0;
15358 vxlan_encap_conf.select_tos_ttl = 1;
15360 if (strcmp(res->ip_version, "ipv4") == 0)
15361 vxlan_encap_conf.select_ipv4 = 1;
15362 else if (strcmp(res->ip_version, "ipv6") == 0)
15363 vxlan_encap_conf.select_ipv4 = 0;
15366 rte_memcpy(vxlan_encap_conf.vni, &id.vni[1], 3);
15367 vxlan_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src);
15368 vxlan_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst);
15369 vxlan_encap_conf.ip_tos = res->tos;
15370 vxlan_encap_conf.ip_ttl = res->ttl;
15371 if (vxlan_encap_conf.select_ipv4) {
15372 IPV4_ADDR_TO_UINT(res->ip_src, vxlan_encap_conf.ipv4_src);
15373 IPV4_ADDR_TO_UINT(res->ip_dst, vxlan_encap_conf.ipv4_dst);
15375 IPV6_ADDR_TO_ARRAY(res->ip_src, vxlan_encap_conf.ipv6_src);
15376 IPV6_ADDR_TO_ARRAY(res->ip_dst, vxlan_encap_conf.ipv6_dst);
15378 if (vxlan_encap_conf.select_vlan)
15379 vxlan_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
15380 rte_memcpy(vxlan_encap_conf.eth_src, res->eth_src.addr_bytes,
15381 RTE_ETHER_ADDR_LEN);
15382 rte_memcpy(vxlan_encap_conf.eth_dst, res->eth_dst.addr_bytes,
15383 RTE_ETHER_ADDR_LEN);
15386 cmdline_parse_inst_t cmd_set_vxlan = {
15387 .f = cmd_set_vxlan_parsed,
15389 .help_str = "set vxlan ip-version ipv4|ipv6 vni <vni> udp-src"
15390 " <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst <ip-dst>"
15391 " eth-src <eth-src> eth-dst <eth-dst>",
15393 (void *)&cmd_set_vxlan_set,
15394 (void *)&cmd_set_vxlan_vxlan,
15395 (void *)&cmd_set_vxlan_ip_version,
15396 (void *)&cmd_set_vxlan_ip_version_value,
15397 (void *)&cmd_set_vxlan_vni,
15398 (void *)&cmd_set_vxlan_vni_value,
15399 (void *)&cmd_set_vxlan_udp_src,
15400 (void *)&cmd_set_vxlan_udp_src_value,
15401 (void *)&cmd_set_vxlan_udp_dst,
15402 (void *)&cmd_set_vxlan_udp_dst_value,
15403 (void *)&cmd_set_vxlan_ip_src,
15404 (void *)&cmd_set_vxlan_ip_src_value,
15405 (void *)&cmd_set_vxlan_ip_dst,
15406 (void *)&cmd_set_vxlan_ip_dst_value,
15407 (void *)&cmd_set_vxlan_eth_src,
15408 (void *)&cmd_set_vxlan_eth_src_value,
15409 (void *)&cmd_set_vxlan_eth_dst,
15410 (void *)&cmd_set_vxlan_eth_dst_value,
15415 cmdline_parse_inst_t cmd_set_vxlan_tos_ttl = {
15416 .f = cmd_set_vxlan_parsed,
15418 .help_str = "set vxlan-tos-ttl ip-version ipv4|ipv6 vni <vni> udp-src"
15419 " <udp-src> udp-dst <udp-dst> ip-tos <ip-tos> ip-ttl <ip-ttl>"
15420 " ip-src <ip-src> ip-dst <ip-dst> eth-src <eth-src>"
15421 " eth-dst <eth-dst>",
15423 (void *)&cmd_set_vxlan_set,
15424 (void *)&cmd_set_vxlan_vxlan_tos_ttl,
15425 (void *)&cmd_set_vxlan_ip_version,
15426 (void *)&cmd_set_vxlan_ip_version_value,
15427 (void *)&cmd_set_vxlan_vni,
15428 (void *)&cmd_set_vxlan_vni_value,
15429 (void *)&cmd_set_vxlan_udp_src,
15430 (void *)&cmd_set_vxlan_udp_src_value,
15431 (void *)&cmd_set_vxlan_udp_dst,
15432 (void *)&cmd_set_vxlan_udp_dst_value,
15433 (void *)&cmd_set_vxlan_ip_tos,
15434 (void *)&cmd_set_vxlan_ip_tos_value,
15435 (void *)&cmd_set_vxlan_ip_ttl,
15436 (void *)&cmd_set_vxlan_ip_ttl_value,
15437 (void *)&cmd_set_vxlan_ip_src,
15438 (void *)&cmd_set_vxlan_ip_src_value,
15439 (void *)&cmd_set_vxlan_ip_dst,
15440 (void *)&cmd_set_vxlan_ip_dst_value,
15441 (void *)&cmd_set_vxlan_eth_src,
15442 (void *)&cmd_set_vxlan_eth_src_value,
15443 (void *)&cmd_set_vxlan_eth_dst,
15444 (void *)&cmd_set_vxlan_eth_dst_value,
15449 cmdline_parse_inst_t cmd_set_vxlan_with_vlan = {
15450 .f = cmd_set_vxlan_parsed,
15452 .help_str = "set vxlan-with-vlan ip-version ipv4|ipv6 vni <vni>"
15453 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst"
15454 " <ip-dst> vlan-tci <vlan-tci> eth-src <eth-src> eth-dst"
15457 (void *)&cmd_set_vxlan_set,
15458 (void *)&cmd_set_vxlan_vxlan_with_vlan,
15459 (void *)&cmd_set_vxlan_ip_version,
15460 (void *)&cmd_set_vxlan_ip_version_value,
15461 (void *)&cmd_set_vxlan_vni,
15462 (void *)&cmd_set_vxlan_vni_value,
15463 (void *)&cmd_set_vxlan_udp_src,
15464 (void *)&cmd_set_vxlan_udp_src_value,
15465 (void *)&cmd_set_vxlan_udp_dst,
15466 (void *)&cmd_set_vxlan_udp_dst_value,
15467 (void *)&cmd_set_vxlan_ip_src,
15468 (void *)&cmd_set_vxlan_ip_src_value,
15469 (void *)&cmd_set_vxlan_ip_dst,
15470 (void *)&cmd_set_vxlan_ip_dst_value,
15471 (void *)&cmd_set_vxlan_vlan,
15472 (void *)&cmd_set_vxlan_vlan_value,
15473 (void *)&cmd_set_vxlan_eth_src,
15474 (void *)&cmd_set_vxlan_eth_src_value,
15475 (void *)&cmd_set_vxlan_eth_dst,
15476 (void *)&cmd_set_vxlan_eth_dst_value,
15481 /** Set NVGRE encapsulation details */
15482 struct cmd_set_nvgre_result {
15483 cmdline_fixed_string_t set;
15484 cmdline_fixed_string_t nvgre;
15485 cmdline_fixed_string_t pos_token;
15486 cmdline_fixed_string_t ip_version;
15488 cmdline_ipaddr_t ip_src;
15489 cmdline_ipaddr_t ip_dst;
15491 struct rte_ether_addr eth_src;
15492 struct rte_ether_addr eth_dst;
15495 cmdline_parse_token_string_t cmd_set_nvgre_set =
15496 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, set, "set");
15497 cmdline_parse_token_string_t cmd_set_nvgre_nvgre =
15498 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre, "nvgre");
15499 cmdline_parse_token_string_t cmd_set_nvgre_nvgre_with_vlan =
15500 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre,
15501 "nvgre-with-vlan");
15502 cmdline_parse_token_string_t cmd_set_nvgre_ip_version =
15503 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
15505 cmdline_parse_token_string_t cmd_set_nvgre_ip_version_value =
15506 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, ip_version,
15508 cmdline_parse_token_string_t cmd_set_nvgre_tni =
15509 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
15511 cmdline_parse_token_num_t cmd_set_nvgre_tni_value =
15512 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tni, UINT32);
15513 cmdline_parse_token_string_t cmd_set_nvgre_ip_src =
15514 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
15516 cmdline_parse_token_num_t cmd_set_nvgre_ip_src_value =
15517 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_src);
15518 cmdline_parse_token_string_t cmd_set_nvgre_ip_dst =
15519 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
15521 cmdline_parse_token_ipaddr_t cmd_set_nvgre_ip_dst_value =
15522 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_dst);
15523 cmdline_parse_token_string_t cmd_set_nvgre_vlan =
15524 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
15526 cmdline_parse_token_num_t cmd_set_nvgre_vlan_value =
15527 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tci, UINT16);
15528 cmdline_parse_token_string_t cmd_set_nvgre_eth_src =
15529 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
15531 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_src_value =
15532 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_src);
15533 cmdline_parse_token_string_t cmd_set_nvgre_eth_dst =
15534 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
15536 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_dst_value =
15537 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_dst);
15539 static void cmd_set_nvgre_parsed(void *parsed_result,
15540 __attribute__((unused)) struct cmdline *cl,
15541 __attribute__((unused)) void *data)
15543 struct cmd_set_nvgre_result *res = parsed_result;
15545 uint32_t nvgre_tni;
15548 .nvgre_tni = rte_cpu_to_be_32(res->tni) & RTE_BE32(0x00ffffff),
15551 if (strcmp(res->nvgre, "nvgre") == 0)
15552 nvgre_encap_conf.select_vlan = 0;
15553 else if (strcmp(res->nvgre, "nvgre-with-vlan") == 0)
15554 nvgre_encap_conf.select_vlan = 1;
15555 if (strcmp(res->ip_version, "ipv4") == 0)
15556 nvgre_encap_conf.select_ipv4 = 1;
15557 else if (strcmp(res->ip_version, "ipv6") == 0)
15558 nvgre_encap_conf.select_ipv4 = 0;
15561 rte_memcpy(nvgre_encap_conf.tni, &id.tni[1], 3);
15562 if (nvgre_encap_conf.select_ipv4) {
15563 IPV4_ADDR_TO_UINT(res->ip_src, nvgre_encap_conf.ipv4_src);
15564 IPV4_ADDR_TO_UINT(res->ip_dst, nvgre_encap_conf.ipv4_dst);
15566 IPV6_ADDR_TO_ARRAY(res->ip_src, nvgre_encap_conf.ipv6_src);
15567 IPV6_ADDR_TO_ARRAY(res->ip_dst, nvgre_encap_conf.ipv6_dst);
15569 if (nvgre_encap_conf.select_vlan)
15570 nvgre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
15571 rte_memcpy(nvgre_encap_conf.eth_src, res->eth_src.addr_bytes,
15572 RTE_ETHER_ADDR_LEN);
15573 rte_memcpy(nvgre_encap_conf.eth_dst, res->eth_dst.addr_bytes,
15574 RTE_ETHER_ADDR_LEN);
15577 cmdline_parse_inst_t cmd_set_nvgre = {
15578 .f = cmd_set_nvgre_parsed,
15580 .help_str = "set nvgre ip-version <ipv4|ipv6> tni <tni> ip-src"
15581 " <ip-src> ip-dst <ip-dst> eth-src <eth-src>"
15582 " eth-dst <eth-dst>",
15584 (void *)&cmd_set_nvgre_set,
15585 (void *)&cmd_set_nvgre_nvgre,
15586 (void *)&cmd_set_nvgre_ip_version,
15587 (void *)&cmd_set_nvgre_ip_version_value,
15588 (void *)&cmd_set_nvgre_tni,
15589 (void *)&cmd_set_nvgre_tni_value,
15590 (void *)&cmd_set_nvgre_ip_src,
15591 (void *)&cmd_set_nvgre_ip_src_value,
15592 (void *)&cmd_set_nvgre_ip_dst,
15593 (void *)&cmd_set_nvgre_ip_dst_value,
15594 (void *)&cmd_set_nvgre_eth_src,
15595 (void *)&cmd_set_nvgre_eth_src_value,
15596 (void *)&cmd_set_nvgre_eth_dst,
15597 (void *)&cmd_set_nvgre_eth_dst_value,
15602 cmdline_parse_inst_t cmd_set_nvgre_with_vlan = {
15603 .f = cmd_set_nvgre_parsed,
15605 .help_str = "set nvgre-with-vlan ip-version <ipv4|ipv6> tni <tni>"
15606 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>"
15607 " eth-src <eth-src> eth-dst <eth-dst>",
15609 (void *)&cmd_set_nvgre_set,
15610 (void *)&cmd_set_nvgre_nvgre_with_vlan,
15611 (void *)&cmd_set_nvgre_ip_version,
15612 (void *)&cmd_set_nvgre_ip_version_value,
15613 (void *)&cmd_set_nvgre_tni,
15614 (void *)&cmd_set_nvgre_tni_value,
15615 (void *)&cmd_set_nvgre_ip_src,
15616 (void *)&cmd_set_nvgre_ip_src_value,
15617 (void *)&cmd_set_nvgre_ip_dst,
15618 (void *)&cmd_set_nvgre_ip_dst_value,
15619 (void *)&cmd_set_nvgre_vlan,
15620 (void *)&cmd_set_nvgre_vlan_value,
15621 (void *)&cmd_set_nvgre_eth_src,
15622 (void *)&cmd_set_nvgre_eth_src_value,
15623 (void *)&cmd_set_nvgre_eth_dst,
15624 (void *)&cmd_set_nvgre_eth_dst_value,
15629 /** Set L2 encapsulation details */
15630 struct cmd_set_l2_encap_result {
15631 cmdline_fixed_string_t set;
15632 cmdline_fixed_string_t l2_encap;
15633 cmdline_fixed_string_t pos_token;
15634 cmdline_fixed_string_t ip_version;
15635 uint32_t vlan_present:1;
15637 struct rte_ether_addr eth_src;
15638 struct rte_ether_addr eth_dst;
15641 cmdline_parse_token_string_t cmd_set_l2_encap_set =
15642 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, set, "set");
15643 cmdline_parse_token_string_t cmd_set_l2_encap_l2_encap =
15644 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, l2_encap, "l2_encap");
15645 cmdline_parse_token_string_t cmd_set_l2_encap_l2_encap_with_vlan =
15646 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, l2_encap,
15647 "l2_encap-with-vlan");
15648 cmdline_parse_token_string_t cmd_set_l2_encap_ip_version =
15649 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
15651 cmdline_parse_token_string_t cmd_set_l2_encap_ip_version_value =
15652 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, ip_version,
15654 cmdline_parse_token_string_t cmd_set_l2_encap_vlan =
15655 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
15657 cmdline_parse_token_num_t cmd_set_l2_encap_vlan_value =
15658 TOKEN_NUM_INITIALIZER(struct cmd_set_l2_encap_result, tci, UINT16);
15659 cmdline_parse_token_string_t cmd_set_l2_encap_eth_src =
15660 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
15662 cmdline_parse_token_etheraddr_t cmd_set_l2_encap_eth_src_value =
15663 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_l2_encap_result, eth_src);
15664 cmdline_parse_token_string_t cmd_set_l2_encap_eth_dst =
15665 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
15667 cmdline_parse_token_etheraddr_t cmd_set_l2_encap_eth_dst_value =
15668 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_l2_encap_result, eth_dst);
15670 static void cmd_set_l2_encap_parsed(void *parsed_result,
15671 __attribute__((unused)) struct cmdline *cl,
15672 __attribute__((unused)) void *data)
15674 struct cmd_set_l2_encap_result *res = parsed_result;
15676 if (strcmp(res->l2_encap, "l2_encap") == 0)
15677 l2_encap_conf.select_vlan = 0;
15678 else if (strcmp(res->l2_encap, "l2_encap-with-vlan") == 0)
15679 l2_encap_conf.select_vlan = 1;
15680 if (strcmp(res->ip_version, "ipv4") == 0)
15681 l2_encap_conf.select_ipv4 = 1;
15682 else if (strcmp(res->ip_version, "ipv6") == 0)
15683 l2_encap_conf.select_ipv4 = 0;
15686 if (l2_encap_conf.select_vlan)
15687 l2_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
15688 rte_memcpy(l2_encap_conf.eth_src, res->eth_src.addr_bytes,
15689 RTE_ETHER_ADDR_LEN);
15690 rte_memcpy(l2_encap_conf.eth_dst, res->eth_dst.addr_bytes,
15691 RTE_ETHER_ADDR_LEN);
15694 cmdline_parse_inst_t cmd_set_l2_encap = {
15695 .f = cmd_set_l2_encap_parsed,
15697 .help_str = "set l2_encap ip-version ipv4|ipv6"
15698 " eth-src <eth-src> eth-dst <eth-dst>",
15700 (void *)&cmd_set_l2_encap_set,
15701 (void *)&cmd_set_l2_encap_l2_encap,
15702 (void *)&cmd_set_l2_encap_ip_version,
15703 (void *)&cmd_set_l2_encap_ip_version_value,
15704 (void *)&cmd_set_l2_encap_eth_src,
15705 (void *)&cmd_set_l2_encap_eth_src_value,
15706 (void *)&cmd_set_l2_encap_eth_dst,
15707 (void *)&cmd_set_l2_encap_eth_dst_value,
15712 cmdline_parse_inst_t cmd_set_l2_encap_with_vlan = {
15713 .f = cmd_set_l2_encap_parsed,
15715 .help_str = "set l2_encap-with-vlan ip-version ipv4|ipv6"
15716 " vlan-tci <vlan-tci> eth-src <eth-src> eth-dst <eth-dst>",
15718 (void *)&cmd_set_l2_encap_set,
15719 (void *)&cmd_set_l2_encap_l2_encap_with_vlan,
15720 (void *)&cmd_set_l2_encap_ip_version,
15721 (void *)&cmd_set_l2_encap_ip_version_value,
15722 (void *)&cmd_set_l2_encap_vlan,
15723 (void *)&cmd_set_l2_encap_vlan_value,
15724 (void *)&cmd_set_l2_encap_eth_src,
15725 (void *)&cmd_set_l2_encap_eth_src_value,
15726 (void *)&cmd_set_l2_encap_eth_dst,
15727 (void *)&cmd_set_l2_encap_eth_dst_value,
15732 /** Set L2 decapsulation details */
15733 struct cmd_set_l2_decap_result {
15734 cmdline_fixed_string_t set;
15735 cmdline_fixed_string_t l2_decap;
15736 cmdline_fixed_string_t pos_token;
15737 uint32_t vlan_present:1;
15740 cmdline_parse_token_string_t cmd_set_l2_decap_set =
15741 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, set, "set");
15742 cmdline_parse_token_string_t cmd_set_l2_decap_l2_decap =
15743 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, l2_decap,
15745 cmdline_parse_token_string_t cmd_set_l2_decap_l2_decap_with_vlan =
15746 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, l2_decap,
15747 "l2_decap-with-vlan");
15749 static void cmd_set_l2_decap_parsed(void *parsed_result,
15750 __attribute__((unused)) struct cmdline *cl,
15751 __attribute__((unused)) void *data)
15753 struct cmd_set_l2_decap_result *res = parsed_result;
15755 if (strcmp(res->l2_decap, "l2_decap") == 0)
15756 l2_decap_conf.select_vlan = 0;
15757 else if (strcmp(res->l2_decap, "l2_decap-with-vlan") == 0)
15758 l2_decap_conf.select_vlan = 1;
15761 cmdline_parse_inst_t cmd_set_l2_decap = {
15762 .f = cmd_set_l2_decap_parsed,
15764 .help_str = "set l2_decap",
15766 (void *)&cmd_set_l2_decap_set,
15767 (void *)&cmd_set_l2_decap_l2_decap,
15772 cmdline_parse_inst_t cmd_set_l2_decap_with_vlan = {
15773 .f = cmd_set_l2_decap_parsed,
15775 .help_str = "set l2_decap-with-vlan",
15777 (void *)&cmd_set_l2_decap_set,
15778 (void *)&cmd_set_l2_decap_l2_decap_with_vlan,
15783 /** Set MPLSoGRE encapsulation details */
15784 struct cmd_set_mplsogre_encap_result {
15785 cmdline_fixed_string_t set;
15786 cmdline_fixed_string_t mplsogre;
15787 cmdline_fixed_string_t pos_token;
15788 cmdline_fixed_string_t ip_version;
15789 uint32_t vlan_present:1;
15791 cmdline_ipaddr_t ip_src;
15792 cmdline_ipaddr_t ip_dst;
15794 struct rte_ether_addr eth_src;
15795 struct rte_ether_addr eth_dst;
15798 cmdline_parse_token_string_t cmd_set_mplsogre_encap_set =
15799 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, set,
15801 cmdline_parse_token_string_t cmd_set_mplsogre_encap_mplsogre_encap =
15802 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, mplsogre,
15804 cmdline_parse_token_string_t cmd_set_mplsogre_encap_mplsogre_encap_with_vlan =
15805 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
15806 mplsogre, "mplsogre_encap-with-vlan");
15807 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_version =
15808 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
15809 pos_token, "ip-version");
15810 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_version_value =
15811 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
15812 ip_version, "ipv4#ipv6");
15813 cmdline_parse_token_string_t cmd_set_mplsogre_encap_label =
15814 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
15815 pos_token, "label");
15816 cmdline_parse_token_num_t cmd_set_mplsogre_encap_label_value =
15817 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsogre_encap_result, label,
15819 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_src =
15820 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
15821 pos_token, "ip-src");
15822 cmdline_parse_token_ipaddr_t cmd_set_mplsogre_encap_ip_src_value =
15823 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, ip_src);
15824 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_dst =
15825 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
15826 pos_token, "ip-dst");
15827 cmdline_parse_token_ipaddr_t cmd_set_mplsogre_encap_ip_dst_value =
15828 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, ip_dst);
15829 cmdline_parse_token_string_t cmd_set_mplsogre_encap_vlan =
15830 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
15831 pos_token, "vlan-tci");
15832 cmdline_parse_token_num_t cmd_set_mplsogre_encap_vlan_value =
15833 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsogre_encap_result, tci,
15835 cmdline_parse_token_string_t cmd_set_mplsogre_encap_eth_src =
15836 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
15837 pos_token, "eth-src");
15838 cmdline_parse_token_etheraddr_t cmd_set_mplsogre_encap_eth_src_value =
15839 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result,
15841 cmdline_parse_token_string_t cmd_set_mplsogre_encap_eth_dst =
15842 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
15843 pos_token, "eth-dst");
15844 cmdline_parse_token_etheraddr_t cmd_set_mplsogre_encap_eth_dst_value =
15845 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result,
15848 static void cmd_set_mplsogre_encap_parsed(void *parsed_result,
15849 __attribute__((unused)) struct cmdline *cl,
15850 __attribute__((unused)) void *data)
15852 struct cmd_set_mplsogre_encap_result *res = parsed_result;
15854 uint32_t mplsogre_label;
15857 .mplsogre_label = rte_cpu_to_be_32(res->label<<12),
15860 if (strcmp(res->mplsogre, "mplsogre_encap") == 0)
15861 mplsogre_encap_conf.select_vlan = 0;
15862 else if (strcmp(res->mplsogre, "mplsogre_encap-with-vlan") == 0)
15863 mplsogre_encap_conf.select_vlan = 1;
15864 if (strcmp(res->ip_version, "ipv4") == 0)
15865 mplsogre_encap_conf.select_ipv4 = 1;
15866 else if (strcmp(res->ip_version, "ipv6") == 0)
15867 mplsogre_encap_conf.select_ipv4 = 0;
15870 rte_memcpy(mplsogre_encap_conf.label, &id.label, 3);
15871 if (mplsogre_encap_conf.select_ipv4) {
15872 IPV4_ADDR_TO_UINT(res->ip_src, mplsogre_encap_conf.ipv4_src);
15873 IPV4_ADDR_TO_UINT(res->ip_dst, mplsogre_encap_conf.ipv4_dst);
15875 IPV6_ADDR_TO_ARRAY(res->ip_src, mplsogre_encap_conf.ipv6_src);
15876 IPV6_ADDR_TO_ARRAY(res->ip_dst, mplsogre_encap_conf.ipv6_dst);
15878 if (mplsogre_encap_conf.select_vlan)
15879 mplsogre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
15880 rte_memcpy(mplsogre_encap_conf.eth_src, res->eth_src.addr_bytes,
15881 RTE_ETHER_ADDR_LEN);
15882 rte_memcpy(mplsogre_encap_conf.eth_dst, res->eth_dst.addr_bytes,
15883 RTE_ETHER_ADDR_LEN);
15886 cmdline_parse_inst_t cmd_set_mplsogre_encap = {
15887 .f = cmd_set_mplsogre_encap_parsed,
15889 .help_str = "set mplsogre_encap ip-version ipv4|ipv6 label <label>"
15890 " ip-src <ip-src> ip-dst <ip-dst> eth-src <eth-src>"
15891 " eth-dst <eth-dst>",
15893 (void *)&cmd_set_mplsogre_encap_set,
15894 (void *)&cmd_set_mplsogre_encap_mplsogre_encap,
15895 (void *)&cmd_set_mplsogre_encap_ip_version,
15896 (void *)&cmd_set_mplsogre_encap_ip_version_value,
15897 (void *)&cmd_set_mplsogre_encap_label,
15898 (void *)&cmd_set_mplsogre_encap_label_value,
15899 (void *)&cmd_set_mplsogre_encap_ip_src,
15900 (void *)&cmd_set_mplsogre_encap_ip_src_value,
15901 (void *)&cmd_set_mplsogre_encap_ip_dst,
15902 (void *)&cmd_set_mplsogre_encap_ip_dst_value,
15903 (void *)&cmd_set_mplsogre_encap_eth_src,
15904 (void *)&cmd_set_mplsogre_encap_eth_src_value,
15905 (void *)&cmd_set_mplsogre_encap_eth_dst,
15906 (void *)&cmd_set_mplsogre_encap_eth_dst_value,
15911 cmdline_parse_inst_t cmd_set_mplsogre_encap_with_vlan = {
15912 .f = cmd_set_mplsogre_encap_parsed,
15914 .help_str = "set mplsogre_encap-with-vlan ip-version ipv4|ipv6"
15915 " label <label> ip-src <ip-src> ip-dst <ip-dst>"
15916 " vlan-tci <vlan-tci> eth-src <eth-src> eth-dst <eth-dst>",
15918 (void *)&cmd_set_mplsogre_encap_set,
15919 (void *)&cmd_set_mplsogre_encap_mplsogre_encap_with_vlan,
15920 (void *)&cmd_set_mplsogre_encap_ip_version,
15921 (void *)&cmd_set_mplsogre_encap_ip_version_value,
15922 (void *)&cmd_set_mplsogre_encap_label,
15923 (void *)&cmd_set_mplsogre_encap_label_value,
15924 (void *)&cmd_set_mplsogre_encap_ip_src,
15925 (void *)&cmd_set_mplsogre_encap_ip_src_value,
15926 (void *)&cmd_set_mplsogre_encap_ip_dst,
15927 (void *)&cmd_set_mplsogre_encap_ip_dst_value,
15928 (void *)&cmd_set_mplsogre_encap_vlan,
15929 (void *)&cmd_set_mplsogre_encap_vlan_value,
15930 (void *)&cmd_set_mplsogre_encap_eth_src,
15931 (void *)&cmd_set_mplsogre_encap_eth_src_value,
15932 (void *)&cmd_set_mplsogre_encap_eth_dst,
15933 (void *)&cmd_set_mplsogre_encap_eth_dst_value,
15938 /** Set MPLSoGRE decapsulation details */
15939 struct cmd_set_mplsogre_decap_result {
15940 cmdline_fixed_string_t set;
15941 cmdline_fixed_string_t mplsogre;
15942 cmdline_fixed_string_t pos_token;
15943 cmdline_fixed_string_t ip_version;
15944 uint32_t vlan_present:1;
15947 cmdline_parse_token_string_t cmd_set_mplsogre_decap_set =
15948 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, set,
15950 cmdline_parse_token_string_t cmd_set_mplsogre_decap_mplsogre_decap =
15951 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, mplsogre,
15953 cmdline_parse_token_string_t cmd_set_mplsogre_decap_mplsogre_decap_with_vlan =
15954 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result,
15955 mplsogre, "mplsogre_decap-with-vlan");
15956 cmdline_parse_token_string_t cmd_set_mplsogre_decap_ip_version =
15957 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result,
15958 pos_token, "ip-version");
15959 cmdline_parse_token_string_t cmd_set_mplsogre_decap_ip_version_value =
15960 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result,
15961 ip_version, "ipv4#ipv6");
15963 static void cmd_set_mplsogre_decap_parsed(void *parsed_result,
15964 __attribute__((unused)) struct cmdline *cl,
15965 __attribute__((unused)) void *data)
15967 struct cmd_set_mplsogre_decap_result *res = parsed_result;
15969 if (strcmp(res->mplsogre, "mplsogre_decap") == 0)
15970 mplsogre_decap_conf.select_vlan = 0;
15971 else if (strcmp(res->mplsogre, "mplsogre_decap-with-vlan") == 0)
15972 mplsogre_decap_conf.select_vlan = 1;
15973 if (strcmp(res->ip_version, "ipv4") == 0)
15974 mplsogre_decap_conf.select_ipv4 = 1;
15975 else if (strcmp(res->ip_version, "ipv6") == 0)
15976 mplsogre_decap_conf.select_ipv4 = 0;
15979 cmdline_parse_inst_t cmd_set_mplsogre_decap = {
15980 .f = cmd_set_mplsogre_decap_parsed,
15982 .help_str = "set mplsogre_decap ip-version ipv4|ipv6",
15984 (void *)&cmd_set_mplsogre_decap_set,
15985 (void *)&cmd_set_mplsogre_decap_mplsogre_decap,
15986 (void *)&cmd_set_mplsogre_decap_ip_version,
15987 (void *)&cmd_set_mplsogre_decap_ip_version_value,
15992 cmdline_parse_inst_t cmd_set_mplsogre_decap_with_vlan = {
15993 .f = cmd_set_mplsogre_decap_parsed,
15995 .help_str = "set mplsogre_decap-with-vlan ip-version ipv4|ipv6",
15997 (void *)&cmd_set_mplsogre_decap_set,
15998 (void *)&cmd_set_mplsogre_decap_mplsogre_decap_with_vlan,
15999 (void *)&cmd_set_mplsogre_decap_ip_version,
16000 (void *)&cmd_set_mplsogre_decap_ip_version_value,
16005 /** Set MPLSoUDP encapsulation details */
16006 struct cmd_set_mplsoudp_encap_result {
16007 cmdline_fixed_string_t set;
16008 cmdline_fixed_string_t mplsoudp;
16009 cmdline_fixed_string_t pos_token;
16010 cmdline_fixed_string_t ip_version;
16011 uint32_t vlan_present:1;
16015 cmdline_ipaddr_t ip_src;
16016 cmdline_ipaddr_t ip_dst;
16018 struct rte_ether_addr eth_src;
16019 struct rte_ether_addr eth_dst;
16022 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_set =
16023 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, set,
16025 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_mplsoudp_encap =
16026 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, mplsoudp,
16028 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_mplsoudp_encap_with_vlan =
16029 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16030 mplsoudp, "mplsoudp_encap-with-vlan");
16031 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_version =
16032 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16033 pos_token, "ip-version");
16034 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_version_value =
16035 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16036 ip_version, "ipv4#ipv6");
16037 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_label =
16038 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16039 pos_token, "label");
16040 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_label_value =
16041 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, label,
16043 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_udp_src =
16044 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16045 pos_token, "udp-src");
16046 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_udp_src_value =
16047 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, udp_src,
16049 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_udp_dst =
16050 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16051 pos_token, "udp-dst");
16052 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_udp_dst_value =
16053 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, udp_dst,
16055 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_src =
16056 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16057 pos_token, "ip-src");
16058 cmdline_parse_token_ipaddr_t cmd_set_mplsoudp_encap_ip_src_value =
16059 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, ip_src);
16060 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_dst =
16061 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16062 pos_token, "ip-dst");
16063 cmdline_parse_token_ipaddr_t cmd_set_mplsoudp_encap_ip_dst_value =
16064 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, ip_dst);
16065 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_vlan =
16066 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16067 pos_token, "vlan-tci");
16068 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_vlan_value =
16069 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, tci,
16071 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_eth_src =
16072 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16073 pos_token, "eth-src");
16074 cmdline_parse_token_etheraddr_t cmd_set_mplsoudp_encap_eth_src_value =
16075 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16077 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_eth_dst =
16078 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16079 pos_token, "eth-dst");
16080 cmdline_parse_token_etheraddr_t cmd_set_mplsoudp_encap_eth_dst_value =
16081 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
16084 static void cmd_set_mplsoudp_encap_parsed(void *parsed_result,
16085 __attribute__((unused)) struct cmdline *cl,
16086 __attribute__((unused)) void *data)
16088 struct cmd_set_mplsoudp_encap_result *res = parsed_result;
16090 uint32_t mplsoudp_label;
16093 .mplsoudp_label = rte_cpu_to_be_32(res->label<<12),
16096 if (strcmp(res->mplsoudp, "mplsoudp_encap") == 0)
16097 mplsoudp_encap_conf.select_vlan = 0;
16098 else if (strcmp(res->mplsoudp, "mplsoudp_encap-with-vlan") == 0)
16099 mplsoudp_encap_conf.select_vlan = 1;
16100 if (strcmp(res->ip_version, "ipv4") == 0)
16101 mplsoudp_encap_conf.select_ipv4 = 1;
16102 else if (strcmp(res->ip_version, "ipv6") == 0)
16103 mplsoudp_encap_conf.select_ipv4 = 0;
16106 rte_memcpy(mplsoudp_encap_conf.label, &id.label, 3);
16107 mplsoudp_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src);
16108 mplsoudp_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst);
16109 if (mplsoudp_encap_conf.select_ipv4) {
16110 IPV4_ADDR_TO_UINT(res->ip_src, mplsoudp_encap_conf.ipv4_src);
16111 IPV4_ADDR_TO_UINT(res->ip_dst, mplsoudp_encap_conf.ipv4_dst);
16113 IPV6_ADDR_TO_ARRAY(res->ip_src, mplsoudp_encap_conf.ipv6_src);
16114 IPV6_ADDR_TO_ARRAY(res->ip_dst, mplsoudp_encap_conf.ipv6_dst);
16116 if (mplsoudp_encap_conf.select_vlan)
16117 mplsoudp_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
16118 rte_memcpy(mplsoudp_encap_conf.eth_src, res->eth_src.addr_bytes,
16119 RTE_ETHER_ADDR_LEN);
16120 rte_memcpy(mplsoudp_encap_conf.eth_dst, res->eth_dst.addr_bytes,
16121 RTE_ETHER_ADDR_LEN);
16124 cmdline_parse_inst_t cmd_set_mplsoudp_encap = {
16125 .f = cmd_set_mplsoudp_encap_parsed,
16127 .help_str = "set mplsoudp_encap ip-version ipv4|ipv6 label <label>"
16128 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src>"
16129 " ip-dst <ip-dst> eth-src <eth-src> eth-dst <eth-dst>",
16131 (void *)&cmd_set_mplsoudp_encap_set,
16132 (void *)&cmd_set_mplsoudp_encap_mplsoudp_encap,
16133 (void *)&cmd_set_mplsoudp_encap_ip_version,
16134 (void *)&cmd_set_mplsoudp_encap_ip_version_value,
16135 (void *)&cmd_set_mplsoudp_encap_label,
16136 (void *)&cmd_set_mplsoudp_encap_label_value,
16137 (void *)&cmd_set_mplsoudp_encap_udp_src,
16138 (void *)&cmd_set_mplsoudp_encap_udp_src_value,
16139 (void *)&cmd_set_mplsoudp_encap_udp_dst,
16140 (void *)&cmd_set_mplsoudp_encap_udp_dst_value,
16141 (void *)&cmd_set_mplsoudp_encap_ip_src,
16142 (void *)&cmd_set_mplsoudp_encap_ip_src_value,
16143 (void *)&cmd_set_mplsoudp_encap_ip_dst,
16144 (void *)&cmd_set_mplsoudp_encap_ip_dst_value,
16145 (void *)&cmd_set_mplsoudp_encap_eth_src,
16146 (void *)&cmd_set_mplsoudp_encap_eth_src_value,
16147 (void *)&cmd_set_mplsoudp_encap_eth_dst,
16148 (void *)&cmd_set_mplsoudp_encap_eth_dst_value,
16153 cmdline_parse_inst_t cmd_set_mplsoudp_encap_with_vlan = {
16154 .f = cmd_set_mplsoudp_encap_parsed,
16156 .help_str = "set mplsoudp_encap-with-vlan ip-version ipv4|ipv6"
16157 " label <label> udp-src <udp-src> udp-dst <udp-dst>"
16158 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>"
16159 " eth-src <eth-src> eth-dst <eth-dst>",
16161 (void *)&cmd_set_mplsoudp_encap_set,
16162 (void *)&cmd_set_mplsoudp_encap_mplsoudp_encap_with_vlan,
16163 (void *)&cmd_set_mplsoudp_encap_ip_version,
16164 (void *)&cmd_set_mplsoudp_encap_ip_version_value,
16165 (void *)&cmd_set_mplsoudp_encap_label,
16166 (void *)&cmd_set_mplsoudp_encap_label_value,
16167 (void *)&cmd_set_mplsoudp_encap_udp_src,
16168 (void *)&cmd_set_mplsoudp_encap_udp_src_value,
16169 (void *)&cmd_set_mplsoudp_encap_udp_dst,
16170 (void *)&cmd_set_mplsoudp_encap_udp_dst_value,
16171 (void *)&cmd_set_mplsoudp_encap_ip_src,
16172 (void *)&cmd_set_mplsoudp_encap_ip_src_value,
16173 (void *)&cmd_set_mplsoudp_encap_ip_dst,
16174 (void *)&cmd_set_mplsoudp_encap_ip_dst_value,
16175 (void *)&cmd_set_mplsoudp_encap_vlan,
16176 (void *)&cmd_set_mplsoudp_encap_vlan_value,
16177 (void *)&cmd_set_mplsoudp_encap_eth_src,
16178 (void *)&cmd_set_mplsoudp_encap_eth_src_value,
16179 (void *)&cmd_set_mplsoudp_encap_eth_dst,
16180 (void *)&cmd_set_mplsoudp_encap_eth_dst_value,
16185 /** Set MPLSoUDP decapsulation details */
16186 struct cmd_set_mplsoudp_decap_result {
16187 cmdline_fixed_string_t set;
16188 cmdline_fixed_string_t mplsoudp;
16189 cmdline_fixed_string_t pos_token;
16190 cmdline_fixed_string_t ip_version;
16191 uint32_t vlan_present:1;
16194 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_set =
16195 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, set,
16197 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_mplsoudp_decap =
16198 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, mplsoudp,
16200 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_mplsoudp_decap_with_vlan =
16201 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result,
16202 mplsoudp, "mplsoudp_decap-with-vlan");
16203 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_ip_version =
16204 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result,
16205 pos_token, "ip-version");
16206 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_ip_version_value =
16207 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result,
16208 ip_version, "ipv4#ipv6");
16210 static void cmd_set_mplsoudp_decap_parsed(void *parsed_result,
16211 __attribute__((unused)) struct cmdline *cl,
16212 __attribute__((unused)) void *data)
16214 struct cmd_set_mplsoudp_decap_result *res = parsed_result;
16216 if (strcmp(res->mplsoudp, "mplsoudp_decap") == 0)
16217 mplsoudp_decap_conf.select_vlan = 0;
16218 else if (strcmp(res->mplsoudp, "mplsoudp_decap-with-vlan") == 0)
16219 mplsoudp_decap_conf.select_vlan = 1;
16220 if (strcmp(res->ip_version, "ipv4") == 0)
16221 mplsoudp_decap_conf.select_ipv4 = 1;
16222 else if (strcmp(res->ip_version, "ipv6") == 0)
16223 mplsoudp_decap_conf.select_ipv4 = 0;
16226 cmdline_parse_inst_t cmd_set_mplsoudp_decap = {
16227 .f = cmd_set_mplsoudp_decap_parsed,
16229 .help_str = "set mplsoudp_decap ip-version ipv4|ipv6",
16231 (void *)&cmd_set_mplsoudp_decap_set,
16232 (void *)&cmd_set_mplsoudp_decap_mplsoudp_decap,
16233 (void *)&cmd_set_mplsoudp_decap_ip_version,
16234 (void *)&cmd_set_mplsoudp_decap_ip_version_value,
16239 cmdline_parse_inst_t cmd_set_mplsoudp_decap_with_vlan = {
16240 .f = cmd_set_mplsoudp_decap_parsed,
16242 .help_str = "set mplsoudp_decap-with-vlan ip-version ipv4|ipv6",
16244 (void *)&cmd_set_mplsoudp_decap_set,
16245 (void *)&cmd_set_mplsoudp_decap_mplsoudp_decap_with_vlan,
16246 (void *)&cmd_set_mplsoudp_decap_ip_version,
16247 (void *)&cmd_set_mplsoudp_decap_ip_version_value,
16252 /* Strict link priority scheduling mode setting */
16254 cmd_strict_link_prio_parsed(
16255 void *parsed_result,
16256 __attribute__((unused)) struct cmdline *cl,
16257 __attribute__((unused)) void *data)
16259 struct cmd_vf_tc_bw_result *res = parsed_result;
16260 int ret = -ENOTSUP;
16262 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
16265 #ifdef RTE_LIBRTE_I40E_PMD
16266 ret = rte_pmd_i40e_set_tc_strict_prio(res->port_id, res->tc_map);
16273 printf("invalid tc_bitmap 0x%x\n", res->tc_map);
16276 printf("invalid port_id %d\n", res->port_id);
16279 printf("function not implemented\n");
16282 printf("programming error: (%s)\n", strerror(-ret));
16286 cmdline_parse_inst_t cmd_strict_link_prio = {
16287 .f = cmd_strict_link_prio_parsed,
16289 .help_str = "set tx strict-link-priority <port_id> <tc_bitmap>",
16291 (void *)&cmd_vf_tc_bw_set,
16292 (void *)&cmd_vf_tc_bw_tx,
16293 (void *)&cmd_vf_tc_bw_strict_link_prio,
16294 (void *)&cmd_vf_tc_bw_port_id,
16295 (void *)&cmd_vf_tc_bw_tc_map,
16300 /* Load dynamic device personalization*/
16301 struct cmd_ddp_add_result {
16302 cmdline_fixed_string_t ddp;
16303 cmdline_fixed_string_t add;
16308 cmdline_parse_token_string_t cmd_ddp_add_ddp =
16309 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, ddp, "ddp");
16310 cmdline_parse_token_string_t cmd_ddp_add_add =
16311 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, add, "add");
16312 cmdline_parse_token_num_t cmd_ddp_add_port_id =
16313 TOKEN_NUM_INITIALIZER(struct cmd_ddp_add_result, port_id, UINT16);
16314 cmdline_parse_token_string_t cmd_ddp_add_filepath =
16315 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, filepath, NULL);
16318 cmd_ddp_add_parsed(
16319 void *parsed_result,
16320 __attribute__((unused)) struct cmdline *cl,
16321 __attribute__((unused)) void *data)
16323 struct cmd_ddp_add_result *res = parsed_result;
16329 int ret = -ENOTSUP;
16331 if (!all_ports_stopped()) {
16332 printf("Please stop all ports first\n");
16336 filepath = strdup(res->filepath);
16337 if (filepath == NULL) {
16338 printf("Failed to allocate memory\n");
16341 file_num = rte_strsplit(filepath, strlen(filepath), file_fld, 2, ',');
16343 buff = open_file(file_fld[0], &size);
16345 free((void *)filepath);
16349 #ifdef RTE_LIBRTE_I40E_PMD
16350 if (ret == -ENOTSUP)
16351 ret = rte_pmd_i40e_process_ddp_package(res->port_id,
16353 RTE_PMD_I40E_PKG_OP_WR_ADD);
16356 if (ret == -EEXIST)
16357 printf("Profile has already existed.\n");
16359 printf("Failed to load profile.\n");
16360 else if (file_num == 2)
16361 save_file(file_fld[1], buff, size);
16364 free((void *)filepath);
16367 cmdline_parse_inst_t cmd_ddp_add = {
16368 .f = cmd_ddp_add_parsed,
16370 .help_str = "ddp add <port_id> <profile_path[,backup_profile_path]>",
16372 (void *)&cmd_ddp_add_ddp,
16373 (void *)&cmd_ddp_add_add,
16374 (void *)&cmd_ddp_add_port_id,
16375 (void *)&cmd_ddp_add_filepath,
16380 /* Delete dynamic device personalization*/
16381 struct cmd_ddp_del_result {
16382 cmdline_fixed_string_t ddp;
16383 cmdline_fixed_string_t del;
16388 cmdline_parse_token_string_t cmd_ddp_del_ddp =
16389 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, ddp, "ddp");
16390 cmdline_parse_token_string_t cmd_ddp_del_del =
16391 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, del, "del");
16392 cmdline_parse_token_num_t cmd_ddp_del_port_id =
16393 TOKEN_NUM_INITIALIZER(struct cmd_ddp_del_result, port_id, UINT16);
16394 cmdline_parse_token_string_t cmd_ddp_del_filepath =
16395 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, filepath, NULL);
16398 cmd_ddp_del_parsed(
16399 void *parsed_result,
16400 __attribute__((unused)) struct cmdline *cl,
16401 __attribute__((unused)) void *data)
16403 struct cmd_ddp_del_result *res = parsed_result;
16406 int ret = -ENOTSUP;
16408 if (!all_ports_stopped()) {
16409 printf("Please stop all ports first\n");
16413 buff = open_file(res->filepath, &size);
16417 #ifdef RTE_LIBRTE_I40E_PMD
16418 if (ret == -ENOTSUP)
16419 ret = rte_pmd_i40e_process_ddp_package(res->port_id,
16421 RTE_PMD_I40E_PKG_OP_WR_DEL);
16424 if (ret == -EACCES)
16425 printf("Profile does not exist.\n");
16427 printf("Failed to delete profile.\n");
16432 cmdline_parse_inst_t cmd_ddp_del = {
16433 .f = cmd_ddp_del_parsed,
16435 .help_str = "ddp del <port_id> <backup_profile_path>",
16437 (void *)&cmd_ddp_del_ddp,
16438 (void *)&cmd_ddp_del_del,
16439 (void *)&cmd_ddp_del_port_id,
16440 (void *)&cmd_ddp_del_filepath,
16445 /* Get dynamic device personalization profile info */
16446 struct cmd_ddp_info_result {
16447 cmdline_fixed_string_t ddp;
16448 cmdline_fixed_string_t get;
16449 cmdline_fixed_string_t info;
16453 cmdline_parse_token_string_t cmd_ddp_info_ddp =
16454 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, ddp, "ddp");
16455 cmdline_parse_token_string_t cmd_ddp_info_get =
16456 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, get, "get");
16457 cmdline_parse_token_string_t cmd_ddp_info_info =
16458 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, info, "info");
16459 cmdline_parse_token_string_t cmd_ddp_info_filepath =
16460 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, filepath, NULL);
16463 cmd_ddp_info_parsed(
16464 void *parsed_result,
16465 __attribute__((unused)) struct cmdline *cl,
16466 __attribute__((unused)) void *data)
16468 struct cmd_ddp_info_result *res = parsed_result;
16471 int ret = -ENOTSUP;
16472 #ifdef RTE_LIBRTE_I40E_PMD
16475 uint32_t buff_size = 0;
16476 struct rte_pmd_i40e_profile_info info;
16477 uint32_t dev_num = 0;
16478 struct rte_pmd_i40e_ddp_device_id *devs;
16479 uint32_t proto_num = 0;
16480 struct rte_pmd_i40e_proto_info *proto = NULL;
16481 uint32_t pctype_num = 0;
16482 struct rte_pmd_i40e_ptype_info *pctype;
16483 uint32_t ptype_num = 0;
16484 struct rte_pmd_i40e_ptype_info *ptype;
16489 pkg = open_file(res->filepath, &pkg_size);
16493 #ifdef RTE_LIBRTE_I40E_PMD
16494 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
16495 (uint8_t *)&info, sizeof(info),
16496 RTE_PMD_I40E_PKG_INFO_GLOBAL_HEADER);
16498 printf("Global Track id: 0x%x\n", info.track_id);
16499 printf("Global Version: %d.%d.%d.%d\n",
16500 info.version.major,
16501 info.version.minor,
16502 info.version.update,
16503 info.version.draft);
16504 printf("Global Package name: %s\n\n", info.name);
16507 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
16508 (uint8_t *)&info, sizeof(info),
16509 RTE_PMD_I40E_PKG_INFO_HEADER);
16511 printf("i40e Profile Track id: 0x%x\n", info.track_id);
16512 printf("i40e Profile Version: %d.%d.%d.%d\n",
16513 info.version.major,
16514 info.version.minor,
16515 info.version.update,
16516 info.version.draft);
16517 printf("i40e Profile name: %s\n\n", info.name);
16520 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
16521 (uint8_t *)&buff_size, sizeof(buff_size),
16522 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES_SIZE);
16523 if (!ret && buff_size) {
16524 buff = (uint8_t *)malloc(buff_size);
16526 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
16528 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES);
16530 printf("Package Notes:\n%s\n\n", buff);
16535 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
16536 (uint8_t *)&dev_num, sizeof(dev_num),
16537 RTE_PMD_I40E_PKG_INFO_DEVID_NUM);
16538 if (!ret && dev_num) {
16539 buff_size = dev_num * sizeof(struct rte_pmd_i40e_ddp_device_id);
16540 devs = (struct rte_pmd_i40e_ddp_device_id *)malloc(buff_size);
16542 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
16543 (uint8_t *)devs, buff_size,
16544 RTE_PMD_I40E_PKG_INFO_DEVID_LIST);
16546 printf("List of supported devices:\n");
16547 for (i = 0; i < dev_num; i++) {
16548 printf(" %04X:%04X %04X:%04X\n",
16549 devs[i].vendor_dev_id >> 16,
16550 devs[i].vendor_dev_id & 0xFFFF,
16551 devs[i].sub_vendor_dev_id >> 16,
16552 devs[i].sub_vendor_dev_id & 0xFFFF);
16560 /* get information about protocols and packet types */
16561 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
16562 (uint8_t *)&proto_num, sizeof(proto_num),
16563 RTE_PMD_I40E_PKG_INFO_PROTOCOL_NUM);
16564 if (ret || !proto_num)
16565 goto no_print_return;
16567 buff_size = proto_num * sizeof(struct rte_pmd_i40e_proto_info);
16568 proto = (struct rte_pmd_i40e_proto_info *)malloc(buff_size);
16570 goto no_print_return;
16572 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)proto,
16574 RTE_PMD_I40E_PKG_INFO_PROTOCOL_LIST);
16576 printf("List of used protocols:\n");
16577 for (i = 0; i < proto_num; i++)
16578 printf(" %2u: %s\n", proto[i].proto_id,
16582 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
16583 (uint8_t *)&pctype_num, sizeof(pctype_num),
16584 RTE_PMD_I40E_PKG_INFO_PCTYPE_NUM);
16585 if (ret || !pctype_num)
16586 goto no_print_pctypes;
16588 buff_size = pctype_num * sizeof(struct rte_pmd_i40e_ptype_info);
16589 pctype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size);
16591 goto no_print_pctypes;
16593 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)pctype,
16595 RTE_PMD_I40E_PKG_INFO_PCTYPE_LIST);
16598 goto no_print_pctypes;
16601 printf("List of defined packet classification types:\n");
16602 for (i = 0; i < pctype_num; i++) {
16603 printf(" %2u:", pctype[i].ptype_id);
16604 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) {
16605 proto_id = pctype[i].protocols[j];
16606 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) {
16607 for (n = 0; n < proto_num; n++) {
16608 if (proto[n].proto_id == proto_id) {
16609 printf(" %s", proto[n].name);
16622 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)&ptype_num,
16624 RTE_PMD_I40E_PKG_INFO_PTYPE_NUM);
16625 if (ret || !ptype_num)
16626 goto no_print_return;
16628 buff_size = ptype_num * sizeof(struct rte_pmd_i40e_ptype_info);
16629 ptype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size);
16631 goto no_print_return;
16633 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)ptype,
16635 RTE_PMD_I40E_PKG_INFO_PTYPE_LIST);
16638 goto no_print_return;
16640 printf("List of defined packet types:\n");
16641 for (i = 0; i < ptype_num; i++) {
16642 printf(" %2u:", ptype[i].ptype_id);
16643 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) {
16644 proto_id = ptype[i].protocols[j];
16645 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) {
16646 for (n = 0; n < proto_num; n++) {
16647 if (proto[n].proto_id == proto_id) {
16648 printf(" %s", proto[n].name);
16664 if (ret == -ENOTSUP)
16665 printf("Function not supported in PMD driver\n");
16669 cmdline_parse_inst_t cmd_ddp_get_info = {
16670 .f = cmd_ddp_info_parsed,
16672 .help_str = "ddp get info <profile_path>",
16674 (void *)&cmd_ddp_info_ddp,
16675 (void *)&cmd_ddp_info_get,
16676 (void *)&cmd_ddp_info_info,
16677 (void *)&cmd_ddp_info_filepath,
16682 /* Get dynamic device personalization profile info list*/
16683 #define PROFILE_INFO_SIZE 48
16684 #define MAX_PROFILE_NUM 16
16686 struct cmd_ddp_get_list_result {
16687 cmdline_fixed_string_t ddp;
16688 cmdline_fixed_string_t get;
16689 cmdline_fixed_string_t list;
16693 cmdline_parse_token_string_t cmd_ddp_get_list_ddp =
16694 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, ddp, "ddp");
16695 cmdline_parse_token_string_t cmd_ddp_get_list_get =
16696 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, get, "get");
16697 cmdline_parse_token_string_t cmd_ddp_get_list_list =
16698 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, list, "list");
16699 cmdline_parse_token_num_t cmd_ddp_get_list_port_id =
16700 TOKEN_NUM_INITIALIZER(struct cmd_ddp_get_list_result, port_id, UINT16);
16703 cmd_ddp_get_list_parsed(
16704 __attribute__((unused)) void *parsed_result,
16705 __attribute__((unused)) struct cmdline *cl,
16706 __attribute__((unused)) void *data)
16708 #ifdef RTE_LIBRTE_I40E_PMD
16709 struct cmd_ddp_get_list_result *res = parsed_result;
16710 struct rte_pmd_i40e_profile_list *p_list;
16711 struct rte_pmd_i40e_profile_info *p_info;
16716 int ret = -ENOTSUP;
16718 #ifdef RTE_LIBRTE_I40E_PMD
16719 size = PROFILE_INFO_SIZE * MAX_PROFILE_NUM + 4;
16720 p_list = (struct rte_pmd_i40e_profile_list *)malloc(size);
16722 printf("%s: Failed to malloc buffer\n", __func__);
16724 if (ret == -ENOTSUP)
16725 ret = rte_pmd_i40e_get_ddp_list(res->port_id,
16726 (uint8_t *)p_list, size);
16729 p_num = p_list->p_count;
16730 printf("Profile number is: %d\n\n", p_num);
16732 for (i = 0; i < p_num; i++) {
16733 p_info = &p_list->p_info[i];
16734 printf("Profile %d:\n", i);
16735 printf("Track id: 0x%x\n", p_info->track_id);
16736 printf("Version: %d.%d.%d.%d\n",
16737 p_info->version.major,
16738 p_info->version.minor,
16739 p_info->version.update,
16740 p_info->version.draft);
16741 printf("Profile name: %s\n\n", p_info->name);
16749 printf("Failed to get ddp list\n");
16752 cmdline_parse_inst_t cmd_ddp_get_list = {
16753 .f = cmd_ddp_get_list_parsed,
16755 .help_str = "ddp get list <port_id>",
16757 (void *)&cmd_ddp_get_list_ddp,
16758 (void *)&cmd_ddp_get_list_get,
16759 (void *)&cmd_ddp_get_list_list,
16760 (void *)&cmd_ddp_get_list_port_id,
16765 /* Configure input set */
16766 struct cmd_cfg_input_set_result {
16767 cmdline_fixed_string_t port;
16768 cmdline_fixed_string_t cfg;
16770 cmdline_fixed_string_t pctype;
16772 cmdline_fixed_string_t inset_type;
16773 cmdline_fixed_string_t opt;
16774 cmdline_fixed_string_t field;
16779 cmd_cfg_input_set_parsed(
16780 __attribute__((unused)) void *parsed_result,
16781 __attribute__((unused)) struct cmdline *cl,
16782 __attribute__((unused)) void *data)
16784 #ifdef RTE_LIBRTE_I40E_PMD
16785 struct cmd_cfg_input_set_result *res = parsed_result;
16786 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE;
16787 struct rte_pmd_i40e_inset inset;
16789 int ret = -ENOTSUP;
16791 if (!all_ports_stopped()) {
16792 printf("Please stop all ports first\n");
16796 #ifdef RTE_LIBRTE_I40E_PMD
16797 if (!strcmp(res->inset_type, "hash_inset"))
16798 inset_type = INSET_HASH;
16799 else if (!strcmp(res->inset_type, "fdir_inset"))
16800 inset_type = INSET_FDIR;
16801 else if (!strcmp(res->inset_type, "fdir_flx_inset"))
16802 inset_type = INSET_FDIR_FLX;
16803 ret = rte_pmd_i40e_inset_get(res->port_id, res->pctype_id,
16804 &inset, inset_type);
16806 printf("Failed to get input set.\n");
16810 if (!strcmp(res->opt, "get")) {
16811 ret = rte_pmd_i40e_inset_field_get(inset.inset,
16814 printf("Field index %d is enabled.\n", res->field_idx);
16816 printf("Field index %d is disabled.\n", res->field_idx);
16818 } else if (!strcmp(res->opt, "set"))
16819 ret = rte_pmd_i40e_inset_field_set(&inset.inset,
16821 else if (!strcmp(res->opt, "clear"))
16822 ret = rte_pmd_i40e_inset_field_clear(&inset.inset,
16825 printf("Failed to configure input set field.\n");
16829 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id,
16830 &inset, inset_type);
16832 printf("Failed to set input set.\n");
16837 if (ret == -ENOTSUP)
16838 printf("Function not supported\n");
16841 cmdline_parse_token_string_t cmd_cfg_input_set_port =
16842 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
16844 cmdline_parse_token_string_t cmd_cfg_input_set_cfg =
16845 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
16847 cmdline_parse_token_num_t cmd_cfg_input_set_port_id =
16848 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result,
16850 cmdline_parse_token_string_t cmd_cfg_input_set_pctype =
16851 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
16853 cmdline_parse_token_num_t cmd_cfg_input_set_pctype_id =
16854 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result,
16856 cmdline_parse_token_string_t cmd_cfg_input_set_inset_type =
16857 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
16859 "hash_inset#fdir_inset#fdir_flx_inset");
16860 cmdline_parse_token_string_t cmd_cfg_input_set_opt =
16861 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
16862 opt, "get#set#clear");
16863 cmdline_parse_token_string_t cmd_cfg_input_set_field =
16864 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
16866 cmdline_parse_token_num_t cmd_cfg_input_set_field_idx =
16867 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result,
16870 cmdline_parse_inst_t cmd_cfg_input_set = {
16871 .f = cmd_cfg_input_set_parsed,
16873 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|"
16874 "fdir_inset|fdir_flx_inset get|set|clear field <field_idx>",
16876 (void *)&cmd_cfg_input_set_port,
16877 (void *)&cmd_cfg_input_set_cfg,
16878 (void *)&cmd_cfg_input_set_port_id,
16879 (void *)&cmd_cfg_input_set_pctype,
16880 (void *)&cmd_cfg_input_set_pctype_id,
16881 (void *)&cmd_cfg_input_set_inset_type,
16882 (void *)&cmd_cfg_input_set_opt,
16883 (void *)&cmd_cfg_input_set_field,
16884 (void *)&cmd_cfg_input_set_field_idx,
16889 /* Clear input set */
16890 struct cmd_clear_input_set_result {
16891 cmdline_fixed_string_t port;
16892 cmdline_fixed_string_t cfg;
16894 cmdline_fixed_string_t pctype;
16896 cmdline_fixed_string_t inset_type;
16897 cmdline_fixed_string_t clear;
16898 cmdline_fixed_string_t all;
16902 cmd_clear_input_set_parsed(
16903 __attribute__((unused)) void *parsed_result,
16904 __attribute__((unused)) struct cmdline *cl,
16905 __attribute__((unused)) void *data)
16907 #ifdef RTE_LIBRTE_I40E_PMD
16908 struct cmd_clear_input_set_result *res = parsed_result;
16909 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE;
16910 struct rte_pmd_i40e_inset inset;
16912 int ret = -ENOTSUP;
16914 if (!all_ports_stopped()) {
16915 printf("Please stop all ports first\n");
16919 #ifdef RTE_LIBRTE_I40E_PMD
16920 if (!strcmp(res->inset_type, "hash_inset"))
16921 inset_type = INSET_HASH;
16922 else if (!strcmp(res->inset_type, "fdir_inset"))
16923 inset_type = INSET_FDIR;
16924 else if (!strcmp(res->inset_type, "fdir_flx_inset"))
16925 inset_type = INSET_FDIR_FLX;
16927 memset(&inset, 0, sizeof(inset));
16929 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id,
16930 &inset, inset_type);
16932 printf("Failed to clear input set.\n");
16938 if (ret == -ENOTSUP)
16939 printf("Function not supported\n");
16942 cmdline_parse_token_string_t cmd_clear_input_set_port =
16943 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
16945 cmdline_parse_token_string_t cmd_clear_input_set_cfg =
16946 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
16948 cmdline_parse_token_num_t cmd_clear_input_set_port_id =
16949 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result,
16951 cmdline_parse_token_string_t cmd_clear_input_set_pctype =
16952 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
16954 cmdline_parse_token_num_t cmd_clear_input_set_pctype_id =
16955 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result,
16957 cmdline_parse_token_string_t cmd_clear_input_set_inset_type =
16958 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
16960 "hash_inset#fdir_inset#fdir_flx_inset");
16961 cmdline_parse_token_string_t cmd_clear_input_set_clear =
16962 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
16964 cmdline_parse_token_string_t cmd_clear_input_set_all =
16965 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
16968 cmdline_parse_inst_t cmd_clear_input_set = {
16969 .f = cmd_clear_input_set_parsed,
16971 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|"
16972 "fdir_inset|fdir_flx_inset clear all",
16974 (void *)&cmd_clear_input_set_port,
16975 (void *)&cmd_clear_input_set_cfg,
16976 (void *)&cmd_clear_input_set_port_id,
16977 (void *)&cmd_clear_input_set_pctype,
16978 (void *)&cmd_clear_input_set_pctype_id,
16979 (void *)&cmd_clear_input_set_inset_type,
16980 (void *)&cmd_clear_input_set_clear,
16981 (void *)&cmd_clear_input_set_all,
16986 /* show vf stats */
16988 /* Common result structure for show vf stats */
16989 struct cmd_show_vf_stats_result {
16990 cmdline_fixed_string_t show;
16991 cmdline_fixed_string_t vf;
16992 cmdline_fixed_string_t stats;
16997 /* Common CLI fields show vf stats*/
16998 cmdline_parse_token_string_t cmd_show_vf_stats_show =
16999 TOKEN_STRING_INITIALIZER
17000 (struct cmd_show_vf_stats_result,
17002 cmdline_parse_token_string_t cmd_show_vf_stats_vf =
17003 TOKEN_STRING_INITIALIZER
17004 (struct cmd_show_vf_stats_result,
17006 cmdline_parse_token_string_t cmd_show_vf_stats_stats =
17007 TOKEN_STRING_INITIALIZER
17008 (struct cmd_show_vf_stats_result,
17010 cmdline_parse_token_num_t cmd_show_vf_stats_port_id =
17011 TOKEN_NUM_INITIALIZER
17012 (struct cmd_show_vf_stats_result,
17014 cmdline_parse_token_num_t cmd_show_vf_stats_vf_id =
17015 TOKEN_NUM_INITIALIZER
17016 (struct cmd_show_vf_stats_result,
17020 cmd_show_vf_stats_parsed(
17021 void *parsed_result,
17022 __attribute__((unused)) struct cmdline *cl,
17023 __attribute__((unused)) void *data)
17025 struct cmd_show_vf_stats_result *res = parsed_result;
17026 struct rte_eth_stats stats;
17027 int ret = -ENOTSUP;
17028 static const char *nic_stats_border = "########################";
17030 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
17033 memset(&stats, 0, sizeof(stats));
17035 #ifdef RTE_LIBRTE_I40E_PMD
17036 if (ret == -ENOTSUP)
17037 ret = rte_pmd_i40e_get_vf_stats(res->port_id,
17041 #ifdef RTE_LIBRTE_BNXT_PMD
17042 if (ret == -ENOTSUP)
17043 ret = rte_pmd_bnxt_get_vf_stats(res->port_id,
17052 printf("invalid vf_id %d\n", res->vf_id);
17055 printf("invalid port_id %d\n", res->port_id);
17058 printf("function not implemented\n");
17061 printf("programming error: (%s)\n", strerror(-ret));
17064 printf("\n %s NIC statistics for port %-2d vf %-2d %s\n",
17065 nic_stats_border, res->port_id, res->vf_id, nic_stats_border);
17067 printf(" RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes: "
17069 stats.ipackets, stats.imissed, stats.ibytes);
17070 printf(" RX-errors: %-"PRIu64"\n", stats.ierrors);
17071 printf(" RX-nombuf: %-10"PRIu64"\n",
17073 printf(" TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes: "
17075 stats.opackets, stats.oerrors, stats.obytes);
17077 printf(" %s############################%s\n",
17078 nic_stats_border, nic_stats_border);
17081 cmdline_parse_inst_t cmd_show_vf_stats = {
17082 .f = cmd_show_vf_stats_parsed,
17084 .help_str = "show vf stats <port_id> <vf_id>",
17086 (void *)&cmd_show_vf_stats_show,
17087 (void *)&cmd_show_vf_stats_vf,
17088 (void *)&cmd_show_vf_stats_stats,
17089 (void *)&cmd_show_vf_stats_port_id,
17090 (void *)&cmd_show_vf_stats_vf_id,
17095 /* clear vf stats */
17097 /* Common result structure for clear vf stats */
17098 struct cmd_clear_vf_stats_result {
17099 cmdline_fixed_string_t clear;
17100 cmdline_fixed_string_t vf;
17101 cmdline_fixed_string_t stats;
17106 /* Common CLI fields clear vf stats*/
17107 cmdline_parse_token_string_t cmd_clear_vf_stats_clear =
17108 TOKEN_STRING_INITIALIZER
17109 (struct cmd_clear_vf_stats_result,
17111 cmdline_parse_token_string_t cmd_clear_vf_stats_vf =
17112 TOKEN_STRING_INITIALIZER
17113 (struct cmd_clear_vf_stats_result,
17115 cmdline_parse_token_string_t cmd_clear_vf_stats_stats =
17116 TOKEN_STRING_INITIALIZER
17117 (struct cmd_clear_vf_stats_result,
17119 cmdline_parse_token_num_t cmd_clear_vf_stats_port_id =
17120 TOKEN_NUM_INITIALIZER
17121 (struct cmd_clear_vf_stats_result,
17123 cmdline_parse_token_num_t cmd_clear_vf_stats_vf_id =
17124 TOKEN_NUM_INITIALIZER
17125 (struct cmd_clear_vf_stats_result,
17129 cmd_clear_vf_stats_parsed(
17130 void *parsed_result,
17131 __attribute__((unused)) struct cmdline *cl,
17132 __attribute__((unused)) void *data)
17134 struct cmd_clear_vf_stats_result *res = parsed_result;
17135 int ret = -ENOTSUP;
17137 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
17140 #ifdef RTE_LIBRTE_I40E_PMD
17141 if (ret == -ENOTSUP)
17142 ret = rte_pmd_i40e_reset_vf_stats(res->port_id,
17145 #ifdef RTE_LIBRTE_BNXT_PMD
17146 if (ret == -ENOTSUP)
17147 ret = rte_pmd_bnxt_reset_vf_stats(res->port_id,
17155 printf("invalid vf_id %d\n", res->vf_id);
17158 printf("invalid port_id %d\n", res->port_id);
17161 printf("function not implemented\n");
17164 printf("programming error: (%s)\n", strerror(-ret));
17168 cmdline_parse_inst_t cmd_clear_vf_stats = {
17169 .f = cmd_clear_vf_stats_parsed,
17171 .help_str = "clear vf stats <port_id> <vf_id>",
17173 (void *)&cmd_clear_vf_stats_clear,
17174 (void *)&cmd_clear_vf_stats_vf,
17175 (void *)&cmd_clear_vf_stats_stats,
17176 (void *)&cmd_clear_vf_stats_port_id,
17177 (void *)&cmd_clear_vf_stats_vf_id,
17182 /* port config pctype mapping reset */
17184 /* Common result structure for port config pctype mapping reset */
17185 struct cmd_pctype_mapping_reset_result {
17186 cmdline_fixed_string_t port;
17187 cmdline_fixed_string_t config;
17189 cmdline_fixed_string_t pctype;
17190 cmdline_fixed_string_t mapping;
17191 cmdline_fixed_string_t reset;
17194 /* Common CLI fields for port config pctype mapping reset*/
17195 cmdline_parse_token_string_t cmd_pctype_mapping_reset_port =
17196 TOKEN_STRING_INITIALIZER
17197 (struct cmd_pctype_mapping_reset_result,
17199 cmdline_parse_token_string_t cmd_pctype_mapping_reset_config =
17200 TOKEN_STRING_INITIALIZER
17201 (struct cmd_pctype_mapping_reset_result,
17203 cmdline_parse_token_num_t cmd_pctype_mapping_reset_port_id =
17204 TOKEN_NUM_INITIALIZER
17205 (struct cmd_pctype_mapping_reset_result,
17207 cmdline_parse_token_string_t cmd_pctype_mapping_reset_pctype =
17208 TOKEN_STRING_INITIALIZER
17209 (struct cmd_pctype_mapping_reset_result,
17211 cmdline_parse_token_string_t cmd_pctype_mapping_reset_mapping =
17212 TOKEN_STRING_INITIALIZER
17213 (struct cmd_pctype_mapping_reset_result,
17214 mapping, "mapping");
17215 cmdline_parse_token_string_t cmd_pctype_mapping_reset_reset =
17216 TOKEN_STRING_INITIALIZER
17217 (struct cmd_pctype_mapping_reset_result,
17221 cmd_pctype_mapping_reset_parsed(
17222 void *parsed_result,
17223 __attribute__((unused)) struct cmdline *cl,
17224 __attribute__((unused)) void *data)
17226 struct cmd_pctype_mapping_reset_result *res = parsed_result;
17227 int ret = -ENOTSUP;
17229 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
17232 #ifdef RTE_LIBRTE_I40E_PMD
17233 ret = rte_pmd_i40e_flow_type_mapping_reset(res->port_id);
17240 printf("invalid port_id %d\n", res->port_id);
17243 printf("function not implemented\n");
17246 printf("programming error: (%s)\n", strerror(-ret));
17250 cmdline_parse_inst_t cmd_pctype_mapping_reset = {
17251 .f = cmd_pctype_mapping_reset_parsed,
17253 .help_str = "port config <port_id> pctype mapping reset",
17255 (void *)&cmd_pctype_mapping_reset_port,
17256 (void *)&cmd_pctype_mapping_reset_config,
17257 (void *)&cmd_pctype_mapping_reset_port_id,
17258 (void *)&cmd_pctype_mapping_reset_pctype,
17259 (void *)&cmd_pctype_mapping_reset_mapping,
17260 (void *)&cmd_pctype_mapping_reset_reset,
17265 /* show port pctype mapping */
17267 /* Common result structure for show port pctype mapping */
17268 struct cmd_pctype_mapping_get_result {
17269 cmdline_fixed_string_t show;
17270 cmdline_fixed_string_t port;
17272 cmdline_fixed_string_t pctype;
17273 cmdline_fixed_string_t mapping;
17276 /* Common CLI fields for pctype mapping get */
17277 cmdline_parse_token_string_t cmd_pctype_mapping_get_show =
17278 TOKEN_STRING_INITIALIZER
17279 (struct cmd_pctype_mapping_get_result,
17281 cmdline_parse_token_string_t cmd_pctype_mapping_get_port =
17282 TOKEN_STRING_INITIALIZER
17283 (struct cmd_pctype_mapping_get_result,
17285 cmdline_parse_token_num_t cmd_pctype_mapping_get_port_id =
17286 TOKEN_NUM_INITIALIZER
17287 (struct cmd_pctype_mapping_get_result,
17289 cmdline_parse_token_string_t cmd_pctype_mapping_get_pctype =
17290 TOKEN_STRING_INITIALIZER
17291 (struct cmd_pctype_mapping_get_result,
17293 cmdline_parse_token_string_t cmd_pctype_mapping_get_mapping =
17294 TOKEN_STRING_INITIALIZER
17295 (struct cmd_pctype_mapping_get_result,
17296 mapping, "mapping");
17299 cmd_pctype_mapping_get_parsed(
17300 void *parsed_result,
17301 __attribute__((unused)) struct cmdline *cl,
17302 __attribute__((unused)) void *data)
17304 struct cmd_pctype_mapping_get_result *res = parsed_result;
17305 int ret = -ENOTSUP;
17306 #ifdef RTE_LIBRTE_I40E_PMD
17307 struct rte_pmd_i40e_flow_type_mapping
17308 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX];
17309 int i, j, first_pctype;
17312 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
17315 #ifdef RTE_LIBRTE_I40E_PMD
17316 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id, mapping);
17323 printf("invalid port_id %d\n", res->port_id);
17326 printf("function not implemented\n");
17329 printf("programming error: (%s)\n", strerror(-ret));
17333 #ifdef RTE_LIBRTE_I40E_PMD
17334 for (i = 0; i < RTE_PMD_I40E_FLOW_TYPE_MAX; i++) {
17335 if (mapping[i].pctype != 0ULL) {
17338 printf("pctype: ");
17339 for (j = 0; j < RTE_PMD_I40E_PCTYPE_MAX; j++) {
17340 if (mapping[i].pctype & (1ULL << j)) {
17341 printf(first_pctype ?
17342 "%02d" : ",%02d", j);
17346 printf(" -> flowtype: %02d\n", mapping[i].flow_type);
17352 cmdline_parse_inst_t cmd_pctype_mapping_get = {
17353 .f = cmd_pctype_mapping_get_parsed,
17355 .help_str = "show port <port_id> pctype mapping",
17357 (void *)&cmd_pctype_mapping_get_show,
17358 (void *)&cmd_pctype_mapping_get_port,
17359 (void *)&cmd_pctype_mapping_get_port_id,
17360 (void *)&cmd_pctype_mapping_get_pctype,
17361 (void *)&cmd_pctype_mapping_get_mapping,
17366 /* port config pctype mapping update */
17368 /* Common result structure for port config pctype mapping update */
17369 struct cmd_pctype_mapping_update_result {
17370 cmdline_fixed_string_t port;
17371 cmdline_fixed_string_t config;
17373 cmdline_fixed_string_t pctype;
17374 cmdline_fixed_string_t mapping;
17375 cmdline_fixed_string_t update;
17376 cmdline_fixed_string_t pctype_list;
17377 uint16_t flow_type;
17380 /* Common CLI fields for pctype mapping update*/
17381 cmdline_parse_token_string_t cmd_pctype_mapping_update_port =
17382 TOKEN_STRING_INITIALIZER
17383 (struct cmd_pctype_mapping_update_result,
17385 cmdline_parse_token_string_t cmd_pctype_mapping_update_config =
17386 TOKEN_STRING_INITIALIZER
17387 (struct cmd_pctype_mapping_update_result,
17389 cmdline_parse_token_num_t cmd_pctype_mapping_update_port_id =
17390 TOKEN_NUM_INITIALIZER
17391 (struct cmd_pctype_mapping_update_result,
17393 cmdline_parse_token_string_t cmd_pctype_mapping_update_pctype =
17394 TOKEN_STRING_INITIALIZER
17395 (struct cmd_pctype_mapping_update_result,
17397 cmdline_parse_token_string_t cmd_pctype_mapping_update_mapping =
17398 TOKEN_STRING_INITIALIZER
17399 (struct cmd_pctype_mapping_update_result,
17400 mapping, "mapping");
17401 cmdline_parse_token_string_t cmd_pctype_mapping_update_update =
17402 TOKEN_STRING_INITIALIZER
17403 (struct cmd_pctype_mapping_update_result,
17405 cmdline_parse_token_string_t cmd_pctype_mapping_update_pc_type =
17406 TOKEN_STRING_INITIALIZER
17407 (struct cmd_pctype_mapping_update_result,
17408 pctype_list, NULL);
17409 cmdline_parse_token_num_t cmd_pctype_mapping_update_flow_type =
17410 TOKEN_NUM_INITIALIZER
17411 (struct cmd_pctype_mapping_update_result,
17412 flow_type, UINT16);
17415 cmd_pctype_mapping_update_parsed(
17416 void *parsed_result,
17417 __attribute__((unused)) struct cmdline *cl,
17418 __attribute__((unused)) void *data)
17420 struct cmd_pctype_mapping_update_result *res = parsed_result;
17421 int ret = -ENOTSUP;
17422 #ifdef RTE_LIBRTE_I40E_PMD
17423 struct rte_pmd_i40e_flow_type_mapping mapping;
17425 unsigned int nb_item;
17426 unsigned int pctype_list[RTE_PMD_I40E_PCTYPE_MAX];
17429 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
17432 #ifdef RTE_LIBRTE_I40E_PMD
17433 nb_item = parse_item_list(res->pctype_list, "pctypes",
17434 RTE_PMD_I40E_PCTYPE_MAX, pctype_list, 1);
17435 mapping.flow_type = res->flow_type;
17436 for (i = 0, mapping.pctype = 0ULL; i < nb_item; i++)
17437 mapping.pctype |= (1ULL << pctype_list[i]);
17438 ret = rte_pmd_i40e_flow_type_mapping_update(res->port_id,
17448 printf("invalid pctype or flow type\n");
17451 printf("invalid port_id %d\n", res->port_id);
17454 printf("function not implemented\n");
17457 printf("programming error: (%s)\n", strerror(-ret));
17461 cmdline_parse_inst_t cmd_pctype_mapping_update = {
17462 .f = cmd_pctype_mapping_update_parsed,
17464 .help_str = "port config <port_id> pctype mapping update"
17465 " <pctype_id_0,[pctype_id_1]*> <flowtype_id>",
17467 (void *)&cmd_pctype_mapping_update_port,
17468 (void *)&cmd_pctype_mapping_update_config,
17469 (void *)&cmd_pctype_mapping_update_port_id,
17470 (void *)&cmd_pctype_mapping_update_pctype,
17471 (void *)&cmd_pctype_mapping_update_mapping,
17472 (void *)&cmd_pctype_mapping_update_update,
17473 (void *)&cmd_pctype_mapping_update_pc_type,
17474 (void *)&cmd_pctype_mapping_update_flow_type,
17479 /* ptype mapping get */
17481 /* Common result structure for ptype mapping get */
17482 struct cmd_ptype_mapping_get_result {
17483 cmdline_fixed_string_t ptype;
17484 cmdline_fixed_string_t mapping;
17485 cmdline_fixed_string_t get;
17487 uint8_t valid_only;
17490 /* Common CLI fields for ptype mapping get */
17491 cmdline_parse_token_string_t cmd_ptype_mapping_get_ptype =
17492 TOKEN_STRING_INITIALIZER
17493 (struct cmd_ptype_mapping_get_result,
17495 cmdline_parse_token_string_t cmd_ptype_mapping_get_mapping =
17496 TOKEN_STRING_INITIALIZER
17497 (struct cmd_ptype_mapping_get_result,
17498 mapping, "mapping");
17499 cmdline_parse_token_string_t cmd_ptype_mapping_get_get =
17500 TOKEN_STRING_INITIALIZER
17501 (struct cmd_ptype_mapping_get_result,
17503 cmdline_parse_token_num_t cmd_ptype_mapping_get_port_id =
17504 TOKEN_NUM_INITIALIZER
17505 (struct cmd_ptype_mapping_get_result,
17507 cmdline_parse_token_num_t cmd_ptype_mapping_get_valid_only =
17508 TOKEN_NUM_INITIALIZER
17509 (struct cmd_ptype_mapping_get_result,
17510 valid_only, UINT8);
17513 cmd_ptype_mapping_get_parsed(
17514 void *parsed_result,
17515 __attribute__((unused)) struct cmdline *cl,
17516 __attribute__((unused)) void *data)
17518 struct cmd_ptype_mapping_get_result *res = parsed_result;
17519 int ret = -ENOTSUP;
17520 #ifdef RTE_LIBRTE_I40E_PMD
17521 int max_ptype_num = 256;
17522 struct rte_pmd_i40e_ptype_mapping mapping[max_ptype_num];
17527 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
17530 #ifdef RTE_LIBRTE_I40E_PMD
17531 ret = rte_pmd_i40e_ptype_mapping_get(res->port_id,
17542 printf("invalid port_id %d\n", res->port_id);
17545 printf("function not implemented\n");
17548 printf("programming error: (%s)\n", strerror(-ret));
17551 #ifdef RTE_LIBRTE_I40E_PMD
17553 for (i = 0; i < count; i++)
17554 printf("%3d\t0x%08x\n",
17555 mapping[i].hw_ptype, mapping[i].sw_ptype);
17560 cmdline_parse_inst_t cmd_ptype_mapping_get = {
17561 .f = cmd_ptype_mapping_get_parsed,
17563 .help_str = "ptype mapping get <port_id> <valid_only>",
17565 (void *)&cmd_ptype_mapping_get_ptype,
17566 (void *)&cmd_ptype_mapping_get_mapping,
17567 (void *)&cmd_ptype_mapping_get_get,
17568 (void *)&cmd_ptype_mapping_get_port_id,
17569 (void *)&cmd_ptype_mapping_get_valid_only,
17574 /* ptype mapping replace */
17576 /* Common result structure for ptype mapping replace */
17577 struct cmd_ptype_mapping_replace_result {
17578 cmdline_fixed_string_t ptype;
17579 cmdline_fixed_string_t mapping;
17580 cmdline_fixed_string_t replace;
17587 /* Common CLI fields for ptype mapping replace */
17588 cmdline_parse_token_string_t cmd_ptype_mapping_replace_ptype =
17589 TOKEN_STRING_INITIALIZER
17590 (struct cmd_ptype_mapping_replace_result,
17592 cmdline_parse_token_string_t cmd_ptype_mapping_replace_mapping =
17593 TOKEN_STRING_INITIALIZER
17594 (struct cmd_ptype_mapping_replace_result,
17595 mapping, "mapping");
17596 cmdline_parse_token_string_t cmd_ptype_mapping_replace_replace =
17597 TOKEN_STRING_INITIALIZER
17598 (struct cmd_ptype_mapping_replace_result,
17599 replace, "replace");
17600 cmdline_parse_token_num_t cmd_ptype_mapping_replace_port_id =
17601 TOKEN_NUM_INITIALIZER
17602 (struct cmd_ptype_mapping_replace_result,
17604 cmdline_parse_token_num_t cmd_ptype_mapping_replace_target =
17605 TOKEN_NUM_INITIALIZER
17606 (struct cmd_ptype_mapping_replace_result,
17608 cmdline_parse_token_num_t cmd_ptype_mapping_replace_mask =
17609 TOKEN_NUM_INITIALIZER
17610 (struct cmd_ptype_mapping_replace_result,
17612 cmdline_parse_token_num_t cmd_ptype_mapping_replace_pkt_type =
17613 TOKEN_NUM_INITIALIZER
17614 (struct cmd_ptype_mapping_replace_result,
17618 cmd_ptype_mapping_replace_parsed(
17619 void *parsed_result,
17620 __attribute__((unused)) struct cmdline *cl,
17621 __attribute__((unused)) void *data)
17623 struct cmd_ptype_mapping_replace_result *res = parsed_result;
17624 int ret = -ENOTSUP;
17626 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
17629 #ifdef RTE_LIBRTE_I40E_PMD
17630 ret = rte_pmd_i40e_ptype_mapping_replace(res->port_id,
17640 printf("invalid ptype 0x%8x or 0x%8x\n",
17641 res->target, res->pkt_type);
17644 printf("invalid port_id %d\n", res->port_id);
17647 printf("function not implemented\n");
17650 printf("programming error: (%s)\n", strerror(-ret));
17654 cmdline_parse_inst_t cmd_ptype_mapping_replace = {
17655 .f = cmd_ptype_mapping_replace_parsed,
17658 "ptype mapping replace <port_id> <target> <mask> <pkt_type>",
17660 (void *)&cmd_ptype_mapping_replace_ptype,
17661 (void *)&cmd_ptype_mapping_replace_mapping,
17662 (void *)&cmd_ptype_mapping_replace_replace,
17663 (void *)&cmd_ptype_mapping_replace_port_id,
17664 (void *)&cmd_ptype_mapping_replace_target,
17665 (void *)&cmd_ptype_mapping_replace_mask,
17666 (void *)&cmd_ptype_mapping_replace_pkt_type,
17671 /* ptype mapping reset */
17673 /* Common result structure for ptype mapping reset */
17674 struct cmd_ptype_mapping_reset_result {
17675 cmdline_fixed_string_t ptype;
17676 cmdline_fixed_string_t mapping;
17677 cmdline_fixed_string_t reset;
17681 /* Common CLI fields for ptype mapping reset*/
17682 cmdline_parse_token_string_t cmd_ptype_mapping_reset_ptype =
17683 TOKEN_STRING_INITIALIZER
17684 (struct cmd_ptype_mapping_reset_result,
17686 cmdline_parse_token_string_t cmd_ptype_mapping_reset_mapping =
17687 TOKEN_STRING_INITIALIZER
17688 (struct cmd_ptype_mapping_reset_result,
17689 mapping, "mapping");
17690 cmdline_parse_token_string_t cmd_ptype_mapping_reset_reset =
17691 TOKEN_STRING_INITIALIZER
17692 (struct cmd_ptype_mapping_reset_result,
17694 cmdline_parse_token_num_t cmd_ptype_mapping_reset_port_id =
17695 TOKEN_NUM_INITIALIZER
17696 (struct cmd_ptype_mapping_reset_result,
17700 cmd_ptype_mapping_reset_parsed(
17701 void *parsed_result,
17702 __attribute__((unused)) struct cmdline *cl,
17703 __attribute__((unused)) void *data)
17705 struct cmd_ptype_mapping_reset_result *res = parsed_result;
17706 int ret = -ENOTSUP;
17708 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
17711 #ifdef RTE_LIBRTE_I40E_PMD
17712 ret = rte_pmd_i40e_ptype_mapping_reset(res->port_id);
17719 printf("invalid port_id %d\n", res->port_id);
17722 printf("function not implemented\n");
17725 printf("programming error: (%s)\n", strerror(-ret));
17729 cmdline_parse_inst_t cmd_ptype_mapping_reset = {
17730 .f = cmd_ptype_mapping_reset_parsed,
17732 .help_str = "ptype mapping reset <port_id>",
17734 (void *)&cmd_ptype_mapping_reset_ptype,
17735 (void *)&cmd_ptype_mapping_reset_mapping,
17736 (void *)&cmd_ptype_mapping_reset_reset,
17737 (void *)&cmd_ptype_mapping_reset_port_id,
17742 /* ptype mapping update */
17744 /* Common result structure for ptype mapping update */
17745 struct cmd_ptype_mapping_update_result {
17746 cmdline_fixed_string_t ptype;
17747 cmdline_fixed_string_t mapping;
17748 cmdline_fixed_string_t reset;
17754 /* Common CLI fields for ptype mapping update*/
17755 cmdline_parse_token_string_t cmd_ptype_mapping_update_ptype =
17756 TOKEN_STRING_INITIALIZER
17757 (struct cmd_ptype_mapping_update_result,
17759 cmdline_parse_token_string_t cmd_ptype_mapping_update_mapping =
17760 TOKEN_STRING_INITIALIZER
17761 (struct cmd_ptype_mapping_update_result,
17762 mapping, "mapping");
17763 cmdline_parse_token_string_t cmd_ptype_mapping_update_update =
17764 TOKEN_STRING_INITIALIZER
17765 (struct cmd_ptype_mapping_update_result,
17767 cmdline_parse_token_num_t cmd_ptype_mapping_update_port_id =
17768 TOKEN_NUM_INITIALIZER
17769 (struct cmd_ptype_mapping_update_result,
17771 cmdline_parse_token_num_t cmd_ptype_mapping_update_hw_ptype =
17772 TOKEN_NUM_INITIALIZER
17773 (struct cmd_ptype_mapping_update_result,
17775 cmdline_parse_token_num_t cmd_ptype_mapping_update_sw_ptype =
17776 TOKEN_NUM_INITIALIZER
17777 (struct cmd_ptype_mapping_update_result,
17781 cmd_ptype_mapping_update_parsed(
17782 void *parsed_result,
17783 __attribute__((unused)) struct cmdline *cl,
17784 __attribute__((unused)) void *data)
17786 struct cmd_ptype_mapping_update_result *res = parsed_result;
17787 int ret = -ENOTSUP;
17788 #ifdef RTE_LIBRTE_I40E_PMD
17789 struct rte_pmd_i40e_ptype_mapping mapping;
17791 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
17794 #ifdef RTE_LIBRTE_I40E_PMD
17795 mapping.hw_ptype = res->hw_ptype;
17796 mapping.sw_ptype = res->sw_ptype;
17797 ret = rte_pmd_i40e_ptype_mapping_update(res->port_id,
17807 printf("invalid ptype 0x%8x\n", res->sw_ptype);
17810 printf("invalid port_id %d\n", res->port_id);
17813 printf("function not implemented\n");
17816 printf("programming error: (%s)\n", strerror(-ret));
17820 cmdline_parse_inst_t cmd_ptype_mapping_update = {
17821 .f = cmd_ptype_mapping_update_parsed,
17823 .help_str = "ptype mapping update <port_id> <hw_ptype> <sw_ptype>",
17825 (void *)&cmd_ptype_mapping_update_ptype,
17826 (void *)&cmd_ptype_mapping_update_mapping,
17827 (void *)&cmd_ptype_mapping_update_update,
17828 (void *)&cmd_ptype_mapping_update_port_id,
17829 (void *)&cmd_ptype_mapping_update_hw_ptype,
17830 (void *)&cmd_ptype_mapping_update_sw_ptype,
17835 /* Common result structure for file commands */
17836 struct cmd_cmdfile_result {
17837 cmdline_fixed_string_t load;
17838 cmdline_fixed_string_t filename;
17841 /* Common CLI fields for file commands */
17842 cmdline_parse_token_string_t cmd_load_cmdfile =
17843 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, load, "load");
17844 cmdline_parse_token_string_t cmd_load_cmdfile_filename =
17845 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, filename, NULL);
17848 cmd_load_from_file_parsed(
17849 void *parsed_result,
17850 __attribute__((unused)) struct cmdline *cl,
17851 __attribute__((unused)) void *data)
17853 struct cmd_cmdfile_result *res = parsed_result;
17855 cmdline_read_from_file(res->filename);
17858 cmdline_parse_inst_t cmd_load_from_file = {
17859 .f = cmd_load_from_file_parsed,
17861 .help_str = "load <filename>",
17863 (void *)&cmd_load_cmdfile,
17864 (void *)&cmd_load_cmdfile_filename,
17869 /* Get Rx offloads capabilities */
17870 struct cmd_rx_offload_get_capa_result {
17871 cmdline_fixed_string_t show;
17872 cmdline_fixed_string_t port;
17874 cmdline_fixed_string_t rx_offload;
17875 cmdline_fixed_string_t capabilities;
17878 cmdline_parse_token_string_t cmd_rx_offload_get_capa_show =
17879 TOKEN_STRING_INITIALIZER
17880 (struct cmd_rx_offload_get_capa_result,
17882 cmdline_parse_token_string_t cmd_rx_offload_get_capa_port =
17883 TOKEN_STRING_INITIALIZER
17884 (struct cmd_rx_offload_get_capa_result,
17886 cmdline_parse_token_num_t cmd_rx_offload_get_capa_port_id =
17887 TOKEN_NUM_INITIALIZER
17888 (struct cmd_rx_offload_get_capa_result,
17890 cmdline_parse_token_string_t cmd_rx_offload_get_capa_rx_offload =
17891 TOKEN_STRING_INITIALIZER
17892 (struct cmd_rx_offload_get_capa_result,
17893 rx_offload, "rx_offload");
17894 cmdline_parse_token_string_t cmd_rx_offload_get_capa_capabilities =
17895 TOKEN_STRING_INITIALIZER
17896 (struct cmd_rx_offload_get_capa_result,
17897 capabilities, "capabilities");
17900 print_rx_offloads(uint64_t offloads)
17902 uint64_t single_offload;
17910 begin = __builtin_ctzll(offloads);
17911 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads);
17913 single_offload = 1ULL << begin;
17914 for (bit = begin; bit < end; bit++) {
17915 if (offloads & single_offload)
17917 rte_eth_dev_rx_offload_name(single_offload));
17918 single_offload <<= 1;
17923 cmd_rx_offload_get_capa_parsed(
17924 void *parsed_result,
17925 __attribute__((unused)) struct cmdline *cl,
17926 __attribute__((unused)) void *data)
17928 struct cmd_rx_offload_get_capa_result *res = parsed_result;
17929 struct rte_eth_dev_info dev_info;
17930 portid_t port_id = res->port_id;
17931 uint64_t queue_offloads;
17932 uint64_t port_offloads;
17935 ret = eth_dev_info_get_print_err(port_id, &dev_info);
17939 queue_offloads = dev_info.rx_queue_offload_capa;
17940 port_offloads = dev_info.rx_offload_capa ^ queue_offloads;
17942 printf("Rx Offloading Capabilities of port %d :\n", port_id);
17943 printf(" Per Queue :");
17944 print_rx_offloads(queue_offloads);
17947 printf(" Per Port :");
17948 print_rx_offloads(port_offloads);
17952 cmdline_parse_inst_t cmd_rx_offload_get_capa = {
17953 .f = cmd_rx_offload_get_capa_parsed,
17955 .help_str = "show port <port_id> rx_offload capabilities",
17957 (void *)&cmd_rx_offload_get_capa_show,
17958 (void *)&cmd_rx_offload_get_capa_port,
17959 (void *)&cmd_rx_offload_get_capa_port_id,
17960 (void *)&cmd_rx_offload_get_capa_rx_offload,
17961 (void *)&cmd_rx_offload_get_capa_capabilities,
17966 /* Get Rx offloads configuration */
17967 struct cmd_rx_offload_get_configuration_result {
17968 cmdline_fixed_string_t show;
17969 cmdline_fixed_string_t port;
17971 cmdline_fixed_string_t rx_offload;
17972 cmdline_fixed_string_t configuration;
17975 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_show =
17976 TOKEN_STRING_INITIALIZER
17977 (struct cmd_rx_offload_get_configuration_result,
17979 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_port =
17980 TOKEN_STRING_INITIALIZER
17981 (struct cmd_rx_offload_get_configuration_result,
17983 cmdline_parse_token_num_t cmd_rx_offload_get_configuration_port_id =
17984 TOKEN_NUM_INITIALIZER
17985 (struct cmd_rx_offload_get_configuration_result,
17987 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_rx_offload =
17988 TOKEN_STRING_INITIALIZER
17989 (struct cmd_rx_offload_get_configuration_result,
17990 rx_offload, "rx_offload");
17991 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_configuration =
17992 TOKEN_STRING_INITIALIZER
17993 (struct cmd_rx_offload_get_configuration_result,
17994 configuration, "configuration");
17997 cmd_rx_offload_get_configuration_parsed(
17998 void *parsed_result,
17999 __attribute__((unused)) struct cmdline *cl,
18000 __attribute__((unused)) void *data)
18002 struct cmd_rx_offload_get_configuration_result *res = parsed_result;
18003 struct rte_eth_dev_info dev_info;
18004 portid_t port_id = res->port_id;
18005 struct rte_port *port = &ports[port_id];
18006 uint64_t port_offloads;
18007 uint64_t queue_offloads;
18008 uint16_t nb_rx_queues;
18012 printf("Rx Offloading Configuration of port %d :\n", port_id);
18014 port_offloads = port->dev_conf.rxmode.offloads;
18016 print_rx_offloads(port_offloads);
18019 ret = eth_dev_info_get_print_err(port_id, &dev_info);
18023 nb_rx_queues = dev_info.nb_rx_queues;
18024 for (q = 0; q < nb_rx_queues; q++) {
18025 queue_offloads = port->rx_conf[q].offloads;
18026 printf(" Queue[%2d] :", q);
18027 print_rx_offloads(queue_offloads);
18033 cmdline_parse_inst_t cmd_rx_offload_get_configuration = {
18034 .f = cmd_rx_offload_get_configuration_parsed,
18036 .help_str = "show port <port_id> rx_offload configuration",
18038 (void *)&cmd_rx_offload_get_configuration_show,
18039 (void *)&cmd_rx_offload_get_configuration_port,
18040 (void *)&cmd_rx_offload_get_configuration_port_id,
18041 (void *)&cmd_rx_offload_get_configuration_rx_offload,
18042 (void *)&cmd_rx_offload_get_configuration_configuration,
18047 /* Enable/Disable a per port offloading */
18048 struct cmd_config_per_port_rx_offload_result {
18049 cmdline_fixed_string_t port;
18050 cmdline_fixed_string_t config;
18052 cmdline_fixed_string_t rx_offload;
18053 cmdline_fixed_string_t offload;
18054 cmdline_fixed_string_t on_off;
18057 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_port =
18058 TOKEN_STRING_INITIALIZER
18059 (struct cmd_config_per_port_rx_offload_result,
18061 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_config =
18062 TOKEN_STRING_INITIALIZER
18063 (struct cmd_config_per_port_rx_offload_result,
18065 cmdline_parse_token_num_t cmd_config_per_port_rx_offload_result_port_id =
18066 TOKEN_NUM_INITIALIZER
18067 (struct cmd_config_per_port_rx_offload_result,
18069 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_rx_offload =
18070 TOKEN_STRING_INITIALIZER
18071 (struct cmd_config_per_port_rx_offload_result,
18072 rx_offload, "rx_offload");
18073 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_offload =
18074 TOKEN_STRING_INITIALIZER
18075 (struct cmd_config_per_port_rx_offload_result,
18076 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#"
18077 "qinq_strip#outer_ipv4_cksum#macsec_strip#"
18078 "header_split#vlan_filter#vlan_extend#jumbo_frame#"
18079 "crc_strip#scatter#timestamp#security#keep_crc");
18080 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_on_off =
18081 TOKEN_STRING_INITIALIZER
18082 (struct cmd_config_per_port_rx_offload_result,
18086 search_rx_offload(const char *name)
18088 uint64_t single_offload;
18089 const char *single_name;
18093 single_offload = 1;
18094 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) {
18095 single_name = rte_eth_dev_rx_offload_name(single_offload);
18096 if (!strcasecmp(single_name, name)) {
18100 single_offload <<= 1;
18104 return single_offload;
18110 cmd_config_per_port_rx_offload_parsed(void *parsed_result,
18111 __attribute__((unused)) struct cmdline *cl,
18112 __attribute__((unused)) void *data)
18114 struct cmd_config_per_port_rx_offload_result *res = parsed_result;
18115 portid_t port_id = res->port_id;
18116 struct rte_eth_dev_info dev_info;
18117 struct rte_port *port = &ports[port_id];
18118 uint64_t single_offload;
18119 uint16_t nb_rx_queues;
18123 if (port->port_status != RTE_PORT_STOPPED) {
18124 printf("Error: Can't config offload when Port %d "
18125 "is not stopped\n", port_id);
18129 single_offload = search_rx_offload(res->offload);
18130 if (single_offload == 0) {
18131 printf("Unknown offload name: %s\n", res->offload);
18135 ret = eth_dev_info_get_print_err(port_id, &dev_info);
18139 nb_rx_queues = dev_info.nb_rx_queues;
18140 if (!strcmp(res->on_off, "on")) {
18141 port->dev_conf.rxmode.offloads |= single_offload;
18142 for (q = 0; q < nb_rx_queues; q++)
18143 port->rx_conf[q].offloads |= single_offload;
18145 port->dev_conf.rxmode.offloads &= ~single_offload;
18146 for (q = 0; q < nb_rx_queues; q++)
18147 port->rx_conf[q].offloads &= ~single_offload;
18150 cmd_reconfig_device_queue(port_id, 1, 1);
18153 cmdline_parse_inst_t cmd_config_per_port_rx_offload = {
18154 .f = cmd_config_per_port_rx_offload_parsed,
18156 .help_str = "port config <port_id> rx_offload vlan_strip|ipv4_cksum|"
18157 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|"
18158 "macsec_strip|header_split|vlan_filter|vlan_extend|"
18159 "jumbo_frame|crc_strip|scatter|timestamp|security|keep_crc "
18162 (void *)&cmd_config_per_port_rx_offload_result_port,
18163 (void *)&cmd_config_per_port_rx_offload_result_config,
18164 (void *)&cmd_config_per_port_rx_offload_result_port_id,
18165 (void *)&cmd_config_per_port_rx_offload_result_rx_offload,
18166 (void *)&cmd_config_per_port_rx_offload_result_offload,
18167 (void *)&cmd_config_per_port_rx_offload_result_on_off,
18172 /* Enable/Disable a per queue offloading */
18173 struct cmd_config_per_queue_rx_offload_result {
18174 cmdline_fixed_string_t port;
18176 cmdline_fixed_string_t rxq;
18178 cmdline_fixed_string_t rx_offload;
18179 cmdline_fixed_string_t offload;
18180 cmdline_fixed_string_t on_off;
18183 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_port =
18184 TOKEN_STRING_INITIALIZER
18185 (struct cmd_config_per_queue_rx_offload_result,
18187 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_port_id =
18188 TOKEN_NUM_INITIALIZER
18189 (struct cmd_config_per_queue_rx_offload_result,
18191 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxq =
18192 TOKEN_STRING_INITIALIZER
18193 (struct cmd_config_per_queue_rx_offload_result,
18195 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_queue_id =
18196 TOKEN_NUM_INITIALIZER
18197 (struct cmd_config_per_queue_rx_offload_result,
18199 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxoffload =
18200 TOKEN_STRING_INITIALIZER
18201 (struct cmd_config_per_queue_rx_offload_result,
18202 rx_offload, "rx_offload");
18203 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_offload =
18204 TOKEN_STRING_INITIALIZER
18205 (struct cmd_config_per_queue_rx_offload_result,
18206 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#"
18207 "qinq_strip#outer_ipv4_cksum#macsec_strip#"
18208 "header_split#vlan_filter#vlan_extend#jumbo_frame#"
18209 "crc_strip#scatter#timestamp#security#keep_crc");
18210 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_on_off =
18211 TOKEN_STRING_INITIALIZER
18212 (struct cmd_config_per_queue_rx_offload_result,
18216 cmd_config_per_queue_rx_offload_parsed(void *parsed_result,
18217 __attribute__((unused)) struct cmdline *cl,
18218 __attribute__((unused)) void *data)
18220 struct cmd_config_per_queue_rx_offload_result *res = parsed_result;
18221 struct rte_eth_dev_info dev_info;
18222 portid_t port_id = res->port_id;
18223 uint16_t queue_id = res->queue_id;
18224 struct rte_port *port = &ports[port_id];
18225 uint64_t single_offload;
18228 if (port->port_status != RTE_PORT_STOPPED) {
18229 printf("Error: Can't config offload when Port %d "
18230 "is not stopped\n", port_id);
18234 ret = eth_dev_info_get_print_err(port_id, &dev_info);
18238 if (queue_id >= dev_info.nb_rx_queues) {
18239 printf("Error: input queue_id should be 0 ... "
18240 "%d\n", dev_info.nb_rx_queues - 1);
18244 single_offload = search_rx_offload(res->offload);
18245 if (single_offload == 0) {
18246 printf("Unknown offload name: %s\n", res->offload);
18250 if (!strcmp(res->on_off, "on"))
18251 port->rx_conf[queue_id].offloads |= single_offload;
18253 port->rx_conf[queue_id].offloads &= ~single_offload;
18255 cmd_reconfig_device_queue(port_id, 1, 1);
18258 cmdline_parse_inst_t cmd_config_per_queue_rx_offload = {
18259 .f = cmd_config_per_queue_rx_offload_parsed,
18261 .help_str = "port <port_id> rxq <queue_id> rx_offload "
18262 "vlan_strip|ipv4_cksum|"
18263 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|"
18264 "macsec_strip|header_split|vlan_filter|vlan_extend|"
18265 "jumbo_frame|crc_strip|scatter|timestamp|security|keep_crc "
18268 (void *)&cmd_config_per_queue_rx_offload_result_port,
18269 (void *)&cmd_config_per_queue_rx_offload_result_port_id,
18270 (void *)&cmd_config_per_queue_rx_offload_result_rxq,
18271 (void *)&cmd_config_per_queue_rx_offload_result_queue_id,
18272 (void *)&cmd_config_per_queue_rx_offload_result_rxoffload,
18273 (void *)&cmd_config_per_queue_rx_offload_result_offload,
18274 (void *)&cmd_config_per_queue_rx_offload_result_on_off,
18279 /* Get Tx offloads capabilities */
18280 struct cmd_tx_offload_get_capa_result {
18281 cmdline_fixed_string_t show;
18282 cmdline_fixed_string_t port;
18284 cmdline_fixed_string_t tx_offload;
18285 cmdline_fixed_string_t capabilities;
18288 cmdline_parse_token_string_t cmd_tx_offload_get_capa_show =
18289 TOKEN_STRING_INITIALIZER
18290 (struct cmd_tx_offload_get_capa_result,
18292 cmdline_parse_token_string_t cmd_tx_offload_get_capa_port =
18293 TOKEN_STRING_INITIALIZER
18294 (struct cmd_tx_offload_get_capa_result,
18296 cmdline_parse_token_num_t cmd_tx_offload_get_capa_port_id =
18297 TOKEN_NUM_INITIALIZER
18298 (struct cmd_tx_offload_get_capa_result,
18300 cmdline_parse_token_string_t cmd_tx_offload_get_capa_tx_offload =
18301 TOKEN_STRING_INITIALIZER
18302 (struct cmd_tx_offload_get_capa_result,
18303 tx_offload, "tx_offload");
18304 cmdline_parse_token_string_t cmd_tx_offload_get_capa_capabilities =
18305 TOKEN_STRING_INITIALIZER
18306 (struct cmd_tx_offload_get_capa_result,
18307 capabilities, "capabilities");
18310 print_tx_offloads(uint64_t offloads)
18312 uint64_t single_offload;
18320 begin = __builtin_ctzll(offloads);
18321 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads);
18323 single_offload = 1ULL << begin;
18324 for (bit = begin; bit < end; bit++) {
18325 if (offloads & single_offload)
18327 rte_eth_dev_tx_offload_name(single_offload));
18328 single_offload <<= 1;
18333 cmd_tx_offload_get_capa_parsed(
18334 void *parsed_result,
18335 __attribute__((unused)) struct cmdline *cl,
18336 __attribute__((unused)) void *data)
18338 struct cmd_tx_offload_get_capa_result *res = parsed_result;
18339 struct rte_eth_dev_info dev_info;
18340 portid_t port_id = res->port_id;
18341 uint64_t queue_offloads;
18342 uint64_t port_offloads;
18345 ret = eth_dev_info_get_print_err(port_id, &dev_info);
18349 queue_offloads = dev_info.tx_queue_offload_capa;
18350 port_offloads = dev_info.tx_offload_capa ^ queue_offloads;
18352 printf("Tx Offloading Capabilities of port %d :\n", port_id);
18353 printf(" Per Queue :");
18354 print_tx_offloads(queue_offloads);
18357 printf(" Per Port :");
18358 print_tx_offloads(port_offloads);
18362 cmdline_parse_inst_t cmd_tx_offload_get_capa = {
18363 .f = cmd_tx_offload_get_capa_parsed,
18365 .help_str = "show port <port_id> tx_offload capabilities",
18367 (void *)&cmd_tx_offload_get_capa_show,
18368 (void *)&cmd_tx_offload_get_capa_port,
18369 (void *)&cmd_tx_offload_get_capa_port_id,
18370 (void *)&cmd_tx_offload_get_capa_tx_offload,
18371 (void *)&cmd_tx_offload_get_capa_capabilities,
18376 /* Get Tx offloads configuration */
18377 struct cmd_tx_offload_get_configuration_result {
18378 cmdline_fixed_string_t show;
18379 cmdline_fixed_string_t port;
18381 cmdline_fixed_string_t tx_offload;
18382 cmdline_fixed_string_t configuration;
18385 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_show =
18386 TOKEN_STRING_INITIALIZER
18387 (struct cmd_tx_offload_get_configuration_result,
18389 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_port =
18390 TOKEN_STRING_INITIALIZER
18391 (struct cmd_tx_offload_get_configuration_result,
18393 cmdline_parse_token_num_t cmd_tx_offload_get_configuration_port_id =
18394 TOKEN_NUM_INITIALIZER
18395 (struct cmd_tx_offload_get_configuration_result,
18397 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_tx_offload =
18398 TOKEN_STRING_INITIALIZER
18399 (struct cmd_tx_offload_get_configuration_result,
18400 tx_offload, "tx_offload");
18401 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_configuration =
18402 TOKEN_STRING_INITIALIZER
18403 (struct cmd_tx_offload_get_configuration_result,
18404 configuration, "configuration");
18407 cmd_tx_offload_get_configuration_parsed(
18408 void *parsed_result,
18409 __attribute__((unused)) struct cmdline *cl,
18410 __attribute__((unused)) void *data)
18412 struct cmd_tx_offload_get_configuration_result *res = parsed_result;
18413 struct rte_eth_dev_info dev_info;
18414 portid_t port_id = res->port_id;
18415 struct rte_port *port = &ports[port_id];
18416 uint64_t port_offloads;
18417 uint64_t queue_offloads;
18418 uint16_t nb_tx_queues;
18422 printf("Tx Offloading Configuration of port %d :\n", port_id);
18424 port_offloads = port->dev_conf.txmode.offloads;
18426 print_tx_offloads(port_offloads);
18429 ret = eth_dev_info_get_print_err(port_id, &dev_info);
18433 nb_tx_queues = dev_info.nb_tx_queues;
18434 for (q = 0; q < nb_tx_queues; q++) {
18435 queue_offloads = port->tx_conf[q].offloads;
18436 printf(" Queue[%2d] :", q);
18437 print_tx_offloads(queue_offloads);
18443 cmdline_parse_inst_t cmd_tx_offload_get_configuration = {
18444 .f = cmd_tx_offload_get_configuration_parsed,
18446 .help_str = "show port <port_id> tx_offload configuration",
18448 (void *)&cmd_tx_offload_get_configuration_show,
18449 (void *)&cmd_tx_offload_get_configuration_port,
18450 (void *)&cmd_tx_offload_get_configuration_port_id,
18451 (void *)&cmd_tx_offload_get_configuration_tx_offload,
18452 (void *)&cmd_tx_offload_get_configuration_configuration,
18457 /* Enable/Disable a per port offloading */
18458 struct cmd_config_per_port_tx_offload_result {
18459 cmdline_fixed_string_t port;
18460 cmdline_fixed_string_t config;
18462 cmdline_fixed_string_t tx_offload;
18463 cmdline_fixed_string_t offload;
18464 cmdline_fixed_string_t on_off;
18467 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_port =
18468 TOKEN_STRING_INITIALIZER
18469 (struct cmd_config_per_port_tx_offload_result,
18471 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_config =
18472 TOKEN_STRING_INITIALIZER
18473 (struct cmd_config_per_port_tx_offload_result,
18475 cmdline_parse_token_num_t cmd_config_per_port_tx_offload_result_port_id =
18476 TOKEN_NUM_INITIALIZER
18477 (struct cmd_config_per_port_tx_offload_result,
18479 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_tx_offload =
18480 TOKEN_STRING_INITIALIZER
18481 (struct cmd_config_per_port_tx_offload_result,
18482 tx_offload, "tx_offload");
18483 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_offload =
18484 TOKEN_STRING_INITIALIZER
18485 (struct cmd_config_per_port_tx_offload_result,
18486 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#"
18487 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#"
18488 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#"
18489 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#"
18490 "mt_lockfree#multi_segs#mbuf_fast_free#security#"
18492 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_on_off =
18493 TOKEN_STRING_INITIALIZER
18494 (struct cmd_config_per_port_tx_offload_result,
18498 search_tx_offload(const char *name)
18500 uint64_t single_offload;
18501 const char *single_name;
18505 single_offload = 1;
18506 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) {
18507 single_name = rte_eth_dev_tx_offload_name(single_offload);
18508 if (single_name == NULL)
18510 if (!strcasecmp(single_name, name)) {
18513 } else if (!strcasecmp(single_name, "UNKNOWN"))
18515 single_offload <<= 1;
18519 return single_offload;
18525 cmd_config_per_port_tx_offload_parsed(void *parsed_result,
18526 __attribute__((unused)) struct cmdline *cl,
18527 __attribute__((unused)) void *data)
18529 struct cmd_config_per_port_tx_offload_result *res = parsed_result;
18530 portid_t port_id = res->port_id;
18531 struct rte_eth_dev_info dev_info;
18532 struct rte_port *port = &ports[port_id];
18533 uint64_t single_offload;
18534 uint16_t nb_tx_queues;
18538 if (port->port_status != RTE_PORT_STOPPED) {
18539 printf("Error: Can't config offload when Port %d "
18540 "is not stopped\n", port_id);
18544 single_offload = search_tx_offload(res->offload);
18545 if (single_offload == 0) {
18546 printf("Unknown offload name: %s\n", res->offload);
18550 ret = eth_dev_info_get_print_err(port_id, &dev_info);
18554 nb_tx_queues = dev_info.nb_tx_queues;
18555 if (!strcmp(res->on_off, "on")) {
18556 port->dev_conf.txmode.offloads |= single_offload;
18557 for (q = 0; q < nb_tx_queues; q++)
18558 port->tx_conf[q].offloads |= single_offload;
18560 port->dev_conf.txmode.offloads &= ~single_offload;
18561 for (q = 0; q < nb_tx_queues; q++)
18562 port->tx_conf[q].offloads &= ~single_offload;
18565 cmd_reconfig_device_queue(port_id, 1, 1);
18568 cmdline_parse_inst_t cmd_config_per_port_tx_offload = {
18569 .f = cmd_config_per_port_tx_offload_parsed,
18571 .help_str = "port config <port_id> tx_offload "
18572 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|"
18573 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|"
18574 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|"
18575 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|"
18576 "mt_lockfree|multi_segs|mbuf_fast_free|security|"
18577 "match_metadata on|off",
18579 (void *)&cmd_config_per_port_tx_offload_result_port,
18580 (void *)&cmd_config_per_port_tx_offload_result_config,
18581 (void *)&cmd_config_per_port_tx_offload_result_port_id,
18582 (void *)&cmd_config_per_port_tx_offload_result_tx_offload,
18583 (void *)&cmd_config_per_port_tx_offload_result_offload,
18584 (void *)&cmd_config_per_port_tx_offload_result_on_off,
18589 /* Enable/Disable a per queue offloading */
18590 struct cmd_config_per_queue_tx_offload_result {
18591 cmdline_fixed_string_t port;
18593 cmdline_fixed_string_t txq;
18595 cmdline_fixed_string_t tx_offload;
18596 cmdline_fixed_string_t offload;
18597 cmdline_fixed_string_t on_off;
18600 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_port =
18601 TOKEN_STRING_INITIALIZER
18602 (struct cmd_config_per_queue_tx_offload_result,
18604 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_port_id =
18605 TOKEN_NUM_INITIALIZER
18606 (struct cmd_config_per_queue_tx_offload_result,
18608 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txq =
18609 TOKEN_STRING_INITIALIZER
18610 (struct cmd_config_per_queue_tx_offload_result,
18612 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_queue_id =
18613 TOKEN_NUM_INITIALIZER
18614 (struct cmd_config_per_queue_tx_offload_result,
18616 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txoffload =
18617 TOKEN_STRING_INITIALIZER
18618 (struct cmd_config_per_queue_tx_offload_result,
18619 tx_offload, "tx_offload");
18620 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_offload =
18621 TOKEN_STRING_INITIALIZER
18622 (struct cmd_config_per_queue_tx_offload_result,
18623 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#"
18624 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#"
18625 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#"
18626 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#"
18627 "mt_lockfree#multi_segs#mbuf_fast_free#security");
18628 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_on_off =
18629 TOKEN_STRING_INITIALIZER
18630 (struct cmd_config_per_queue_tx_offload_result,
18634 cmd_config_per_queue_tx_offload_parsed(void *parsed_result,
18635 __attribute__((unused)) struct cmdline *cl,
18636 __attribute__((unused)) void *data)
18638 struct cmd_config_per_queue_tx_offload_result *res = parsed_result;
18639 struct rte_eth_dev_info dev_info;
18640 portid_t port_id = res->port_id;
18641 uint16_t queue_id = res->queue_id;
18642 struct rte_port *port = &ports[port_id];
18643 uint64_t single_offload;
18646 if (port->port_status != RTE_PORT_STOPPED) {
18647 printf("Error: Can't config offload when Port %d "
18648 "is not stopped\n", port_id);
18652 ret = eth_dev_info_get_print_err(port_id, &dev_info);
18656 if (queue_id >= dev_info.nb_tx_queues) {
18657 printf("Error: input queue_id should be 0 ... "
18658 "%d\n", dev_info.nb_tx_queues - 1);
18662 single_offload = search_tx_offload(res->offload);
18663 if (single_offload == 0) {
18664 printf("Unknown offload name: %s\n", res->offload);
18668 if (!strcmp(res->on_off, "on"))
18669 port->tx_conf[queue_id].offloads |= single_offload;
18671 port->tx_conf[queue_id].offloads &= ~single_offload;
18673 cmd_reconfig_device_queue(port_id, 1, 1);
18676 cmdline_parse_inst_t cmd_config_per_queue_tx_offload = {
18677 .f = cmd_config_per_queue_tx_offload_parsed,
18679 .help_str = "port <port_id> txq <queue_id> tx_offload "
18680 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|"
18681 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|"
18682 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|"
18683 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|"
18684 "mt_lockfree|multi_segs|mbuf_fast_free|security "
18687 (void *)&cmd_config_per_queue_tx_offload_result_port,
18688 (void *)&cmd_config_per_queue_tx_offload_result_port_id,
18689 (void *)&cmd_config_per_queue_tx_offload_result_txq,
18690 (void *)&cmd_config_per_queue_tx_offload_result_queue_id,
18691 (void *)&cmd_config_per_queue_tx_offload_result_txoffload,
18692 (void *)&cmd_config_per_queue_tx_offload_result_offload,
18693 (void *)&cmd_config_per_queue_tx_offload_result_on_off,
18698 /* *** configure tx_metadata for specific port *** */
18699 struct cmd_config_tx_metadata_specific_result {
18700 cmdline_fixed_string_t port;
18701 cmdline_fixed_string_t keyword;
18703 cmdline_fixed_string_t item;
18708 cmd_config_tx_metadata_specific_parsed(void *parsed_result,
18709 __attribute__((unused)) struct cmdline *cl,
18710 __attribute__((unused)) void *data)
18712 struct cmd_config_tx_metadata_specific_result *res = parsed_result;
18714 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
18716 ports[res->port_id].tx_metadata = rte_cpu_to_be_32(res->value);
18717 /* Add/remove callback to insert valid metadata in every Tx packet. */
18718 if (ports[res->port_id].tx_metadata)
18719 add_tx_md_callback(res->port_id);
18721 remove_tx_md_callback(res->port_id);
18724 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_port =
18725 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
18727 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_keyword =
18728 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
18729 keyword, "config");
18730 cmdline_parse_token_num_t cmd_config_tx_metadata_specific_id =
18731 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
18733 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_item =
18734 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
18735 item, "tx_metadata");
18736 cmdline_parse_token_num_t cmd_config_tx_metadata_specific_value =
18737 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
18740 cmdline_parse_inst_t cmd_config_tx_metadata_specific = {
18741 .f = cmd_config_tx_metadata_specific_parsed,
18743 .help_str = "port config <port_id> tx_metadata <value>",
18745 (void *)&cmd_config_tx_metadata_specific_port,
18746 (void *)&cmd_config_tx_metadata_specific_keyword,
18747 (void *)&cmd_config_tx_metadata_specific_id,
18748 (void *)&cmd_config_tx_metadata_specific_item,
18749 (void *)&cmd_config_tx_metadata_specific_value,
18754 /* *** display tx_metadata per port configuration *** */
18755 struct cmd_show_tx_metadata_result {
18756 cmdline_fixed_string_t cmd_show;
18757 cmdline_fixed_string_t cmd_port;
18758 cmdline_fixed_string_t cmd_keyword;
18763 cmd_show_tx_metadata_parsed(void *parsed_result,
18764 __attribute__((unused)) struct cmdline *cl,
18765 __attribute__((unused)) void *data)
18767 struct cmd_show_tx_metadata_result *res = parsed_result;
18769 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
18770 printf("invalid port id %u\n", res->cmd_pid);
18773 if (!strcmp(res->cmd_keyword, "tx_metadata")) {
18774 printf("Port %u tx_metadata: %u\n", res->cmd_pid,
18775 rte_be_to_cpu_32(ports[res->cmd_pid].tx_metadata));
18779 cmdline_parse_token_string_t cmd_show_tx_metadata_show =
18780 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result,
18782 cmdline_parse_token_string_t cmd_show_tx_metadata_port =
18783 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result,
18785 cmdline_parse_token_num_t cmd_show_tx_metadata_pid =
18786 TOKEN_NUM_INITIALIZER(struct cmd_show_tx_metadata_result,
18788 cmdline_parse_token_string_t cmd_show_tx_metadata_keyword =
18789 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result,
18790 cmd_keyword, "tx_metadata");
18792 cmdline_parse_inst_t cmd_show_tx_metadata = {
18793 .f = cmd_show_tx_metadata_parsed,
18795 .help_str = "show port <port_id> tx_metadata",
18797 (void *)&cmd_show_tx_metadata_show,
18798 (void *)&cmd_show_tx_metadata_port,
18799 (void *)&cmd_show_tx_metadata_pid,
18800 (void *)&cmd_show_tx_metadata_keyword,
18805 /* show port supported ptypes */
18807 /* Common result structure for show port ptypes */
18808 struct cmd_show_port_supported_ptypes_result {
18809 cmdline_fixed_string_t show;
18810 cmdline_fixed_string_t port;
18812 cmdline_fixed_string_t ptypes;
18815 /* Common CLI fields for show port ptypes */
18816 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_show =
18817 TOKEN_STRING_INITIALIZER
18818 (struct cmd_show_port_supported_ptypes_result,
18820 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_port =
18821 TOKEN_STRING_INITIALIZER
18822 (struct cmd_show_port_supported_ptypes_result,
18824 cmdline_parse_token_num_t cmd_show_port_supported_ptypes_port_id =
18825 TOKEN_NUM_INITIALIZER
18826 (struct cmd_show_port_supported_ptypes_result,
18828 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_ptypes =
18829 TOKEN_STRING_INITIALIZER
18830 (struct cmd_show_port_supported_ptypes_result,
18834 cmd_show_port_supported_ptypes_parsed(
18835 void *parsed_result,
18836 __attribute__((unused)) struct cmdline *cl,
18837 __attribute__((unused)) void *data)
18839 #define RSVD_PTYPE_MASK 0xf0000000
18840 #define MAX_PTYPES_PER_LAYER 16
18841 #define LTYPE_NAMESIZE 32
18842 #define PTYPE_NAMESIZE 256
18843 struct cmd_show_port_supported_ptypes_result *res = parsed_result;
18844 char buf[PTYPE_NAMESIZE], ltype[LTYPE_NAMESIZE];
18845 uint32_t ptype_mask = RTE_PTYPE_L2_MASK;
18846 uint32_t ptypes[MAX_PTYPES_PER_LAYER];
18847 uint16_t port_id = res->port_id;
18850 ret = rte_eth_dev_get_supported_ptypes(port_id, ptype_mask, NULL, 0);
18854 while (ptype_mask != RSVD_PTYPE_MASK) {
18856 switch (ptype_mask) {
18857 case RTE_PTYPE_L2_MASK:
18858 strlcpy(ltype, "L2", sizeof(ltype));
18860 case RTE_PTYPE_L3_MASK:
18861 strlcpy(ltype, "L3", sizeof(ltype));
18863 case RTE_PTYPE_L4_MASK:
18864 strlcpy(ltype, "L4", sizeof(ltype));
18866 case RTE_PTYPE_TUNNEL_MASK:
18867 strlcpy(ltype, "Tunnel", sizeof(ltype));
18869 case RTE_PTYPE_INNER_L2_MASK:
18870 strlcpy(ltype, "Inner L2", sizeof(ltype));
18872 case RTE_PTYPE_INNER_L3_MASK:
18873 strlcpy(ltype, "Inner L3", sizeof(ltype));
18875 case RTE_PTYPE_INNER_L4_MASK:
18876 strlcpy(ltype, "Inner L4", sizeof(ltype));
18882 ret = rte_eth_dev_get_supported_ptypes(res->port_id,
18883 ptype_mask, ptypes,
18884 MAX_PTYPES_PER_LAYER);
18887 printf("Supported %s ptypes:\n", ltype);
18889 printf("%s ptypes unsupported\n", ltype);
18891 for (i = 0; i < ret; ++i) {
18892 rte_get_ptype_name(ptypes[i], buf, sizeof(buf));
18893 printf("%s\n", buf);
18900 cmdline_parse_inst_t cmd_show_port_supported_ptypes = {
18901 .f = cmd_show_port_supported_ptypes_parsed,
18903 .help_str = "show port <port_id> ptypes",
18905 (void *)&cmd_show_port_supported_ptypes_show,
18906 (void *)&cmd_show_port_supported_ptypes_port,
18907 (void *)&cmd_show_port_supported_ptypes_port_id,
18908 (void *)&cmd_show_port_supported_ptypes_ptypes,
18913 /* ******************************************************************************** */
18915 /* list of instructions */
18916 cmdline_parse_ctx_t main_ctx[] = {
18917 (cmdline_parse_inst_t *)&cmd_help_brief,
18918 (cmdline_parse_inst_t *)&cmd_help_long,
18919 (cmdline_parse_inst_t *)&cmd_quit,
18920 (cmdline_parse_inst_t *)&cmd_load_from_file,
18921 (cmdline_parse_inst_t *)&cmd_showport,
18922 (cmdline_parse_inst_t *)&cmd_showqueue,
18923 (cmdline_parse_inst_t *)&cmd_showportall,
18924 (cmdline_parse_inst_t *)&cmd_showdevice,
18925 (cmdline_parse_inst_t *)&cmd_showcfg,
18926 (cmdline_parse_inst_t *)&cmd_showfwdall,
18927 (cmdline_parse_inst_t *)&cmd_start,
18928 (cmdline_parse_inst_t *)&cmd_start_tx_first,
18929 (cmdline_parse_inst_t *)&cmd_start_tx_first_n,
18930 (cmdline_parse_inst_t *)&cmd_set_link_up,
18931 (cmdline_parse_inst_t *)&cmd_set_link_down,
18932 (cmdline_parse_inst_t *)&cmd_reset,
18933 (cmdline_parse_inst_t *)&cmd_set_numbers,
18934 (cmdline_parse_inst_t *)&cmd_set_log,
18935 (cmdline_parse_inst_t *)&cmd_set_txpkts,
18936 (cmdline_parse_inst_t *)&cmd_set_txsplit,
18937 (cmdline_parse_inst_t *)&cmd_set_fwd_list,
18938 (cmdline_parse_inst_t *)&cmd_set_fwd_mask,
18939 (cmdline_parse_inst_t *)&cmd_set_fwd_mode,
18940 (cmdline_parse_inst_t *)&cmd_set_fwd_retry_mode,
18941 (cmdline_parse_inst_t *)&cmd_set_burst_tx_retry,
18942 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_one,
18943 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_all,
18944 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_one,
18945 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_all,
18946 (cmdline_parse_inst_t *)&cmd_set_flush_rx,
18947 (cmdline_parse_inst_t *)&cmd_set_link_check,
18948 (cmdline_parse_inst_t *)&cmd_set_bypass_mode,
18949 (cmdline_parse_inst_t *)&cmd_set_bypass_event,
18950 (cmdline_parse_inst_t *)&cmd_set_bypass_timeout,
18951 (cmdline_parse_inst_t *)&cmd_show_bypass_config,
18952 #ifdef RTE_LIBRTE_PMD_BOND
18953 (cmdline_parse_inst_t *) &cmd_set_bonding_mode,
18954 (cmdline_parse_inst_t *) &cmd_show_bonding_config,
18955 (cmdline_parse_inst_t *) &cmd_set_bonding_primary,
18956 (cmdline_parse_inst_t *) &cmd_add_bonding_slave,
18957 (cmdline_parse_inst_t *) &cmd_remove_bonding_slave,
18958 (cmdline_parse_inst_t *) &cmd_create_bonded_device,
18959 (cmdline_parse_inst_t *) &cmd_set_bond_mac_addr,
18960 (cmdline_parse_inst_t *) &cmd_set_balance_xmit_policy,
18961 (cmdline_parse_inst_t *) &cmd_set_bond_mon_period,
18962 (cmdline_parse_inst_t *) &cmd_set_lacp_dedicated_queues,
18963 (cmdline_parse_inst_t *) &cmd_set_bonding_agg_mode_policy,
18965 (cmdline_parse_inst_t *)&cmd_vlan_offload,
18966 (cmdline_parse_inst_t *)&cmd_vlan_tpid,
18967 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter_all,
18968 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter,
18969 (cmdline_parse_inst_t *)&cmd_tx_vlan_set,
18970 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_qinq,
18971 (cmdline_parse_inst_t *)&cmd_tx_vlan_reset,
18972 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_pvid,
18973 (cmdline_parse_inst_t *)&cmd_csum_set,
18974 (cmdline_parse_inst_t *)&cmd_csum_show,
18975 (cmdline_parse_inst_t *)&cmd_csum_tunnel,
18976 (cmdline_parse_inst_t *)&cmd_tso_set,
18977 (cmdline_parse_inst_t *)&cmd_tso_show,
18978 (cmdline_parse_inst_t *)&cmd_tunnel_tso_set,
18979 (cmdline_parse_inst_t *)&cmd_tunnel_tso_show,
18980 (cmdline_parse_inst_t *)&cmd_gro_enable,
18981 (cmdline_parse_inst_t *)&cmd_gro_flush,
18982 (cmdline_parse_inst_t *)&cmd_gro_show,
18983 (cmdline_parse_inst_t *)&cmd_gso_enable,
18984 (cmdline_parse_inst_t *)&cmd_gso_size,
18985 (cmdline_parse_inst_t *)&cmd_gso_show,
18986 (cmdline_parse_inst_t *)&cmd_link_flow_control_set,
18987 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_rx,
18988 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_tx,
18989 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_hw,
18990 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_lw,
18991 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_pt,
18992 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_xon,
18993 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_macfwd,
18994 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_autoneg,
18995 (cmdline_parse_inst_t *)&cmd_priority_flow_control_set,
18996 (cmdline_parse_inst_t *)&cmd_config_dcb,
18997 (cmdline_parse_inst_t *)&cmd_read_reg,
18998 (cmdline_parse_inst_t *)&cmd_read_reg_bit_field,
18999 (cmdline_parse_inst_t *)&cmd_read_reg_bit,
19000 (cmdline_parse_inst_t *)&cmd_write_reg,
19001 (cmdline_parse_inst_t *)&cmd_write_reg_bit_field,
19002 (cmdline_parse_inst_t *)&cmd_write_reg_bit,
19003 (cmdline_parse_inst_t *)&cmd_read_rxd_txd,
19004 (cmdline_parse_inst_t *)&cmd_stop,
19005 (cmdline_parse_inst_t *)&cmd_mac_addr,
19006 (cmdline_parse_inst_t *)&cmd_set_fwd_eth_peer,
19007 (cmdline_parse_inst_t *)&cmd_set_qmap,
19008 (cmdline_parse_inst_t *)&cmd_set_xstats_hide_zero,
19009 (cmdline_parse_inst_t *)&cmd_operate_port,
19010 (cmdline_parse_inst_t *)&cmd_operate_specific_port,
19011 (cmdline_parse_inst_t *)&cmd_operate_attach_port,
19012 (cmdline_parse_inst_t *)&cmd_operate_detach_port,
19013 (cmdline_parse_inst_t *)&cmd_operate_detach_device,
19014 (cmdline_parse_inst_t *)&cmd_set_port_setup_on,
19015 (cmdline_parse_inst_t *)&cmd_config_speed_all,
19016 (cmdline_parse_inst_t *)&cmd_config_speed_specific,
19017 (cmdline_parse_inst_t *)&cmd_config_loopback_all,
19018 (cmdline_parse_inst_t *)&cmd_config_loopback_specific,
19019 (cmdline_parse_inst_t *)&cmd_config_rx_tx,
19020 (cmdline_parse_inst_t *)&cmd_config_mtu,
19021 (cmdline_parse_inst_t *)&cmd_config_max_pkt_len,
19022 (cmdline_parse_inst_t *)&cmd_config_rx_mode_flag,
19023 (cmdline_parse_inst_t *)&cmd_config_rss,
19024 (cmdline_parse_inst_t *)&cmd_config_rxtx_ring_size,
19025 (cmdline_parse_inst_t *)&cmd_config_rxtx_queue,
19026 (cmdline_parse_inst_t *)&cmd_config_deferred_start_rxtx_queue,
19027 (cmdline_parse_inst_t *)&cmd_setup_rxtx_queue,
19028 (cmdline_parse_inst_t *)&cmd_config_rss_reta,
19029 (cmdline_parse_inst_t *)&cmd_showport_reta,
19030 (cmdline_parse_inst_t *)&cmd_config_burst,
19031 (cmdline_parse_inst_t *)&cmd_config_thresh,
19032 (cmdline_parse_inst_t *)&cmd_config_threshold,
19033 (cmdline_parse_inst_t *)&cmd_set_uc_hash_filter,
19034 (cmdline_parse_inst_t *)&cmd_set_uc_all_hash_filter,
19035 (cmdline_parse_inst_t *)&cmd_vf_mac_addr_filter,
19036 (cmdline_parse_inst_t *)&cmd_set_vf_macvlan_filter,
19037 (cmdline_parse_inst_t *)&cmd_queue_rate_limit,
19038 (cmdline_parse_inst_t *)&cmd_tunnel_filter,
19039 (cmdline_parse_inst_t *)&cmd_tunnel_udp_config,
19040 (cmdline_parse_inst_t *)&cmd_global_config,
19041 (cmdline_parse_inst_t *)&cmd_set_mirror_mask,
19042 (cmdline_parse_inst_t *)&cmd_set_mirror_link,
19043 (cmdline_parse_inst_t *)&cmd_reset_mirror_rule,
19044 (cmdline_parse_inst_t *)&cmd_showport_rss_hash,
19045 (cmdline_parse_inst_t *)&cmd_showport_rss_hash_key,
19046 (cmdline_parse_inst_t *)&cmd_config_rss_hash_key,
19047 (cmdline_parse_inst_t *)&cmd_dump,
19048 (cmdline_parse_inst_t *)&cmd_dump_one,
19049 (cmdline_parse_inst_t *)&cmd_ethertype_filter,
19050 (cmdline_parse_inst_t *)&cmd_syn_filter,
19051 (cmdline_parse_inst_t *)&cmd_2tuple_filter,
19052 (cmdline_parse_inst_t *)&cmd_5tuple_filter,
19053 (cmdline_parse_inst_t *)&cmd_flex_filter,
19054 (cmdline_parse_inst_t *)&cmd_add_del_ip_flow_director,
19055 (cmdline_parse_inst_t *)&cmd_add_del_udp_flow_director,
19056 (cmdline_parse_inst_t *)&cmd_add_del_sctp_flow_director,
19057 (cmdline_parse_inst_t *)&cmd_add_del_l2_flow_director,
19058 (cmdline_parse_inst_t *)&cmd_add_del_mac_vlan_flow_director,
19059 (cmdline_parse_inst_t *)&cmd_add_del_tunnel_flow_director,
19060 (cmdline_parse_inst_t *)&cmd_add_del_raw_flow_director,
19061 (cmdline_parse_inst_t *)&cmd_flush_flow_director,
19062 (cmdline_parse_inst_t *)&cmd_set_flow_director_ip_mask,
19063 (cmdline_parse_inst_t *)&cmd_set_flow_director_mac_vlan_mask,
19064 (cmdline_parse_inst_t *)&cmd_set_flow_director_tunnel_mask,
19065 (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_mask,
19066 (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_payload,
19067 (cmdline_parse_inst_t *)&cmd_get_sym_hash_ena_per_port,
19068 (cmdline_parse_inst_t *)&cmd_set_sym_hash_ena_per_port,
19069 (cmdline_parse_inst_t *)&cmd_get_hash_global_config,
19070 (cmdline_parse_inst_t *)&cmd_set_hash_global_config,
19071 (cmdline_parse_inst_t *)&cmd_set_hash_input_set,
19072 (cmdline_parse_inst_t *)&cmd_set_fdir_input_set,
19073 (cmdline_parse_inst_t *)&cmd_flow,
19074 (cmdline_parse_inst_t *)&cmd_show_port_meter_cap,
19075 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_srtcm,
19076 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_trtcm,
19077 (cmdline_parse_inst_t *)&cmd_del_port_meter_profile,
19078 (cmdline_parse_inst_t *)&cmd_create_port_meter,
19079 (cmdline_parse_inst_t *)&cmd_enable_port_meter,
19080 (cmdline_parse_inst_t *)&cmd_disable_port_meter,
19081 (cmdline_parse_inst_t *)&cmd_del_port_meter,
19082 (cmdline_parse_inst_t *)&cmd_set_port_meter_profile,
19083 (cmdline_parse_inst_t *)&cmd_set_port_meter_dscp_table,
19084 (cmdline_parse_inst_t *)&cmd_set_port_meter_policer_action,
19085 (cmdline_parse_inst_t *)&cmd_set_port_meter_stats_mask,
19086 (cmdline_parse_inst_t *)&cmd_show_port_meter_stats,
19087 (cmdline_parse_inst_t *)&cmd_mcast_addr,
19088 (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_eth_type_all,
19089 (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_eth_type_specific,
19090 (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_en_dis_all,
19091 (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_en_dis_specific,
19092 (cmdline_parse_inst_t *)&cmd_config_e_tag_insertion_en,
19093 (cmdline_parse_inst_t *)&cmd_config_e_tag_insertion_dis,
19094 (cmdline_parse_inst_t *)&cmd_config_e_tag_stripping_en_dis,
19095 (cmdline_parse_inst_t *)&cmd_config_e_tag_forwarding_en_dis,
19096 (cmdline_parse_inst_t *)&cmd_config_e_tag_filter_add,
19097 (cmdline_parse_inst_t *)&cmd_config_e_tag_filter_del,
19098 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_anti_spoof,
19099 (cmdline_parse_inst_t *)&cmd_set_vf_mac_anti_spoof,
19100 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_stripq,
19101 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_insert,
19102 (cmdline_parse_inst_t *)&cmd_set_tx_loopback,
19103 (cmdline_parse_inst_t *)&cmd_set_all_queues_drop_en,
19104 (cmdline_parse_inst_t *)&cmd_set_vf_split_drop_en,
19105 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_on,
19106 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_off,
19107 (cmdline_parse_inst_t *)&cmd_set_macsec_sc,
19108 (cmdline_parse_inst_t *)&cmd_set_macsec_sa,
19109 (cmdline_parse_inst_t *)&cmd_set_vf_traffic,
19110 (cmdline_parse_inst_t *)&cmd_set_vf_rxmode,
19111 (cmdline_parse_inst_t *)&cmd_vf_rate_limit,
19112 (cmdline_parse_inst_t *)&cmd_vf_rxvlan_filter,
19113 (cmdline_parse_inst_t *)&cmd_set_vf_mac_addr,
19114 (cmdline_parse_inst_t *)&cmd_set_vf_promisc,
19115 (cmdline_parse_inst_t *)&cmd_set_vf_allmulti,
19116 (cmdline_parse_inst_t *)&cmd_set_vf_broadcast,
19117 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_tag,
19118 (cmdline_parse_inst_t *)&cmd_vf_max_bw,
19119 (cmdline_parse_inst_t *)&cmd_vf_tc_min_bw,
19120 (cmdline_parse_inst_t *)&cmd_vf_tc_max_bw,
19121 (cmdline_parse_inst_t *)&cmd_strict_link_prio,
19122 (cmdline_parse_inst_t *)&cmd_tc_min_bw,
19123 #if defined RTE_LIBRTE_PMD_SOFTNIC && defined RTE_LIBRTE_SCHED
19124 (cmdline_parse_inst_t *)&cmd_set_port_tm_hierarchy_default,
19126 (cmdline_parse_inst_t *)&cmd_set_vxlan,
19127 (cmdline_parse_inst_t *)&cmd_set_vxlan_tos_ttl,
19128 (cmdline_parse_inst_t *)&cmd_set_vxlan_with_vlan,
19129 (cmdline_parse_inst_t *)&cmd_set_nvgre,
19130 (cmdline_parse_inst_t *)&cmd_set_nvgre_with_vlan,
19131 (cmdline_parse_inst_t *)&cmd_set_l2_encap,
19132 (cmdline_parse_inst_t *)&cmd_set_l2_encap_with_vlan,
19133 (cmdline_parse_inst_t *)&cmd_set_l2_decap,
19134 (cmdline_parse_inst_t *)&cmd_set_l2_decap_with_vlan,
19135 (cmdline_parse_inst_t *)&cmd_set_mplsogre_encap,
19136 (cmdline_parse_inst_t *)&cmd_set_mplsogre_encap_with_vlan,
19137 (cmdline_parse_inst_t *)&cmd_set_mplsogre_decap,
19138 (cmdline_parse_inst_t *)&cmd_set_mplsogre_decap_with_vlan,
19139 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_encap,
19140 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_encap_with_vlan,
19141 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_decap,
19142 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_decap_with_vlan,
19143 (cmdline_parse_inst_t *)&cmd_ddp_add,
19144 (cmdline_parse_inst_t *)&cmd_ddp_del,
19145 (cmdline_parse_inst_t *)&cmd_ddp_get_list,
19146 (cmdline_parse_inst_t *)&cmd_ddp_get_info,
19147 (cmdline_parse_inst_t *)&cmd_cfg_input_set,
19148 (cmdline_parse_inst_t *)&cmd_clear_input_set,
19149 (cmdline_parse_inst_t *)&cmd_show_vf_stats,
19150 (cmdline_parse_inst_t *)&cmd_clear_vf_stats,
19151 (cmdline_parse_inst_t *)&cmd_show_port_supported_ptypes,
19152 (cmdline_parse_inst_t *)&cmd_ptype_mapping_get,
19153 (cmdline_parse_inst_t *)&cmd_ptype_mapping_replace,
19154 (cmdline_parse_inst_t *)&cmd_ptype_mapping_reset,
19155 (cmdline_parse_inst_t *)&cmd_ptype_mapping_update,
19157 (cmdline_parse_inst_t *)&cmd_pctype_mapping_get,
19158 (cmdline_parse_inst_t *)&cmd_pctype_mapping_reset,
19159 (cmdline_parse_inst_t *)&cmd_pctype_mapping_update,
19160 (cmdline_parse_inst_t *)&cmd_queue_region,
19161 (cmdline_parse_inst_t *)&cmd_region_flowtype,
19162 (cmdline_parse_inst_t *)&cmd_user_priority_region,
19163 (cmdline_parse_inst_t *)&cmd_flush_queue_region,
19164 (cmdline_parse_inst_t *)&cmd_show_queue_region_info_all,
19165 (cmdline_parse_inst_t *)&cmd_show_port_tm_cap,
19166 (cmdline_parse_inst_t *)&cmd_show_port_tm_level_cap,
19167 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_cap,
19168 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_type,
19169 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_stats,
19170 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shaper_profile,
19171 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shaper_profile,
19172 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shared_shaper,
19173 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shared_shaper,
19174 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_wred_profile,
19175 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_wred_profile,
19176 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_shaper_profile,
19177 (cmdline_parse_inst_t *)&cmd_add_port_tm_nonleaf_node,
19178 (cmdline_parse_inst_t *)&cmd_add_port_tm_leaf_node,
19179 (cmdline_parse_inst_t *)&cmd_del_port_tm_node,
19180 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_parent,
19181 (cmdline_parse_inst_t *)&cmd_suspend_port_tm_node,
19182 (cmdline_parse_inst_t *)&cmd_resume_port_tm_node,
19183 (cmdline_parse_inst_t *)&cmd_port_tm_hierarchy_commit,
19184 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_ecn,
19185 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_dscp,
19186 (cmdline_parse_inst_t *)&cmd_port_tm_mark_vlan_dei,
19187 (cmdline_parse_inst_t *)&cmd_cfg_tunnel_udp_port,
19188 (cmdline_parse_inst_t *)&cmd_rx_offload_get_capa,
19189 (cmdline_parse_inst_t *)&cmd_rx_offload_get_configuration,
19190 (cmdline_parse_inst_t *)&cmd_config_per_port_rx_offload,
19191 (cmdline_parse_inst_t *)&cmd_config_per_queue_rx_offload,
19192 (cmdline_parse_inst_t *)&cmd_tx_offload_get_capa,
19193 (cmdline_parse_inst_t *)&cmd_tx_offload_get_configuration,
19194 (cmdline_parse_inst_t *)&cmd_config_per_port_tx_offload,
19195 (cmdline_parse_inst_t *)&cmd_config_per_queue_tx_offload,
19196 #ifdef RTE_LIBRTE_BPF
19197 (cmdline_parse_inst_t *)&cmd_operate_bpf_ld_parse,
19198 (cmdline_parse_inst_t *)&cmd_operate_bpf_unld_parse,
19200 (cmdline_parse_inst_t *)&cmd_config_tx_metadata_specific,
19201 (cmdline_parse_inst_t *)&cmd_show_tx_metadata,
19202 (cmdline_parse_inst_t *)&cmd_set_raw,
19206 /* read cmdline commands from file */
19208 cmdline_read_from_file(const char *filename)
19210 struct cmdline *cl;
19212 cl = cmdline_file_new(main_ctx, "testpmd> ", filename);
19214 printf("Failed to create file based cmdline context: %s\n",
19219 cmdline_interact(cl);
19224 printf("Read CLI commands from %s\n", filename);
19227 /* prompt function, called from main on MASTER lcore */
19231 /* initialize non-constant commands */
19232 cmd_set_fwd_mode_init();
19233 cmd_set_fwd_retry_mode_init();
19235 testpmd_cl = cmdline_stdin_new(main_ctx, "testpmd> ");
19236 if (testpmd_cl == NULL)
19238 cmdline_interact(testpmd_cl);
19239 cmdline_stdin_exit(testpmd_cl);
19245 if (testpmd_cl != NULL)
19246 cmdline_quit(testpmd_cl);
19250 cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue)
19252 if (id == (portid_t)RTE_PORT_ALL) {
19255 RTE_ETH_FOREACH_DEV(pid) {
19256 /* check if need_reconfig has been set to 1 */
19257 if (ports[pid].need_reconfig == 0)
19258 ports[pid].need_reconfig = dev;
19259 /* check if need_reconfig_queues has been set to 1 */
19260 if (ports[pid].need_reconfig_queues == 0)
19261 ports[pid].need_reconfig_queues = queue;
19263 } else if (!port_id_is_invalid(id, DISABLED_WARN)) {
19264 /* check if need_reconfig has been set to 1 */
19265 if (ports[id].need_reconfig == 0)
19266 ports[id].need_reconfig = dev;
19267 /* check if need_reconfig_queues has been set to 1 */
19268 if (ports[id].need_reconfig_queues == 0)
19269 ports[id].need_reconfig_queues = queue;