1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation.
3 * Copyright(c) 2014 6WIND S.A.
14 #include <sys/socket.h>
15 #include <netinet/in.h>
17 #include <sys/queue.h>
19 #include <rte_common.h>
20 #include <rte_byteorder.h>
22 #include <rte_debug.h>
23 #include <rte_cycles.h>
24 #include <rte_memory.h>
25 #include <rte_memzone.h>
26 #include <rte_malloc.h>
27 #include <rte_launch.h>
29 #include <rte_per_lcore.h>
30 #include <rte_lcore.h>
31 #include <rte_atomic.h>
32 #include <rte_branch_prediction.h>
34 #include <rte_mempool.h>
35 #include <rte_interrupts.h>
37 #include <rte_ether.h>
38 #include <rte_ethdev.h>
39 #include <rte_string_fns.h>
40 #include <rte_devargs.h>
43 #include <rte_mbuf_dyn.h>
45 #include <cmdline_rdline.h>
46 #include <cmdline_parse.h>
47 #include <cmdline_parse_num.h>
48 #include <cmdline_parse_string.h>
49 #include <cmdline_parse_ipaddr.h>
50 #include <cmdline_parse_etheraddr.h>
51 #include <cmdline_socket.h>
54 #include <rte_eth_bond.h>
55 #include <rte_eth_bond_8023ad.h>
57 #if defined RTE_BUS_DPAA && defined RTE_NET_DPAA
58 #include <rte_pmd_dpaa.h>
61 #include <rte_pmd_ixgbe.h>
64 #include <rte_pmd_i40e.h>
67 #include <rte_pmd_bnxt.h>
70 #include "cmdline_mtr.h"
71 #include "cmdline_tm.h"
74 static struct cmdline *testpmd_cl;
76 static void cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue);
78 /* *** Help command with introduction. *** */
79 struct cmd_help_brief_result {
80 cmdline_fixed_string_t help;
83 static void cmd_help_brief_parsed(__rte_unused void *parsed_result,
85 __rte_unused void *data)
90 "Help is available for the following sections:\n\n"
91 " help control : Start and stop forwarding.\n"
92 " help display : Displaying port, stats and config "
94 " help config : Configuration information.\n"
95 " help ports : Configuring ports.\n"
96 " help registers : Reading and setting port registers.\n"
97 " help filters : Filters configuration help.\n"
98 " help traffic_management : Traffic Management commands.\n"
99 " help devices : Device related cmds.\n"
100 " help all : All of the above sections.\n\n"
105 cmdline_parse_token_string_t cmd_help_brief_help =
106 TOKEN_STRING_INITIALIZER(struct cmd_help_brief_result, help, "help");
108 cmdline_parse_inst_t cmd_help_brief = {
109 .f = cmd_help_brief_parsed,
111 .help_str = "help: Show help",
113 (void *)&cmd_help_brief_help,
118 /* *** Help command with help sections. *** */
119 struct cmd_help_long_result {
120 cmdline_fixed_string_t help;
121 cmdline_fixed_string_t section;
124 static void cmd_help_long_parsed(void *parsed_result,
126 __rte_unused void *data)
129 struct cmd_help_long_result *res = parsed_result;
131 if (!strcmp(res->section, "all"))
134 if (show_all || !strcmp(res->section, "control")) {
139 "Control forwarding:\n"
140 "-------------------\n\n"
143 " Start packet forwarding with current configuration.\n\n"
146 " Start packet forwarding with current config"
147 " after sending one burst of packets.\n\n"
150 " Stop packet forwarding, and display accumulated"
154 " Quit to prompt.\n\n"
158 if (show_all || !strcmp(res->section, "display")) {
166 "show port (info|stats|summary|xstats|fdir|dcb_tc) (port_id|all)\n"
167 " Display information for port_id, or all.\n\n"
169 "show port port_id (module_eeprom|eeprom)\n"
170 " Display the module EEPROM or EEPROM information for port_id.\n\n"
172 "show port X rss reta (size) (mask0,mask1,...)\n"
173 " Display the rss redirection table entry indicated"
174 " by masks on port X. size is used to indicate the"
175 " hardware supported reta size\n\n"
177 "show port (port_id) rss-hash [key]\n"
178 " Display the RSS hash functions and RSS hash key of port\n\n"
180 "clear port (info|stats|xstats|fdir) (port_id|all)\n"
181 " Clear information for port_id, or all.\n\n"
183 "show (rxq|txq) info (port_id) (queue_id)\n"
184 " Display information for configured RX/TX queue.\n\n"
186 "show config (rxtx|cores|fwd|rxoffs|rxpkts|txpkts)\n"
187 " Display the given configuration.\n\n"
189 "read rxd (port_id) (queue_id) (rxd_id)\n"
190 " Display an RX descriptor of a port RX queue.\n\n"
192 "read txd (port_id) (queue_id) (txd_id)\n"
193 " Display a TX descriptor of a port TX queue.\n\n"
195 "ddp get list (port_id)\n"
196 " Get ddp profile info list\n\n"
198 "ddp get info (profile_path)\n"
199 " Get ddp profile information.\n\n"
201 "show vf stats (port_id) (vf_id)\n"
202 " Display a VF's statistics.\n\n"
204 "clear vf stats (port_id) (vf_id)\n"
205 " Reset a VF's statistics.\n\n"
207 "show port (port_id) pctype mapping\n"
208 " Get flow ptype to pctype mapping on a port\n\n"
210 "show port meter stats (port_id) (meter_id) (clear)\n"
211 " Get meter stats on a port\n\n"
213 "show fwd stats all\n"
214 " Display statistics for all fwd engines.\n\n"
216 "clear fwd stats all\n"
217 " Clear statistics for all fwd engines.\n\n"
219 "show port (port_id) rx_offload capabilities\n"
220 " List all per queue and per port Rx offloading"
221 " capabilities of a port\n\n"
223 "show port (port_id) rx_offload configuration\n"
224 " List port level and all queue level"
225 " Rx offloading configuration\n\n"
227 "show port (port_id) tx_offload capabilities\n"
228 " List all per queue and per port"
229 " Tx offloading capabilities of a port\n\n"
231 "show port (port_id) tx_offload configuration\n"
232 " List port level and all queue level"
233 " Tx offloading configuration\n\n"
235 "show port (port_id) tx_metadata\n"
236 " Show Tx metadata value set"
237 " for a specific port\n\n"
239 "show port (port_id) ptypes\n"
240 " Show port supported ptypes"
241 " for a specific port\n\n"
243 "show device info (<identifier>|all)"
244 " Show general information about devices probed.\n\n"
246 "show port (port_id) rxq|txq (queue_id) desc (desc_id) status"
247 " Show status of rx|tx descriptor.\n\n"
249 "show port (port_id) rxq (queue_id) desc used count\n"
250 " Show current number of filled receive"
251 " packet descriptors.\n\n"
253 "show port (port_id) macs|mcast_macs"
254 " Display list of mac addresses added to port.\n\n"
256 "show port (port_id) fec capabilities"
257 " Show fec capabilities of a port.\n\n"
259 "show port (port_id) fec_mode"
260 " Show fec mode of a port.\n\n"
264 if (show_all || !strcmp(res->section, "config")) {
270 "Configuration changes only become active when"
271 " forwarding is started/restarted.\n\n"
274 " Reset forwarding to the default configuration.\n\n"
276 "set verbose (level)\n"
277 " Set the debug verbosity level X.\n\n"
279 "set log global|(type) (level)\n"
280 " Set the log level.\n\n"
283 " Set number of ports.\n\n"
286 " Set number of cores.\n\n"
288 "set coremask (mask)\n"
289 " Set the forwarding cores hexadecimal mask.\n\n"
291 "set portmask (mask)\n"
292 " Set the forwarding ports hexadecimal mask.\n\n"
295 " Set number of packets per burst.\n\n"
297 "set burst tx delay (microseconds) retry (num)\n"
298 " Set the transmit delay time and number of retries,"
299 " effective when retry is enabled.\n\n"
301 "set rxoffs (x[,y]*)\n"
302 " Set the offset of each packet segment on"
303 " receiving if split feature is engaged."
304 " Affects only the queues configured with split"
307 "set rxpkts (x[,y]*)\n"
308 " Set the length of each segment to scatter"
309 " packets on receiving if split feature is engaged."
310 " Affects only the queues configured with split"
313 "set txpkts (x[,y]*)\n"
314 " Set the length of each segment of TXONLY"
315 " and optionally CSUM packets.\n\n"
317 "set txsplit (off|on|rand)\n"
318 " Set the split policy for the TX packets."
319 " Right now only applicable for CSUM and TXONLY"
322 "set txtimes (x, y)\n"
323 " Set the scheduling on timestamps"
324 " timings for the TXONLY mode\n\n"
326 "set corelist (x[,y]*)\n"
327 " Set the list of forwarding cores.\n\n"
329 "set portlist (x[,y]*)\n"
330 " Set the list of forwarding ports.\n\n"
332 "set port setup on (iterator|event)\n"
333 " Select how attached port is retrieved for setup.\n\n"
335 "set tx loopback (port_id) (on|off)\n"
336 " Enable or disable tx loopback.\n\n"
338 "set all queues drop (port_id) (on|off)\n"
339 " Set drop enable bit for all queues.\n\n"
341 "set vf split drop (port_id) (vf_id) (on|off)\n"
342 " Set split drop enable bit for a VF from the PF.\n\n"
344 "set vf mac antispoof (port_id) (vf_id) (on|off).\n"
345 " Set MAC antispoof for a VF from the PF.\n\n"
347 "set macsec offload (port_id) on encrypt (on|off) replay-protect (on|off)\n"
348 " Enable MACsec offload.\n\n"
350 "set macsec offload (port_id) off\n"
351 " Disable MACsec offload.\n\n"
353 "set macsec sc (tx|rx) (port_id) (mac) (pi)\n"
354 " Configure MACsec secure connection (SC).\n\n"
356 "set macsec sa (tx|rx) (port_id) (idx) (an) (pn) (key)\n"
357 " Configure MACsec secure association (SA).\n\n"
359 "set vf broadcast (port_id) (vf_id) (on|off)\n"
360 " Set VF broadcast for a VF from the PF.\n\n"
362 "vlan set stripq (on|off) (port_id,queue_id)\n"
363 " Set the VLAN strip for a queue on a port.\n\n"
365 "set vf vlan stripq (port_id) (vf_id) (on|off)\n"
366 " Set the VLAN strip for all queues in a pool for a VF from the PF.\n\n"
368 "set vf vlan insert (port_id) (vf_id) (vlan_id)\n"
369 " Set VLAN insert for a VF from the PF.\n\n"
371 "set vf vlan antispoof (port_id) (vf_id) (on|off)\n"
372 " Set VLAN antispoof for a VF from the PF.\n\n"
374 "set vf vlan tag (port_id) (vf_id) (on|off)\n"
375 " Set VLAN tag for a VF from the PF.\n\n"
377 "set vf tx max-bandwidth (port_id) (vf_id) (bandwidth)\n"
378 " Set a VF's max bandwidth(Mbps).\n\n"
380 "set vf tc tx min-bandwidth (port_id) (vf_id) (bw1, bw2, ...)\n"
381 " Set all TCs' min bandwidth(%%) on a VF.\n\n"
383 "set vf tc tx max-bandwidth (port_id) (vf_id) (tc_no) (bandwidth)\n"
384 " Set a TC's max bandwidth(Mbps) on a VF.\n\n"
386 "set tx strict-link-priority (port_id) (tc_bitmap)\n"
387 " Set some TCs' strict link priority mode on a physical port.\n\n"
389 "set tc tx min-bandwidth (port_id) (bw1, bw2, ...)\n"
390 " Set all TCs' min bandwidth(%%) for all PF and VFs.\n\n"
392 "vlan set (strip|filter|qinq_strip|extend) (on|off) (port_id)\n"
393 " Set the VLAN strip or filter or qinq strip or extend\n\n"
395 "vlan set (inner|outer) tpid (value) (port_id)\n"
396 " Set the VLAN TPID for Packet Filtering on"
399 "rx_vlan add (vlan_id|all) (port_id)\n"
400 " Add a vlan_id, or all identifiers, to the set"
401 " of VLAN identifiers filtered by port_id.\n\n"
403 "rx_vlan rm (vlan_id|all) (port_id)\n"
404 " Remove a vlan_id, or all identifiers, from the set"
405 " of VLAN identifiers filtered by port_id.\n\n"
407 "rx_vlan add (vlan_id) port (port_id) vf (vf_mask)\n"
408 " Add a vlan_id, to the set of VLAN identifiers"
409 "filtered for VF(s) from port_id.\n\n"
411 "rx_vlan rm (vlan_id) port (port_id) vf (vf_mask)\n"
412 " Remove a vlan_id, to the set of VLAN identifiers"
413 "filtered for VF(s) from port_id.\n\n"
415 "rx_vxlan_port add (udp_port) (port_id)\n"
416 " Add an UDP port for VXLAN packet filter on a port\n\n"
418 "rx_vxlan_port rm (udp_port) (port_id)\n"
419 " Remove an UDP port for VXLAN packet filter on a port\n\n"
421 "tx_vlan set (port_id) vlan_id[, vlan_id_outer]\n"
422 " Set hardware insertion of VLAN IDs (single or double VLAN "
423 "depends on the number of VLAN IDs) in packets sent on a port.\n\n"
425 "tx_vlan set pvid port_id vlan_id (on|off)\n"
426 " Set port based TX VLAN insertion.\n\n"
428 "tx_vlan reset (port_id)\n"
429 " Disable hardware insertion of a VLAN header in"
430 " packets sent on a port.\n\n"
432 "csum set (ip|udp|tcp|sctp|outer-ip|outer-udp) (hw|sw) (port_id)\n"
433 " Select hardware or software calculation of the"
434 " checksum when transmitting a packet using the"
435 " csum forward engine.\n"
436 " ip|udp|tcp|sctp always concern the inner layer.\n"
437 " outer-ip concerns the outer IP layer in"
438 " outer-udp concerns the outer UDP layer in"
439 " case the packet is recognized as a tunnel packet by"
440 " the forward engine (vxlan, gre and ipip are supported)\n"
441 " Please check the NIC datasheet for HW limits.\n\n"
443 "csum parse-tunnel (on|off) (tx_port_id)\n"
444 " If disabled, treat tunnel packets as non-tunneled"
445 " packets (treat inner headers as payload). The port\n"
446 " argument is the port used for TX in csum forward"
449 "csum show (port_id)\n"
450 " Display tx checksum offload configuration\n\n"
452 "tso set (segsize) (portid)\n"
453 " Enable TCP Segmentation Offload in csum forward"
455 " Please check the NIC datasheet for HW limits.\n\n"
458 " Display the status of TCP Segmentation Offload.\n\n"
460 "set port (port_id) gro on|off\n"
461 " Enable or disable Generic Receive Offload in"
462 " csum forwarding engine.\n\n"
464 "show port (port_id) gro\n"
465 " Display GRO configuration.\n\n"
467 "set gro flush (cycles)\n"
468 " Set the cycle to flush GROed packets from"
469 " reassembly tables.\n\n"
471 "set port (port_id) gso (on|off)"
472 " Enable or disable Generic Segmentation Offload in"
473 " csum forwarding engine.\n\n"
475 "set gso segsz (length)\n"
476 " Set max packet length for output GSO segments,"
477 " including packet header and payload.\n\n"
479 "show port (port_id) gso\n"
480 " Show GSO configuration.\n\n"
483 " Set packet forwarding mode.\n\n"
485 "mac_addr add (port_id) (XX:XX:XX:XX:XX:XX)\n"
486 " Add a MAC address on port_id.\n\n"
488 "mac_addr remove (port_id) (XX:XX:XX:XX:XX:XX)\n"
489 " Remove a MAC address from port_id.\n\n"
491 "mac_addr set (port_id) (XX:XX:XX:XX:XX:XX)\n"
492 " Set the default MAC address for port_id.\n\n"
494 "mac_addr add port (port_id) vf (vf_id) (mac_address)\n"
495 " Add a MAC address for a VF on the port.\n\n"
497 "set vf mac addr (port_id) (vf_id) (XX:XX:XX:XX:XX:XX)\n"
498 " Set the MAC address for a VF from the PF.\n\n"
500 "set eth-peer (port_id) (peer_addr)\n"
501 " set the peer address for certain port.\n\n"
503 "set port (port_id) uta (mac_address|all) (on|off)\n"
504 " Add/Remove a or all unicast hash filter(s)"
507 "set promisc (port_id|all) (on|off)\n"
508 " Set the promiscuous mode on port_id, or all.\n\n"
510 "set allmulti (port_id|all) (on|off)\n"
511 " Set the allmulti mode on port_id, or all.\n\n"
513 "set vf promisc (port_id) (vf_id) (on|off)\n"
514 " Set unicast promiscuous mode for a VF from the PF.\n\n"
516 "set vf allmulti (port_id) (vf_id) (on|off)\n"
517 " Set multicast promiscuous mode for a VF from the PF.\n\n"
519 "set flow_ctrl rx (on|off) tx (on|off) (high_water)"
520 " (low_water) (pause_time) (send_xon) mac_ctrl_frame_fwd"
521 " (on|off) autoneg (on|off) (port_id)\n"
522 "set flow_ctrl rx (on|off) (portid)\n"
523 "set flow_ctrl tx (on|off) (portid)\n"
524 "set flow_ctrl high_water (high_water) (portid)\n"
525 "set flow_ctrl low_water (low_water) (portid)\n"
526 "set flow_ctrl pause_time (pause_time) (portid)\n"
527 "set flow_ctrl send_xon (send_xon) (portid)\n"
528 "set flow_ctrl mac_ctrl_frame_fwd (on|off) (portid)\n"
529 "set flow_ctrl autoneg (on|off) (port_id)\n"
530 " Set the link flow control parameter on a port.\n\n"
532 "set pfc_ctrl rx (on|off) tx (on|off) (high_water)"
533 " (low_water) (pause_time) (priority) (port_id)\n"
534 " Set the priority flow control parameter on a"
537 "set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)\n"
538 " Set statistics mapping (qmapping 0..15) for RX/TX"
540 " e.g., 'set stat_qmap rx 0 2 5' sets rx queue 2"
541 " on port 0 to mapping 5.\n\n"
543 "set xstats-hide-zero on|off\n"
544 " Set the option to hide the zero values"
545 " for xstats display.\n"
547 "set record-core-cycles on|off\n"
548 " Set the option to enable measurement of CPU cycles.\n"
550 "set record-burst-stats on|off\n"
551 " Set the option to enable display of RX and TX bursts.\n"
553 "set port (port_id) vf (vf_id) rx|tx on|off\n"
554 " Enable/Disable a VF receive/tranmit from a port\n\n"
556 "set port (port_id) vf (vf_id) rxmode (AUPE|ROPE|BAM"
558 " AUPE:accepts untagged VLAN;"
559 "ROPE:accept unicast hash\n\n"
560 " BAM:accepts broadcast packets;"
561 "MPE:accepts all multicast packets\n\n"
562 " Enable/Disable a VF receive mode of a port\n\n"
564 "set port (port_id) queue (queue_id) rate (rate_num)\n"
565 " Set rate limit for a queue of a port\n\n"
567 "set port (port_id) vf (vf_id) rate (rate_num) "
568 "queue_mask (queue_mask_value)\n"
569 " Set rate limit for queues in VF of a port\n\n"
571 "set port (port_id) mirror-rule (rule_id)"
572 " (pool-mirror-up|pool-mirror-down|vlan-mirror)"
573 " (poolmask|vlanid[,vlanid]*) dst-pool (pool_id) (on|off)\n"
574 " Set pool or vlan type mirror rule on a port.\n"
575 " e.g., 'set port 0 mirror-rule 0 vlan-mirror 0,1"
576 " dst-pool 0 on' enable mirror traffic with vlan 0,1"
579 "set port (port_id) mirror-rule (rule_id)"
580 " (uplink-mirror|downlink-mirror) dst-pool"
581 " (pool_id) (on|off)\n"
582 " Set uplink or downlink type mirror rule on a port.\n"
583 " e.g., 'set port 0 mirror-rule 0 uplink-mirror dst-pool"
584 " 0 on' enable mirror income traffic to pool 0.\n\n"
586 "reset port (port_id) mirror-rule (rule_id)\n"
587 " Reset a mirror rule.\n\n"
589 "set flush_rx (on|off)\n"
590 " Flush (default) or don't flush RX streams before"
591 " forwarding. Mainly used with PCAP drivers.\n\n"
593 "set bypass mode (normal|bypass|isolate) (port_id)\n"
594 " Set the bypass mode for the lowest port on bypass enabled"
597 "set bypass event (timeout|os_on|os_off|power_on|power_off) "
598 "mode (normal|bypass|isolate) (port_id)\n"
599 " Set the event required to initiate specified bypass mode for"
600 " the lowest port on a bypass enabled NIC where:\n"
601 " timeout = enable bypass after watchdog timeout.\n"
602 " os_on = enable bypass when OS/board is powered on.\n"
603 " os_off = enable bypass when OS/board is powered off.\n"
604 " power_on = enable bypass when power supply is turned on.\n"
605 " power_off = enable bypass when power supply is turned off."
608 "set bypass timeout (0|1.5|2|3|4|8|16|32)\n"
609 " Set the bypass watchdog timeout to 'n' seconds"
610 " where 0 = instant.\n\n"
612 "show bypass config (port_id)\n"
613 " Show the bypass configuration for a bypass enabled NIC"
614 " using the lowest port on the NIC.\n\n"
617 "create bonded device (mode) (socket)\n"
618 " Create a new bonded device with specific bonding mode and socket.\n\n"
620 "add bonding slave (slave_id) (port_id)\n"
621 " Add a slave device to a bonded device.\n\n"
623 "remove bonding slave (slave_id) (port_id)\n"
624 " Remove a slave device from a bonded device.\n\n"
626 "set bonding mode (value) (port_id)\n"
627 " Set the bonding mode on a bonded device.\n\n"
629 "set bonding primary (slave_id) (port_id)\n"
630 " Set the primary slave for a bonded device.\n\n"
632 "show bonding config (port_id)\n"
633 " Show the bonding config for port_id.\n\n"
635 "set bonding mac_addr (port_id) (address)\n"
636 " Set the MAC address of a bonded device.\n\n"
638 "set bonding mode IEEE802.3AD aggregator policy (port_id) (agg_name)"
639 " Set Aggregation mode for IEEE802.3AD (mode 4)"
641 "set bonding balance_xmit_policy (port_id) (l2|l23|l34)\n"
642 " Set the transmit balance policy for bonded device running in balance mode.\n\n"
644 "set bonding mon_period (port_id) (value)\n"
645 " Set the bonding link status monitoring polling period in ms.\n\n"
647 "set bonding lacp dedicated_queues <port_id> (enable|disable)\n"
648 " Enable/disable dedicated queues for LACP control traffic.\n\n"
651 "set link-up port (port_id)\n"
652 " Set link up for a port.\n\n"
654 "set link-down port (port_id)\n"
655 " Set link down for a port.\n\n"
657 "ddp add (port_id) (profile_path[,backup_profile_path])\n"
658 " Load a profile package on a port\n\n"
660 "ddp del (port_id) (backup_profile_path)\n"
661 " Delete a profile package from a port\n\n"
663 "ptype mapping get (port_id) (valid_only)\n"
664 " Get ptype mapping on a port\n\n"
666 "ptype mapping replace (port_id) (target) (mask) (pky_type)\n"
667 " Replace target with the pkt_type in ptype mapping\n\n"
669 "ptype mapping reset (port_id)\n"
670 " Reset ptype mapping on a port\n\n"
672 "ptype mapping update (port_id) (hw_ptype) (sw_ptype)\n"
673 " Update a ptype mapping item on a port\n\n"
675 "set port (port_id) ptype_mask (ptype_mask)\n"
676 " set packet types classification for a specific 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 "set port (port_id) fec_mode auto|off|rs|baser\n"
741 " set fec mode for a specific port\n\n"
743 , list_pkt_forwarding_modes()
747 if (show_all || !strcmp(res->section, "ports")) {
753 "----------------\n\n"
755 "port start (port_id|all)\n"
756 " Start all ports or port_id.\n\n"
758 "port stop (port_id|all)\n"
759 " Stop all ports or port_id.\n\n"
761 "port close (port_id|all)\n"
762 " Close all ports or port_id.\n\n"
764 "port reset (port_id|all)\n"
765 " Reset all ports or port_id.\n\n"
767 "port attach (ident)\n"
768 " Attach physical or virtual dev by pci address or virtual device name\n\n"
770 "port detach (port_id)\n"
771 " Detach physical or virtual dev by port_id\n\n"
773 "port config (port_id|all)"
774 " speed (10|100|1000|10000|25000|40000|50000|100000|200000|auto)"
775 " duplex (half|full|auto)\n"
776 " Set speed and duplex for all ports or port_id\n\n"
778 "port config (port_id|all) loopback (mode)\n"
779 " Set loopback mode for all ports or port_id\n\n"
781 "port config all (rxq|txq|rxd|txd) (value)\n"
782 " Set number for rxq/txq/rxd/txd.\n\n"
784 "port config all max-pkt-len (value)\n"
785 " Set the max packet length.\n\n"
787 "port config all max-lro-pkt-size (value)\n"
788 " Set the max LRO aggregated packet size.\n\n"
790 "port config all drop-en (on|off)\n"
791 " Enable or disable packet drop on all RX queues of all ports when no "
792 "receive buffers available.\n\n"
794 "port config all rss (all|default|ip|tcp|udp|sctp|"
795 "ether|port|vxlan|geneve|nvgre|vxlan-gpe|ecpri|mpls|none|level-default|"
796 "level-outer|level-inner|<flowtype_id>)\n"
797 " Set the RSS mode.\n\n"
799 "port config port-id rss reta (hash,queue)[,(hash,queue)]\n"
800 " Set the RSS redirection table.\n\n"
802 "port config (port_id) dcb vt (on|off) (traffic_class)"
804 " Set the DCB mode.\n\n"
806 "port config all burst (value)\n"
807 " Set the number of packets per burst.\n\n"
809 "port config all (txpt|txht|txwt|rxpt|rxht|rxwt)"
811 " Set the ring prefetch/host/writeback threshold"
812 " for tx/rx queue.\n\n"
814 "port config all (txfreet|txrst|rxfreet) (value)\n"
815 " Set free threshold for rx/tx, or set"
816 " tx rs bit threshold.\n\n"
817 "port config mtu X value\n"
818 " Set the MTU of port X to a given value\n\n"
820 "port config (port_id) (rxq|txq) (queue_id) ring_size (value)\n"
821 " Set a rx/tx queue's ring size configuration, the new"
822 " value will take effect after command that (re-)start the port"
823 " or command that setup the specific queue\n\n"
825 "port (port_id) (rxq|txq) (queue_id) (start|stop)\n"
826 " Start/stop a rx/tx queue of port X. Only take effect"
827 " when port X is started\n\n"
829 "port (port_id) (rxq|txq) (queue_id) deferred_start (on|off)\n"
830 " Switch on/off a deferred start of port X rx/tx queue. Only"
831 " take effect when port X is stopped.\n\n"
833 "port (port_id) (rxq|txq) (queue_id) setup\n"
834 " Setup a rx/tx queue of port X.\n\n"
836 "port config (port_id) pctype mapping reset\n"
837 " Reset flow type to pctype mapping on a port\n\n"
839 "port config (port_id) pctype mapping update"
840 " (pctype_id_0[,pctype_id_1]*) (flow_type_id)\n"
841 " Update a flow type to pctype mapping item on a port\n\n"
843 "port config (port_id) pctype (pctype_id) hash_inset|"
844 "fdir_inset|fdir_flx_inset get|set|clear field\n"
846 " Configure RSS|FDIR|FDIR_FLX input set for some pctype\n\n"
848 "port config (port_id) pctype (pctype_id) hash_inset|"
849 "fdir_inset|fdir_flx_inset clear all"
850 " Clear RSS|FDIR|FDIR_FLX input set completely for some pctype\n\n"
852 "port config (port_id) udp_tunnel_port add|rm vxlan|geneve|ecpri (udp_port)\n\n"
853 " Add/remove UDP tunnel port for tunneling offload\n\n"
855 "port config <port_id> rx_offload vlan_strip|"
856 "ipv4_cksum|udp_cksum|tcp_cksum|tcp_lro|qinq_strip|"
857 "outer_ipv4_cksum|macsec_strip|header_split|"
858 "vlan_filter|vlan_extend|jumbo_frame|scatter|"
859 "buffer_split|timestamp|security|keep_crc on|off\n"
860 " Enable or disable a per port Rx offloading"
861 " on all Rx queues of a port\n\n"
863 "port (port_id) rxq (queue_id) rx_offload vlan_strip|"
864 "ipv4_cksum|udp_cksum|tcp_cksum|tcp_lro|qinq_strip|"
865 "outer_ipv4_cksum|macsec_strip|header_split|"
866 "vlan_filter|vlan_extend|jumbo_frame|scatter|"
867 "buffer_split|timestamp|security|keep_crc on|off\n"
868 " Enable or disable a per queue Rx offloading"
869 " only on a specific Rx queue\n\n"
871 "port config (port_id) tx_offload vlan_insert|"
872 "ipv4_cksum|udp_cksum|tcp_cksum|sctp_cksum|tcp_tso|"
873 "udp_tso|outer_ipv4_cksum|qinq_insert|vxlan_tnl_tso|"
874 "gre_tnl_tso|ipip_tnl_tso|geneve_tnl_tso|"
875 "macsec_insert|mt_lockfree|multi_segs|mbuf_fast_free|"
877 " Enable or disable a per port Tx offloading"
878 " on all Tx queues of a port\n\n"
880 "port (port_id) txq (queue_id) tx_offload vlan_insert|"
881 "ipv4_cksum|udp_cksum|tcp_cksum|sctp_cksum|tcp_tso|"
882 "udp_tso|outer_ipv4_cksum|qinq_insert|vxlan_tnl_tso|"
883 "gre_tnl_tso|ipip_tnl_tso|geneve_tnl_tso|macsec_insert"
884 "|mt_lockfree|multi_segs|mbuf_fast_free|security"
886 " Enable or disable a per queue Tx offloading"
887 " only on a specific Tx queue\n\n"
889 "bpf-load rx|tx (port) (queue) (J|M|B) (file_name)\n"
890 " Load an eBPF program as a callback"
891 " for particular RX/TX queue\n\n"
893 "bpf-unload rx|tx (port) (queue)\n"
894 " Unload previously loaded eBPF program"
895 " for particular RX/TX queue\n\n"
897 "port config (port_id) tx_metadata (value)\n"
898 " Set Tx metadata value per port. Testpmd will add this value"
899 " to any Tx packet sent from this port\n\n"
901 "port config (port_id) dynf (name) set|clear\n"
902 " Register a dynf and Set/clear this flag on Tx. "
903 "Testpmd will set this value to any Tx packet "
904 "sent from this port\n\n"
908 if (show_all || !strcmp(res->section, "registers")) {
916 "read reg (port_id) (address)\n"
917 " Display value of a port register.\n\n"
919 "read regfield (port_id) (address) (bit_x) (bit_y)\n"
920 " Display a port register bit field.\n\n"
922 "read regbit (port_id) (address) (bit_x)\n"
923 " Display a single port register bit.\n\n"
925 "write reg (port_id) (address) (value)\n"
926 " Set value of a port register.\n\n"
928 "write regfield (port_id) (address) (bit_x) (bit_y)"
930 " Set bit field of a port register.\n\n"
932 "write regbit (port_id) (address) (bit_x) (value)\n"
933 " Set single bit value of a port register.\n\n"
936 if (show_all || !strcmp(res->section, "filters")) {
945 "flow_director_filter (port_id) mode raw (add|del|update)"
946 " flow (flow_id) (drop|fwd) queue (queue_id)"
947 " fd_id (fd_id_value) packet (packet file name)\n"
948 " Add/Del a raw type flow director filter.\n\n"
951 "flow_director_mask (port_id) mode IP vlan (vlan_value)"
952 " src_mask (ipv4_src) (ipv6_src) (src_port)"
953 " dst_mask (ipv4_dst) (ipv6_dst) (dst_port)\n"
954 " Set flow director IP mask.\n\n"
956 "flow_director_mask (port_id) mode MAC-VLAN"
957 " vlan (vlan_value)\n"
958 " Set flow director MAC-VLAN mask.\n\n"
960 "flow_director_mask (port_id) mode Tunnel"
961 " vlan (vlan_value) mac (mac_value)"
962 " tunnel-type (tunnel_type_value)"
963 " tunnel-id (tunnel_id_value)\n"
964 " Set flow director Tunnel mask.\n\n"
966 "flow_director_flex_payload (port_id)"
967 " (raw|l2|l3|l4) (config)\n"
968 " Configure flex payload selection.\n\n"
970 "flow validate {port_id}"
971 " [group {group_id}] [priority {level}]"
972 " [ingress] [egress]"
973 " pattern {item} [/ {item} [...]] / end"
974 " actions {action} [/ {action} [...]] / end\n"
975 " Check whether a flow rule can be created.\n\n"
977 "flow create {port_id}"
978 " [group {group_id}] [priority {level}]"
979 " [ingress] [egress]"
980 " pattern {item} [/ {item} [...]] / end"
981 " actions {action} [/ {action} [...]] / end\n"
982 " Create a flow rule.\n\n"
984 "flow destroy {port_id} rule {rule_id} [...]\n"
985 " Destroy specific flow rules.\n\n"
987 "flow flush {port_id}\n"
988 " Destroy all flow rules.\n\n"
990 "flow query {port_id} {rule_id} {action}\n"
991 " Query an existing flow rule.\n\n"
993 "flow list {port_id} [group {group_id}] [...]\n"
994 " List existing flow rules sorted by priority,"
995 " filtered by group identifiers.\n\n"
997 "flow isolate {port_id} {boolean}\n"
998 " Restrict ingress traffic to the defined"
1001 "flow aged {port_id} [destroy]\n"
1002 " List and destroy aged flows"
1005 "flow shared_action {port_id} create"
1006 " [action_id {shared_action_id}]"
1007 " [ingress] [egress]"
1008 " action {action} / end\n"
1009 " Create shared action.\n\n"
1011 "flow shared_action {port_id} update"
1012 " {shared_action_id} action {action} / end\n"
1013 " Update shared action.\n\n"
1015 "flow shared_action {port_id} destroy"
1016 " action_id {shared_action_id} [...]\n"
1017 " Destroy specific shared actions.\n\n"
1019 "flow shared_action {port_id} query"
1020 " {shared_action_id}\n"
1021 " Query an existing shared action.\n\n"
1023 "set vxlan ip-version (ipv4|ipv6) vni (vni) udp-src"
1024 " (udp-src) udp-dst (udp-dst) ip-src (ip-src) ip-dst"
1025 " (ip-dst) eth-src (eth-src) eth-dst (eth-dst)\n"
1026 " Configure the VXLAN encapsulation for flows.\n\n"
1028 "set vxlan-with-vlan ip-version (ipv4|ipv6) vni (vni)"
1029 " udp-src (udp-src) udp-dst (udp-dst) ip-src (ip-src)"
1030 " ip-dst (ip-dst) vlan-tci (vlan-tci) eth-src (eth-src)"
1031 " eth-dst (eth-dst)\n"
1032 " Configure the VXLAN encapsulation for flows.\n\n"
1034 "set vxlan-tos-ttl ip-version (ipv4|ipv6) vni (vni) udp-src"
1035 " (udp-src) udp-dst (udp-dst) ip-tos (ip-tos) ip-ttl (ip-ttl)"
1036 " ip-src (ip-src) ip-dst (ip-dst) eth-src (eth-src)"
1037 " eth-dst (eth-dst)\n"
1038 " Configure the VXLAN encapsulation for flows.\n\n"
1040 "set nvgre ip-version (ipv4|ipv6) tni (tni) ip-src"
1041 " (ip-src) ip-dst (ip-dst) eth-src (eth-src) eth-dst"
1043 " Configure the NVGRE encapsulation for flows.\n\n"
1045 "set nvgre-with-vlan ip-version (ipv4|ipv6) tni (tni)"
1046 " ip-src (ip-src) ip-dst (ip-dst) vlan-tci (vlan-tci)"
1047 " eth-src (eth-src) eth-dst (eth-dst)\n"
1048 " Configure the NVGRE encapsulation for flows.\n\n"
1050 "set raw_encap {flow items}\n"
1051 " Configure the encapsulation with raw data.\n\n"
1053 "set raw_decap {flow items}\n"
1054 " Configure the decapsulation with raw data.\n\n"
1059 if (show_all || !strcmp(res->section, "traffic_management")) {
1063 "Traffic Management:\n"
1065 "show port tm cap (port_id)\n"
1066 " Display the port TM capability.\n\n"
1068 "show port tm level cap (port_id) (level_id)\n"
1069 " Display the port TM hierarchical level capability.\n\n"
1071 "show port tm node cap (port_id) (node_id)\n"
1072 " Display the port TM node capability.\n\n"
1074 "show port tm node type (port_id) (node_id)\n"
1075 " Display the port TM node type.\n\n"
1077 "show port tm node stats (port_id) (node_id) (clear)\n"
1078 " Display the port TM node stats.\n\n"
1080 "add port tm node shaper profile (port_id) (shaper_profile_id)"
1081 " (cmit_tb_rate) (cmit_tb_size) (peak_tb_rate) (peak_tb_size)"
1082 " (packet_length_adjust) (packet_mode)\n"
1083 " Add port tm node private shaper profile.\n\n"
1085 "del port tm node shaper profile (port_id) (shaper_profile_id)\n"
1086 " Delete port tm node private shaper profile.\n\n"
1088 "add port tm node shared shaper (port_id) (shared_shaper_id)"
1089 " (shaper_profile_id)\n"
1090 " Add/update port tm node shared shaper.\n\n"
1092 "del port tm node shared shaper (port_id) (shared_shaper_id)\n"
1093 " Delete port tm node shared shaper.\n\n"
1095 "set port tm node shaper profile (port_id) (node_id)"
1096 " (shaper_profile_id)\n"
1097 " Set port tm node shaper profile.\n\n"
1099 "add port tm node wred profile (port_id) (wred_profile_id)"
1100 " (color_g) (min_th_g) (max_th_g) (maxp_inv_g) (wq_log2_g)"
1101 " (color_y) (min_th_y) (max_th_y) (maxp_inv_y) (wq_log2_y)"
1102 " (color_r) (min_th_r) (max_th_r) (maxp_inv_r) (wq_log2_r)\n"
1103 " Add port tm node wred profile.\n\n"
1105 "del port tm node wred profile (port_id) (wred_profile_id)\n"
1106 " Delete port tm node wred profile.\n\n"
1108 "add port tm nonleaf node (port_id) (node_id) (parent_node_id)"
1109 " (priority) (weight) (level_id) (shaper_profile_id)"
1110 " (n_sp_priorities) (stats_mask) (n_shared_shapers)"
1111 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n"
1112 " Add port tm nonleaf node.\n\n"
1114 "add port tm nonleaf node pktmode (port_id) (node_id) (parent_node_id)"
1115 " (priority) (weight) (level_id) (shaper_profile_id)"
1116 " (n_sp_priorities) (stats_mask) (n_shared_shapers)"
1117 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n"
1118 " Add port tm nonleaf node with pkt mode enabled.\n\n"
1120 "add port tm leaf node (port_id) (node_id) (parent_node_id)"
1121 " (priority) (weight) (level_id) (shaper_profile_id)"
1122 " (cman_mode) (wred_profile_id) (stats_mask) (n_shared_shapers)"
1123 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n"
1124 " Add port tm leaf node.\n\n"
1126 "del port tm node (port_id) (node_id)\n"
1127 " Delete port tm node.\n\n"
1129 "set port tm node parent (port_id) (node_id) (parent_node_id)"
1130 " (priority) (weight)\n"
1131 " Set port tm node parent.\n\n"
1133 "suspend port tm node (port_id) (node_id)"
1134 " Suspend tm node.\n\n"
1136 "resume port tm node (port_id) (node_id)"
1137 " Resume tm node.\n\n"
1139 "port tm hierarchy commit (port_id) (clean_on_fail)\n"
1140 " Commit tm hierarchy.\n\n"
1142 "set port tm mark ip_ecn (port) (green) (yellow)"
1144 " Enables/Disables the traffic management marking"
1145 " for IP ECN (Explicit Congestion Notification)"
1146 " packets on a given port\n\n"
1148 "set port tm mark ip_dscp (port) (green) (yellow)"
1150 " Enables/Disables the traffic management marking"
1151 " on the port for IP dscp packets\n\n"
1153 "set port tm mark vlan_dei (port) (green) (yellow)"
1155 " Enables/Disables the traffic management marking"
1156 " on the port for VLAN packets with DEI enabled\n\n"
1160 if (show_all || !strcmp(res->section, "devices")) {
1164 "Device Operations:\n"
1166 "device detach (identifier)\n"
1167 " Detach device by identifier.\n\n"
1173 cmdline_parse_token_string_t cmd_help_long_help =
1174 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, help, "help");
1176 cmdline_parse_token_string_t cmd_help_long_section =
1177 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, section,
1178 "all#control#display#config#"
1179 "ports#registers#filters#traffic_management#devices");
1181 cmdline_parse_inst_t cmd_help_long = {
1182 .f = cmd_help_long_parsed,
1184 .help_str = "help all|control|display|config|ports|register|"
1185 "filters|traffic_management|devices: "
1188 (void *)&cmd_help_long_help,
1189 (void *)&cmd_help_long_section,
1195 /* *** start/stop/close all ports *** */
1196 struct cmd_operate_port_result {
1197 cmdline_fixed_string_t keyword;
1198 cmdline_fixed_string_t name;
1199 cmdline_fixed_string_t value;
1202 static void cmd_operate_port_parsed(void *parsed_result,
1203 __rte_unused struct cmdline *cl,
1204 __rte_unused void *data)
1206 struct cmd_operate_port_result *res = parsed_result;
1208 if (!strcmp(res->name, "start"))
1209 start_port(RTE_PORT_ALL);
1210 else if (!strcmp(res->name, "stop"))
1211 stop_port(RTE_PORT_ALL);
1212 else if (!strcmp(res->name, "close"))
1213 close_port(RTE_PORT_ALL);
1214 else if (!strcmp(res->name, "reset"))
1215 reset_port(RTE_PORT_ALL);
1217 printf("Unknown parameter\n");
1220 cmdline_parse_token_string_t cmd_operate_port_all_cmd =
1221 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, keyword,
1223 cmdline_parse_token_string_t cmd_operate_port_all_port =
1224 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, name,
1225 "start#stop#close#reset");
1226 cmdline_parse_token_string_t cmd_operate_port_all_all =
1227 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, value, "all");
1229 cmdline_parse_inst_t cmd_operate_port = {
1230 .f = cmd_operate_port_parsed,
1232 .help_str = "port start|stop|close all: Start/Stop/Close/Reset all ports",
1234 (void *)&cmd_operate_port_all_cmd,
1235 (void *)&cmd_operate_port_all_port,
1236 (void *)&cmd_operate_port_all_all,
1241 /* *** start/stop/close specific port *** */
1242 struct cmd_operate_specific_port_result {
1243 cmdline_fixed_string_t keyword;
1244 cmdline_fixed_string_t name;
1248 static void cmd_operate_specific_port_parsed(void *parsed_result,
1249 __rte_unused struct cmdline *cl,
1250 __rte_unused void *data)
1252 struct cmd_operate_specific_port_result *res = parsed_result;
1254 if (!strcmp(res->name, "start"))
1255 start_port(res->value);
1256 else if (!strcmp(res->name, "stop"))
1257 stop_port(res->value);
1258 else if (!strcmp(res->name, "close"))
1259 close_port(res->value);
1260 else if (!strcmp(res->name, "reset"))
1261 reset_port(res->value);
1263 printf("Unknown parameter\n");
1266 cmdline_parse_token_string_t cmd_operate_specific_port_cmd =
1267 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
1269 cmdline_parse_token_string_t cmd_operate_specific_port_port =
1270 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
1271 name, "start#stop#close#reset");
1272 cmdline_parse_token_num_t cmd_operate_specific_port_id =
1273 TOKEN_NUM_INITIALIZER(struct cmd_operate_specific_port_result,
1276 cmdline_parse_inst_t cmd_operate_specific_port = {
1277 .f = cmd_operate_specific_port_parsed,
1279 .help_str = "port start|stop|close <port_id>: Start/Stop/Close/Reset port_id",
1281 (void *)&cmd_operate_specific_port_cmd,
1282 (void *)&cmd_operate_specific_port_port,
1283 (void *)&cmd_operate_specific_port_id,
1288 /* *** enable port setup (after attach) via iterator or event *** */
1289 struct cmd_set_port_setup_on_result {
1290 cmdline_fixed_string_t set;
1291 cmdline_fixed_string_t port;
1292 cmdline_fixed_string_t setup;
1293 cmdline_fixed_string_t on;
1294 cmdline_fixed_string_t mode;
1297 static void cmd_set_port_setup_on_parsed(void *parsed_result,
1298 __rte_unused struct cmdline *cl,
1299 __rte_unused void *data)
1301 struct cmd_set_port_setup_on_result *res = parsed_result;
1303 if (strcmp(res->mode, "event") == 0)
1304 setup_on_probe_event = true;
1305 else if (strcmp(res->mode, "iterator") == 0)
1306 setup_on_probe_event = false;
1308 printf("Unknown mode\n");
1311 cmdline_parse_token_string_t cmd_set_port_setup_on_set =
1312 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1314 cmdline_parse_token_string_t cmd_set_port_setup_on_port =
1315 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1317 cmdline_parse_token_string_t cmd_set_port_setup_on_setup =
1318 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1320 cmdline_parse_token_string_t cmd_set_port_setup_on_on =
1321 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1323 cmdline_parse_token_string_t cmd_set_port_setup_on_mode =
1324 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1325 mode, "iterator#event");
1327 cmdline_parse_inst_t cmd_set_port_setup_on = {
1328 .f = cmd_set_port_setup_on_parsed,
1330 .help_str = "set port setup on iterator|event",
1332 (void *)&cmd_set_port_setup_on_set,
1333 (void *)&cmd_set_port_setup_on_port,
1334 (void *)&cmd_set_port_setup_on_setup,
1335 (void *)&cmd_set_port_setup_on_on,
1336 (void *)&cmd_set_port_setup_on_mode,
1341 /* *** attach a specified port *** */
1342 struct cmd_operate_attach_port_result {
1343 cmdline_fixed_string_t port;
1344 cmdline_fixed_string_t keyword;
1345 cmdline_multi_string_t identifier;
1348 static void cmd_operate_attach_port_parsed(void *parsed_result,
1349 __rte_unused struct cmdline *cl,
1350 __rte_unused void *data)
1352 struct cmd_operate_attach_port_result *res = parsed_result;
1354 if (!strcmp(res->keyword, "attach"))
1355 attach_port(res->identifier);
1357 printf("Unknown parameter\n");
1360 cmdline_parse_token_string_t cmd_operate_attach_port_port =
1361 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1363 cmdline_parse_token_string_t cmd_operate_attach_port_keyword =
1364 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1366 cmdline_parse_token_string_t cmd_operate_attach_port_identifier =
1367 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1368 identifier, TOKEN_STRING_MULTI);
1370 cmdline_parse_inst_t cmd_operate_attach_port = {
1371 .f = cmd_operate_attach_port_parsed,
1373 .help_str = "port attach <identifier>: "
1374 "(identifier: pci address or virtual dev name)",
1376 (void *)&cmd_operate_attach_port_port,
1377 (void *)&cmd_operate_attach_port_keyword,
1378 (void *)&cmd_operate_attach_port_identifier,
1383 /* *** detach a specified port *** */
1384 struct cmd_operate_detach_port_result {
1385 cmdline_fixed_string_t port;
1386 cmdline_fixed_string_t keyword;
1390 static void cmd_operate_detach_port_parsed(void *parsed_result,
1391 __rte_unused struct cmdline *cl,
1392 __rte_unused void *data)
1394 struct cmd_operate_detach_port_result *res = parsed_result;
1396 if (!strcmp(res->keyword, "detach")) {
1397 RTE_ETH_VALID_PORTID_OR_RET(res->port_id);
1398 detach_port_device(res->port_id);
1400 printf("Unknown parameter\n");
1404 cmdline_parse_token_string_t cmd_operate_detach_port_port =
1405 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
1407 cmdline_parse_token_string_t cmd_operate_detach_port_keyword =
1408 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
1410 cmdline_parse_token_num_t cmd_operate_detach_port_port_id =
1411 TOKEN_NUM_INITIALIZER(struct cmd_operate_detach_port_result,
1412 port_id, RTE_UINT16);
1414 cmdline_parse_inst_t cmd_operate_detach_port = {
1415 .f = cmd_operate_detach_port_parsed,
1417 .help_str = "port detach <port_id>",
1419 (void *)&cmd_operate_detach_port_port,
1420 (void *)&cmd_operate_detach_port_keyword,
1421 (void *)&cmd_operate_detach_port_port_id,
1426 /* *** detach device by identifier *** */
1427 struct cmd_operate_detach_device_result {
1428 cmdline_fixed_string_t device;
1429 cmdline_fixed_string_t keyword;
1430 cmdline_fixed_string_t identifier;
1433 static void cmd_operate_detach_device_parsed(void *parsed_result,
1434 __rte_unused struct cmdline *cl,
1435 __rte_unused void *data)
1437 struct cmd_operate_detach_device_result *res = parsed_result;
1439 if (!strcmp(res->keyword, "detach"))
1440 detach_devargs(res->identifier);
1442 printf("Unknown parameter\n");
1445 cmdline_parse_token_string_t cmd_operate_detach_device_device =
1446 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result,
1448 cmdline_parse_token_string_t cmd_operate_detach_device_keyword =
1449 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result,
1451 cmdline_parse_token_string_t cmd_operate_detach_device_identifier =
1452 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result,
1455 cmdline_parse_inst_t cmd_operate_detach_device = {
1456 .f = cmd_operate_detach_device_parsed,
1458 .help_str = "device detach <identifier>:"
1459 "(identifier: pci address or virtual dev name)",
1461 (void *)&cmd_operate_detach_device_device,
1462 (void *)&cmd_operate_detach_device_keyword,
1463 (void *)&cmd_operate_detach_device_identifier,
1467 /* *** configure speed for all ports *** */
1468 struct cmd_config_speed_all {
1469 cmdline_fixed_string_t port;
1470 cmdline_fixed_string_t keyword;
1471 cmdline_fixed_string_t all;
1472 cmdline_fixed_string_t item1;
1473 cmdline_fixed_string_t item2;
1474 cmdline_fixed_string_t value1;
1475 cmdline_fixed_string_t value2;
1479 parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed)
1484 if (!strcmp(duplexstr, "half")) {
1485 duplex = ETH_LINK_HALF_DUPLEX;
1486 } else if (!strcmp(duplexstr, "full")) {
1487 duplex = ETH_LINK_FULL_DUPLEX;
1488 } else if (!strcmp(duplexstr, "auto")) {
1489 duplex = ETH_LINK_FULL_DUPLEX;
1491 printf("Unknown duplex parameter\n");
1495 if (!strcmp(speedstr, "10")) {
1496 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1497 ETH_LINK_SPEED_10M_HD : ETH_LINK_SPEED_10M;
1498 } else if (!strcmp(speedstr, "100")) {
1499 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1500 ETH_LINK_SPEED_100M_HD : ETH_LINK_SPEED_100M;
1502 if (duplex != ETH_LINK_FULL_DUPLEX) {
1503 printf("Invalid speed/duplex parameters\n");
1506 if (!strcmp(speedstr, "1000")) {
1507 *speed = ETH_LINK_SPEED_1G;
1508 } else if (!strcmp(speedstr, "10000")) {
1509 *speed = ETH_LINK_SPEED_10G;
1510 } else if (!strcmp(speedstr, "25000")) {
1511 *speed = ETH_LINK_SPEED_25G;
1512 } else if (!strcmp(speedstr, "40000")) {
1513 *speed = ETH_LINK_SPEED_40G;
1514 } else if (!strcmp(speedstr, "50000")) {
1515 *speed = ETH_LINK_SPEED_50G;
1516 } else if (!strcmp(speedstr, "100000")) {
1517 *speed = ETH_LINK_SPEED_100G;
1518 } else if (!strcmp(speedstr, "200000")) {
1519 *speed = ETH_LINK_SPEED_200G;
1520 } else if (!strcmp(speedstr, "auto")) {
1521 *speed = ETH_LINK_SPEED_AUTONEG;
1523 printf("Unknown speed parameter\n");
1532 cmd_config_speed_all_parsed(void *parsed_result,
1533 __rte_unused struct cmdline *cl,
1534 __rte_unused void *data)
1536 struct cmd_config_speed_all *res = parsed_result;
1537 uint32_t link_speed;
1540 if (!all_ports_stopped()) {
1541 printf("Please stop all ports first\n");
1545 if (parse_and_check_speed_duplex(res->value1, res->value2,
1549 RTE_ETH_FOREACH_DEV(pid) {
1550 ports[pid].dev_conf.link_speeds = link_speed;
1553 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1556 cmdline_parse_token_string_t cmd_config_speed_all_port =
1557 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, port, "port");
1558 cmdline_parse_token_string_t cmd_config_speed_all_keyword =
1559 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, keyword,
1561 cmdline_parse_token_string_t cmd_config_speed_all_all =
1562 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, all, "all");
1563 cmdline_parse_token_string_t cmd_config_speed_all_item1 =
1564 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item1, "speed");
1565 cmdline_parse_token_string_t cmd_config_speed_all_value1 =
1566 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value1,
1567 "10#100#1000#10000#25000#40000#50000#100000#200000#auto");
1568 cmdline_parse_token_string_t cmd_config_speed_all_item2 =
1569 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item2, "duplex");
1570 cmdline_parse_token_string_t cmd_config_speed_all_value2 =
1571 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value2,
1574 cmdline_parse_inst_t cmd_config_speed_all = {
1575 .f = cmd_config_speed_all_parsed,
1577 .help_str = "port config all speed "
1578 "10|100|1000|10000|25000|40000|50000|100000|200000|auto duplex "
1581 (void *)&cmd_config_speed_all_port,
1582 (void *)&cmd_config_speed_all_keyword,
1583 (void *)&cmd_config_speed_all_all,
1584 (void *)&cmd_config_speed_all_item1,
1585 (void *)&cmd_config_speed_all_value1,
1586 (void *)&cmd_config_speed_all_item2,
1587 (void *)&cmd_config_speed_all_value2,
1592 /* *** configure speed for specific port *** */
1593 struct cmd_config_speed_specific {
1594 cmdline_fixed_string_t port;
1595 cmdline_fixed_string_t keyword;
1597 cmdline_fixed_string_t item1;
1598 cmdline_fixed_string_t item2;
1599 cmdline_fixed_string_t value1;
1600 cmdline_fixed_string_t value2;
1604 cmd_config_speed_specific_parsed(void *parsed_result,
1605 __rte_unused struct cmdline *cl,
1606 __rte_unused void *data)
1608 struct cmd_config_speed_specific *res = parsed_result;
1609 uint32_t link_speed;
1611 if (!all_ports_stopped()) {
1612 printf("Please stop all ports first\n");
1616 if (port_id_is_invalid(res->id, ENABLED_WARN))
1619 if (parse_and_check_speed_duplex(res->value1, res->value2,
1623 ports[res->id].dev_conf.link_speeds = link_speed;
1625 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1629 cmdline_parse_token_string_t cmd_config_speed_specific_port =
1630 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, port,
1632 cmdline_parse_token_string_t cmd_config_speed_specific_keyword =
1633 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, keyword,
1635 cmdline_parse_token_num_t cmd_config_speed_specific_id =
1636 TOKEN_NUM_INITIALIZER(struct cmd_config_speed_specific, id, RTE_UINT16);
1637 cmdline_parse_token_string_t cmd_config_speed_specific_item1 =
1638 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item1,
1640 cmdline_parse_token_string_t cmd_config_speed_specific_value1 =
1641 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value1,
1642 "10#100#1000#10000#25000#40000#50000#100000#200000#auto");
1643 cmdline_parse_token_string_t cmd_config_speed_specific_item2 =
1644 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item2,
1646 cmdline_parse_token_string_t cmd_config_speed_specific_value2 =
1647 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value2,
1650 cmdline_parse_inst_t cmd_config_speed_specific = {
1651 .f = cmd_config_speed_specific_parsed,
1653 .help_str = "port config <port_id> speed "
1654 "10|100|1000|10000|25000|40000|50000|100000|200000|auto duplex "
1657 (void *)&cmd_config_speed_specific_port,
1658 (void *)&cmd_config_speed_specific_keyword,
1659 (void *)&cmd_config_speed_specific_id,
1660 (void *)&cmd_config_speed_specific_item1,
1661 (void *)&cmd_config_speed_specific_value1,
1662 (void *)&cmd_config_speed_specific_item2,
1663 (void *)&cmd_config_speed_specific_value2,
1668 /* *** configure loopback for all ports *** */
1669 struct cmd_config_loopback_all {
1670 cmdline_fixed_string_t port;
1671 cmdline_fixed_string_t keyword;
1672 cmdline_fixed_string_t all;
1673 cmdline_fixed_string_t item;
1678 cmd_config_loopback_all_parsed(void *parsed_result,
1679 __rte_unused struct cmdline *cl,
1680 __rte_unused void *data)
1682 struct cmd_config_loopback_all *res = parsed_result;
1685 if (!all_ports_stopped()) {
1686 printf("Please stop all ports first\n");
1690 RTE_ETH_FOREACH_DEV(pid) {
1691 ports[pid].dev_conf.lpbk_mode = res->mode;
1694 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1697 cmdline_parse_token_string_t cmd_config_loopback_all_port =
1698 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, port, "port");
1699 cmdline_parse_token_string_t cmd_config_loopback_all_keyword =
1700 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, keyword,
1702 cmdline_parse_token_string_t cmd_config_loopback_all_all =
1703 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, all, "all");
1704 cmdline_parse_token_string_t cmd_config_loopback_all_item =
1705 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, item,
1707 cmdline_parse_token_num_t cmd_config_loopback_all_mode =
1708 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_all, mode, RTE_UINT32);
1710 cmdline_parse_inst_t cmd_config_loopback_all = {
1711 .f = cmd_config_loopback_all_parsed,
1713 .help_str = "port config all loopback <mode>",
1715 (void *)&cmd_config_loopback_all_port,
1716 (void *)&cmd_config_loopback_all_keyword,
1717 (void *)&cmd_config_loopback_all_all,
1718 (void *)&cmd_config_loopback_all_item,
1719 (void *)&cmd_config_loopback_all_mode,
1724 /* *** configure loopback for specific port *** */
1725 struct cmd_config_loopback_specific {
1726 cmdline_fixed_string_t port;
1727 cmdline_fixed_string_t keyword;
1729 cmdline_fixed_string_t item;
1734 cmd_config_loopback_specific_parsed(void *parsed_result,
1735 __rte_unused struct cmdline *cl,
1736 __rte_unused void *data)
1738 struct cmd_config_loopback_specific *res = parsed_result;
1740 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
1743 if (!port_is_stopped(res->port_id)) {
1744 printf("Please stop port %u first\n", res->port_id);
1748 ports[res->port_id].dev_conf.lpbk_mode = res->mode;
1750 cmd_reconfig_device_queue(res->port_id, 1, 1);
1754 cmdline_parse_token_string_t cmd_config_loopback_specific_port =
1755 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, port,
1757 cmdline_parse_token_string_t cmd_config_loopback_specific_keyword =
1758 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, keyword,
1760 cmdline_parse_token_num_t cmd_config_loopback_specific_id =
1761 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, port_id,
1763 cmdline_parse_token_string_t cmd_config_loopback_specific_item =
1764 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, item,
1766 cmdline_parse_token_num_t cmd_config_loopback_specific_mode =
1767 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, mode,
1770 cmdline_parse_inst_t cmd_config_loopback_specific = {
1771 .f = cmd_config_loopback_specific_parsed,
1773 .help_str = "port config <port_id> loopback <mode>",
1775 (void *)&cmd_config_loopback_specific_port,
1776 (void *)&cmd_config_loopback_specific_keyword,
1777 (void *)&cmd_config_loopback_specific_id,
1778 (void *)&cmd_config_loopback_specific_item,
1779 (void *)&cmd_config_loopback_specific_mode,
1784 /* *** configure txq/rxq, txd/rxd *** */
1785 struct cmd_config_rx_tx {
1786 cmdline_fixed_string_t port;
1787 cmdline_fixed_string_t keyword;
1788 cmdline_fixed_string_t all;
1789 cmdline_fixed_string_t name;
1794 cmd_config_rx_tx_parsed(void *parsed_result,
1795 __rte_unused struct cmdline *cl,
1796 __rte_unused void *data)
1798 struct cmd_config_rx_tx *res = parsed_result;
1800 if (!all_ports_stopped()) {
1801 printf("Please stop all ports first\n");
1804 if (!strcmp(res->name, "rxq")) {
1805 if (!res->value && !nb_txq) {
1806 printf("Warning: Either rx or tx queues should be non zero\n");
1809 if (check_nb_rxq(res->value) != 0)
1811 nb_rxq = res->value;
1813 else if (!strcmp(res->name, "txq")) {
1814 if (!res->value && !nb_rxq) {
1815 printf("Warning: Either rx or tx queues should be non zero\n");
1818 if (check_nb_txq(res->value) != 0)
1820 nb_txq = res->value;
1822 else if (!strcmp(res->name, "rxd")) {
1823 if (check_nb_rxd(res->value) != 0)
1825 nb_rxd = res->value;
1826 } else if (!strcmp(res->name, "txd")) {
1827 if (check_nb_txd(res->value) != 0)
1830 nb_txd = res->value;
1832 printf("Unknown parameter\n");
1840 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1843 cmdline_parse_token_string_t cmd_config_rx_tx_port =
1844 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, port, "port");
1845 cmdline_parse_token_string_t cmd_config_rx_tx_keyword =
1846 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, keyword, "config");
1847 cmdline_parse_token_string_t cmd_config_rx_tx_all =
1848 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, all, "all");
1849 cmdline_parse_token_string_t cmd_config_rx_tx_name =
1850 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, name,
1852 cmdline_parse_token_num_t cmd_config_rx_tx_value =
1853 TOKEN_NUM_INITIALIZER(struct cmd_config_rx_tx, value, RTE_UINT16);
1855 cmdline_parse_inst_t cmd_config_rx_tx = {
1856 .f = cmd_config_rx_tx_parsed,
1858 .help_str = "port config all rxq|txq|rxd|txd <value>",
1860 (void *)&cmd_config_rx_tx_port,
1861 (void *)&cmd_config_rx_tx_keyword,
1862 (void *)&cmd_config_rx_tx_all,
1863 (void *)&cmd_config_rx_tx_name,
1864 (void *)&cmd_config_rx_tx_value,
1869 /* *** config max packet length *** */
1870 struct cmd_config_max_pkt_len_result {
1871 cmdline_fixed_string_t port;
1872 cmdline_fixed_string_t keyword;
1873 cmdline_fixed_string_t all;
1874 cmdline_fixed_string_t name;
1879 cmd_config_max_pkt_len_parsed(void *parsed_result,
1880 __rte_unused struct cmdline *cl,
1881 __rte_unused void *data)
1883 struct cmd_config_max_pkt_len_result *res = parsed_result;
1884 uint32_t max_rx_pkt_len_backup = 0;
1888 if (!all_ports_stopped()) {
1889 printf("Please stop all ports first\n");
1893 RTE_ETH_FOREACH_DEV(pid) {
1894 struct rte_port *port = &ports[pid];
1896 if (!strcmp(res->name, "max-pkt-len")) {
1897 if (res->value < RTE_ETHER_MIN_LEN) {
1898 printf("max-pkt-len can not be less than %d\n",
1902 if (res->value == port->dev_conf.rxmode.max_rx_pkt_len)
1905 ret = eth_dev_info_get_print_err(pid, &port->dev_info);
1907 printf("rte_eth_dev_info_get() failed for port %u\n",
1912 max_rx_pkt_len_backup = port->dev_conf.rxmode.max_rx_pkt_len;
1914 port->dev_conf.rxmode.max_rx_pkt_len = res->value;
1915 if (update_jumbo_frame_offload(pid) != 0)
1916 port->dev_conf.rxmode.max_rx_pkt_len = max_rx_pkt_len_backup;
1918 printf("Unknown parameter\n");
1925 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1928 cmdline_parse_token_string_t cmd_config_max_pkt_len_port =
1929 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, port,
1931 cmdline_parse_token_string_t cmd_config_max_pkt_len_keyword =
1932 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, keyword,
1934 cmdline_parse_token_string_t cmd_config_max_pkt_len_all =
1935 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, all,
1937 cmdline_parse_token_string_t cmd_config_max_pkt_len_name =
1938 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, name,
1940 cmdline_parse_token_num_t cmd_config_max_pkt_len_value =
1941 TOKEN_NUM_INITIALIZER(struct cmd_config_max_pkt_len_result, value,
1944 cmdline_parse_inst_t cmd_config_max_pkt_len = {
1945 .f = cmd_config_max_pkt_len_parsed,
1947 .help_str = "port config all max-pkt-len <value>",
1949 (void *)&cmd_config_max_pkt_len_port,
1950 (void *)&cmd_config_max_pkt_len_keyword,
1951 (void *)&cmd_config_max_pkt_len_all,
1952 (void *)&cmd_config_max_pkt_len_name,
1953 (void *)&cmd_config_max_pkt_len_value,
1958 /* *** config max LRO aggregated packet size *** */
1959 struct cmd_config_max_lro_pkt_size_result {
1960 cmdline_fixed_string_t port;
1961 cmdline_fixed_string_t keyword;
1962 cmdline_fixed_string_t all;
1963 cmdline_fixed_string_t name;
1968 cmd_config_max_lro_pkt_size_parsed(void *parsed_result,
1969 __rte_unused struct cmdline *cl,
1970 __rte_unused void *data)
1972 struct cmd_config_max_lro_pkt_size_result *res = parsed_result;
1975 if (!all_ports_stopped()) {
1976 printf("Please stop all ports first\n");
1980 RTE_ETH_FOREACH_DEV(pid) {
1981 struct rte_port *port = &ports[pid];
1983 if (!strcmp(res->name, "max-lro-pkt-size")) {
1985 port->dev_conf.rxmode.max_lro_pkt_size)
1988 port->dev_conf.rxmode.max_lro_pkt_size = res->value;
1990 printf("Unknown parameter\n");
1997 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2000 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_port =
2001 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
2003 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_keyword =
2004 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
2006 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_all =
2007 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
2009 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_name =
2010 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
2011 name, "max-lro-pkt-size");
2012 cmdline_parse_token_num_t cmd_config_max_lro_pkt_size_value =
2013 TOKEN_NUM_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
2016 cmdline_parse_inst_t cmd_config_max_lro_pkt_size = {
2017 .f = cmd_config_max_lro_pkt_size_parsed,
2019 .help_str = "port config all max-lro-pkt-size <value>",
2021 (void *)&cmd_config_max_lro_pkt_size_port,
2022 (void *)&cmd_config_max_lro_pkt_size_keyword,
2023 (void *)&cmd_config_max_lro_pkt_size_all,
2024 (void *)&cmd_config_max_lro_pkt_size_name,
2025 (void *)&cmd_config_max_lro_pkt_size_value,
2030 /* *** configure port MTU *** */
2031 struct cmd_config_mtu_result {
2032 cmdline_fixed_string_t port;
2033 cmdline_fixed_string_t keyword;
2034 cmdline_fixed_string_t mtu;
2040 cmd_config_mtu_parsed(void *parsed_result,
2041 __rte_unused struct cmdline *cl,
2042 __rte_unused void *data)
2044 struct cmd_config_mtu_result *res = parsed_result;
2046 if (res->value < RTE_ETHER_MIN_LEN) {
2047 printf("mtu cannot be less than %d\n", RTE_ETHER_MIN_LEN);
2050 port_mtu_set(res->port_id, res->value);
2053 cmdline_parse_token_string_t cmd_config_mtu_port =
2054 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, port,
2056 cmdline_parse_token_string_t cmd_config_mtu_keyword =
2057 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
2059 cmdline_parse_token_string_t cmd_config_mtu_mtu =
2060 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
2062 cmdline_parse_token_num_t cmd_config_mtu_port_id =
2063 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, port_id,
2065 cmdline_parse_token_num_t cmd_config_mtu_value =
2066 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, value,
2069 cmdline_parse_inst_t cmd_config_mtu = {
2070 .f = cmd_config_mtu_parsed,
2072 .help_str = "port config mtu <port_id> <value>",
2074 (void *)&cmd_config_mtu_port,
2075 (void *)&cmd_config_mtu_keyword,
2076 (void *)&cmd_config_mtu_mtu,
2077 (void *)&cmd_config_mtu_port_id,
2078 (void *)&cmd_config_mtu_value,
2083 /* *** configure rx mode *** */
2084 struct cmd_config_rx_mode_flag {
2085 cmdline_fixed_string_t port;
2086 cmdline_fixed_string_t keyword;
2087 cmdline_fixed_string_t all;
2088 cmdline_fixed_string_t name;
2089 cmdline_fixed_string_t value;
2093 cmd_config_rx_mode_flag_parsed(void *parsed_result,
2094 __rte_unused struct cmdline *cl,
2095 __rte_unused void *data)
2097 struct cmd_config_rx_mode_flag *res = parsed_result;
2099 if (!all_ports_stopped()) {
2100 printf("Please stop all ports first\n");
2104 if (!strcmp(res->name, "drop-en")) {
2105 if (!strcmp(res->value, "on"))
2107 else if (!strcmp(res->value, "off"))
2110 printf("Unknown parameter\n");
2114 printf("Unknown parameter\n");
2120 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2123 cmdline_parse_token_string_t cmd_config_rx_mode_flag_port =
2124 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, port, "port");
2125 cmdline_parse_token_string_t cmd_config_rx_mode_flag_keyword =
2126 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, keyword,
2128 cmdline_parse_token_string_t cmd_config_rx_mode_flag_all =
2129 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, all, "all");
2130 cmdline_parse_token_string_t cmd_config_rx_mode_flag_name =
2131 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, name,
2133 cmdline_parse_token_string_t cmd_config_rx_mode_flag_value =
2134 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, value,
2137 cmdline_parse_inst_t cmd_config_rx_mode_flag = {
2138 .f = cmd_config_rx_mode_flag_parsed,
2140 .help_str = "port config all drop-en on|off",
2142 (void *)&cmd_config_rx_mode_flag_port,
2143 (void *)&cmd_config_rx_mode_flag_keyword,
2144 (void *)&cmd_config_rx_mode_flag_all,
2145 (void *)&cmd_config_rx_mode_flag_name,
2146 (void *)&cmd_config_rx_mode_flag_value,
2151 /* *** configure rss *** */
2152 struct cmd_config_rss {
2153 cmdline_fixed_string_t port;
2154 cmdline_fixed_string_t keyword;
2155 cmdline_fixed_string_t all;
2156 cmdline_fixed_string_t name;
2157 cmdline_fixed_string_t value;
2161 cmd_config_rss_parsed(void *parsed_result,
2162 __rte_unused struct cmdline *cl,
2163 __rte_unused void *data)
2165 struct cmd_config_rss *res = parsed_result;
2166 struct rte_eth_rss_conf rss_conf = { .rss_key_len = 0, };
2167 struct rte_eth_dev_info dev_info = { .flow_type_rss_offloads = 0, };
2168 int use_default = 0;
2169 int all_updated = 1;
2174 if (!strcmp(res->value, "all"))
2175 rss_conf.rss_hf = ETH_RSS_ETH | ETH_RSS_VLAN | ETH_RSS_IP |
2176 ETH_RSS_TCP | ETH_RSS_UDP | ETH_RSS_SCTP |
2177 ETH_RSS_L2_PAYLOAD | ETH_RSS_L2TPV3 | ETH_RSS_ESP |
2178 ETH_RSS_AH | ETH_RSS_PFCP | ETH_RSS_GTPU |
2180 else if (!strcmp(res->value, "eth"))
2181 rss_conf.rss_hf = ETH_RSS_ETH;
2182 else if (!strcmp(res->value, "vlan"))
2183 rss_conf.rss_hf = ETH_RSS_VLAN;
2184 else if (!strcmp(res->value, "ip"))
2185 rss_conf.rss_hf = ETH_RSS_IP;
2186 else if (!strcmp(res->value, "udp"))
2187 rss_conf.rss_hf = ETH_RSS_UDP;
2188 else if (!strcmp(res->value, "tcp"))
2189 rss_conf.rss_hf = ETH_RSS_TCP;
2190 else if (!strcmp(res->value, "sctp"))
2191 rss_conf.rss_hf = ETH_RSS_SCTP;
2192 else if (!strcmp(res->value, "ether"))
2193 rss_conf.rss_hf = ETH_RSS_L2_PAYLOAD;
2194 else if (!strcmp(res->value, "port"))
2195 rss_conf.rss_hf = ETH_RSS_PORT;
2196 else if (!strcmp(res->value, "vxlan"))
2197 rss_conf.rss_hf = ETH_RSS_VXLAN;
2198 else if (!strcmp(res->value, "geneve"))
2199 rss_conf.rss_hf = ETH_RSS_GENEVE;
2200 else if (!strcmp(res->value, "nvgre"))
2201 rss_conf.rss_hf = ETH_RSS_NVGRE;
2202 else if (!strcmp(res->value, "l3-pre32"))
2203 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE32;
2204 else if (!strcmp(res->value, "l3-pre40"))
2205 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE40;
2206 else if (!strcmp(res->value, "l3-pre48"))
2207 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE48;
2208 else if (!strcmp(res->value, "l3-pre56"))
2209 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE56;
2210 else if (!strcmp(res->value, "l3-pre64"))
2211 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE64;
2212 else if (!strcmp(res->value, "l3-pre96"))
2213 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE96;
2214 else if (!strcmp(res->value, "l3-src-only"))
2215 rss_conf.rss_hf = ETH_RSS_L3_SRC_ONLY;
2216 else if (!strcmp(res->value, "l3-dst-only"))
2217 rss_conf.rss_hf = ETH_RSS_L3_DST_ONLY;
2218 else if (!strcmp(res->value, "l4-src-only"))
2219 rss_conf.rss_hf = ETH_RSS_L4_SRC_ONLY;
2220 else if (!strcmp(res->value, "l4-dst-only"))
2221 rss_conf.rss_hf = ETH_RSS_L4_DST_ONLY;
2222 else if (!strcmp(res->value, "l2-src-only"))
2223 rss_conf.rss_hf = ETH_RSS_L2_SRC_ONLY;
2224 else if (!strcmp(res->value, "l2-dst-only"))
2225 rss_conf.rss_hf = ETH_RSS_L2_DST_ONLY;
2226 else if (!strcmp(res->value, "l2tpv3"))
2227 rss_conf.rss_hf = ETH_RSS_L2TPV3;
2228 else if (!strcmp(res->value, "esp"))
2229 rss_conf.rss_hf = ETH_RSS_ESP;
2230 else if (!strcmp(res->value, "ah"))
2231 rss_conf.rss_hf = ETH_RSS_AH;
2232 else if (!strcmp(res->value, "pfcp"))
2233 rss_conf.rss_hf = ETH_RSS_PFCP;
2234 else if (!strcmp(res->value, "pppoe"))
2235 rss_conf.rss_hf = ETH_RSS_PPPOE;
2236 else if (!strcmp(res->value, "gtpu"))
2237 rss_conf.rss_hf = ETH_RSS_GTPU;
2238 else if (!strcmp(res->value, "ecpri"))
2239 rss_conf.rss_hf = ETH_RSS_ECPRI;
2240 else if (!strcmp(res->value, "mpls"))
2241 rss_conf.rss_hf = ETH_RSS_MPLS;
2242 else if (!strcmp(res->value, "none"))
2243 rss_conf.rss_hf = 0;
2244 else if (!strcmp(res->value, "level-default")) {
2245 rss_hf &= (~ETH_RSS_LEVEL_MASK);
2246 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_PMD_DEFAULT);
2247 } else if (!strcmp(res->value, "level-outer")) {
2248 rss_hf &= (~ETH_RSS_LEVEL_MASK);
2249 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_OUTERMOST);
2250 } else if (!strcmp(res->value, "level-inner")) {
2251 rss_hf &= (~ETH_RSS_LEVEL_MASK);
2252 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_INNERMOST);
2253 } else if (!strcmp(res->value, "default"))
2255 else if (isdigit(res->value[0]) && atoi(res->value) > 0 &&
2256 atoi(res->value) < 64)
2257 rss_conf.rss_hf = 1ULL << atoi(res->value);
2259 printf("Unknown parameter\n");
2262 rss_conf.rss_key = NULL;
2263 /* Update global configuration for RSS types. */
2264 RTE_ETH_FOREACH_DEV(i) {
2265 struct rte_eth_rss_conf local_rss_conf;
2267 ret = eth_dev_info_get_print_err(i, &dev_info);
2272 rss_conf.rss_hf = dev_info.flow_type_rss_offloads;
2274 local_rss_conf = rss_conf;
2275 local_rss_conf.rss_hf = rss_conf.rss_hf &
2276 dev_info.flow_type_rss_offloads;
2277 if (local_rss_conf.rss_hf != rss_conf.rss_hf) {
2278 printf("Port %u modified RSS hash function based on hardware support,"
2279 "requested:%#"PRIx64" configured:%#"PRIx64"\n",
2280 i, rss_conf.rss_hf, local_rss_conf.rss_hf);
2282 diag = rte_eth_dev_rss_hash_update(i, &local_rss_conf);
2285 printf("Configuration of RSS hash at ethernet port %d "
2286 "failed with error (%d): %s.\n",
2287 i, -diag, strerror(-diag));
2290 if (all_updated && !use_default) {
2291 rss_hf = rss_conf.rss_hf;
2292 printf("rss_hf %#"PRIx64"\n", rss_hf);
2296 cmdline_parse_token_string_t cmd_config_rss_port =
2297 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, port, "port");
2298 cmdline_parse_token_string_t cmd_config_rss_keyword =
2299 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, keyword, "config");
2300 cmdline_parse_token_string_t cmd_config_rss_all =
2301 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, all, "all");
2302 cmdline_parse_token_string_t cmd_config_rss_name =
2303 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, name, "rss");
2304 cmdline_parse_token_string_t cmd_config_rss_value =
2305 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, value, NULL);
2307 cmdline_parse_inst_t cmd_config_rss = {
2308 .f = cmd_config_rss_parsed,
2310 .help_str = "port config all rss "
2311 "all|default|eth|vlan|ip|tcp|udp|sctp|ether|port|vxlan|geneve|"
2312 "nvgre|vxlan-gpe|l2tpv3|esp|ah|pfcp|ecpri|mpls|none|level-default|"
2313 "level-outer|level-inner|<flowtype_id>",
2315 (void *)&cmd_config_rss_port,
2316 (void *)&cmd_config_rss_keyword,
2317 (void *)&cmd_config_rss_all,
2318 (void *)&cmd_config_rss_name,
2319 (void *)&cmd_config_rss_value,
2324 /* *** configure rss hash key *** */
2325 struct cmd_config_rss_hash_key {
2326 cmdline_fixed_string_t port;
2327 cmdline_fixed_string_t config;
2329 cmdline_fixed_string_t rss_hash_key;
2330 cmdline_fixed_string_t rss_type;
2331 cmdline_fixed_string_t key;
2335 hexa_digit_to_value(char hexa_digit)
2337 if ((hexa_digit >= '0') && (hexa_digit <= '9'))
2338 return (uint8_t) (hexa_digit - '0');
2339 if ((hexa_digit >= 'a') && (hexa_digit <= 'f'))
2340 return (uint8_t) ((hexa_digit - 'a') + 10);
2341 if ((hexa_digit >= 'A') && (hexa_digit <= 'F'))
2342 return (uint8_t) ((hexa_digit - 'A') + 10);
2343 /* Invalid hexa digit */
2348 parse_and_check_key_hexa_digit(char *key, int idx)
2352 hexa_v = hexa_digit_to_value(key[idx]);
2354 printf("invalid key: character %c at position %d is not a "
2355 "valid hexa digit\n", key[idx], idx);
2360 cmd_config_rss_hash_key_parsed(void *parsed_result,
2361 __rte_unused struct cmdline *cl,
2362 __rte_unused void *data)
2364 struct cmd_config_rss_hash_key *res = parsed_result;
2365 uint8_t hash_key[RSS_HASH_KEY_LENGTH];
2369 struct rte_eth_dev_info dev_info;
2370 uint8_t hash_key_size;
2374 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
2378 if (dev_info.hash_key_size > 0 &&
2379 dev_info.hash_key_size <= sizeof(hash_key))
2380 hash_key_size = dev_info.hash_key_size;
2382 printf("dev_info did not provide a valid hash key size\n");
2385 /* Check the length of the RSS hash key */
2386 key_len = strlen(res->key);
2387 if (key_len != (hash_key_size * 2)) {
2388 printf("key length: %d invalid - key must be a string of %d"
2389 " hexa-decimal numbers\n",
2390 (int) key_len, hash_key_size * 2);
2393 /* Translate RSS hash key into binary representation */
2394 for (i = 0; i < hash_key_size; i++) {
2395 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
2398 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
2401 hash_key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
2403 port_rss_hash_key_update(res->port_id, res->rss_type, hash_key,
2407 cmdline_parse_token_string_t cmd_config_rss_hash_key_port =
2408 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, port, "port");
2409 cmdline_parse_token_string_t cmd_config_rss_hash_key_config =
2410 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, config,
2412 cmdline_parse_token_num_t cmd_config_rss_hash_key_port_id =
2413 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_hash_key, port_id,
2415 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_hash_key =
2416 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key,
2417 rss_hash_key, "rss-hash-key");
2418 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_type =
2419 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, rss_type,
2420 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
2421 "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#"
2422 "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#"
2423 "ipv6-tcp-ex#ipv6-udp-ex#"
2424 "l3-src-only#l3-dst-only#l4-src-only#l4-dst-only#"
2425 "l2-src-only#l2-dst-only#s-vlan#c-vlan#"
2426 "l2tpv3#esp#ah#pfcp#pppoe#gtpu#ecpri");
2427 cmdline_parse_token_string_t cmd_config_rss_hash_key_value =
2428 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, key, NULL);
2430 cmdline_parse_inst_t cmd_config_rss_hash_key = {
2431 .f = cmd_config_rss_hash_key_parsed,
2433 .help_str = "port config <port_id> rss-hash-key "
2434 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
2435 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
2436 "l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex|"
2437 "l3-src-only|l3-dst-only|l4-src-only|l4-dst-only|"
2438 "l2-src-only|l2-dst-only|s-vlan|c-vlan|"
2439 "l2tpv3|esp|ah|pfcp|pppoe|gtpu|ecpri "
2440 "<string of hex digits (variable length, NIC dependent)>",
2442 (void *)&cmd_config_rss_hash_key_port,
2443 (void *)&cmd_config_rss_hash_key_config,
2444 (void *)&cmd_config_rss_hash_key_port_id,
2445 (void *)&cmd_config_rss_hash_key_rss_hash_key,
2446 (void *)&cmd_config_rss_hash_key_rss_type,
2447 (void *)&cmd_config_rss_hash_key_value,
2452 /* *** configure port rxq/txq ring size *** */
2453 struct cmd_config_rxtx_ring_size {
2454 cmdline_fixed_string_t port;
2455 cmdline_fixed_string_t config;
2457 cmdline_fixed_string_t rxtxq;
2459 cmdline_fixed_string_t rsize;
2464 cmd_config_rxtx_ring_size_parsed(void *parsed_result,
2465 __rte_unused struct cmdline *cl,
2466 __rte_unused void *data)
2468 struct cmd_config_rxtx_ring_size *res = parsed_result;
2469 struct rte_port *port;
2472 if (port_id_is_invalid(res->portid, ENABLED_WARN))
2475 if (res->portid == (portid_t)RTE_PORT_ALL) {
2476 printf("Invalid port id\n");
2480 port = &ports[res->portid];
2482 if (!strcmp(res->rxtxq, "rxq"))
2484 else if (!strcmp(res->rxtxq, "txq"))
2487 printf("Unknown parameter\n");
2491 if (isrx && rx_queue_id_is_invalid(res->qid))
2493 else if (!isrx && tx_queue_id_is_invalid(res->qid))
2496 if (isrx && res->size != 0 && res->size <= rx_free_thresh) {
2497 printf("Invalid rx ring_size, must > rx_free_thresh: %d\n",
2503 port->nb_rx_desc[res->qid] = res->size;
2505 port->nb_tx_desc[res->qid] = res->size;
2507 cmd_reconfig_device_queue(res->portid, 0, 1);
2510 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_port =
2511 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2513 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_config =
2514 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2516 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_portid =
2517 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size,
2518 portid, RTE_UINT16);
2519 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rxtxq =
2520 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2522 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_qid =
2523 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size,
2525 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rsize =
2526 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2527 rsize, "ring_size");
2528 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_size =
2529 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size,
2532 cmdline_parse_inst_t cmd_config_rxtx_ring_size = {
2533 .f = cmd_config_rxtx_ring_size_parsed,
2535 .help_str = "port config <port_id> rxq|txq <queue_id> ring_size <value>",
2537 (void *)&cmd_config_rxtx_ring_size_port,
2538 (void *)&cmd_config_rxtx_ring_size_config,
2539 (void *)&cmd_config_rxtx_ring_size_portid,
2540 (void *)&cmd_config_rxtx_ring_size_rxtxq,
2541 (void *)&cmd_config_rxtx_ring_size_qid,
2542 (void *)&cmd_config_rxtx_ring_size_rsize,
2543 (void *)&cmd_config_rxtx_ring_size_size,
2548 /* *** configure port rxq/txq start/stop *** */
2549 struct cmd_config_rxtx_queue {
2550 cmdline_fixed_string_t port;
2552 cmdline_fixed_string_t rxtxq;
2554 cmdline_fixed_string_t opname;
2558 cmd_config_rxtx_queue_parsed(void *parsed_result,
2559 __rte_unused struct cmdline *cl,
2560 __rte_unused void *data)
2562 struct cmd_config_rxtx_queue *res = parsed_result;
2567 if (test_done == 0) {
2568 printf("Please stop forwarding first\n");
2572 if (port_id_is_invalid(res->portid, ENABLED_WARN))
2575 if (port_is_started(res->portid) != 1) {
2576 printf("Please start port %u first\n", res->portid);
2580 if (!strcmp(res->rxtxq, "rxq"))
2582 else if (!strcmp(res->rxtxq, "txq"))
2585 printf("Unknown parameter\n");
2589 if (isrx && rx_queue_id_is_invalid(res->qid))
2591 else if (!isrx && tx_queue_id_is_invalid(res->qid))
2594 if (!strcmp(res->opname, "start"))
2596 else if (!strcmp(res->opname, "stop"))
2599 printf("Unknown parameter\n");
2603 if (isstart && isrx)
2604 ret = rte_eth_dev_rx_queue_start(res->portid, res->qid);
2605 else if (!isstart && isrx)
2606 ret = rte_eth_dev_rx_queue_stop(res->portid, res->qid);
2607 else if (isstart && !isrx)
2608 ret = rte_eth_dev_tx_queue_start(res->portid, res->qid);
2610 ret = rte_eth_dev_tx_queue_stop(res->portid, res->qid);
2612 if (ret == -ENOTSUP)
2613 printf("Function not supported in PMD driver\n");
2616 cmdline_parse_token_string_t cmd_config_rxtx_queue_port =
2617 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, port, "port");
2618 cmdline_parse_token_num_t cmd_config_rxtx_queue_portid =
2619 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, portid, RTE_UINT16);
2620 cmdline_parse_token_string_t cmd_config_rxtx_queue_rxtxq =
2621 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, rxtxq, "rxq#txq");
2622 cmdline_parse_token_num_t cmd_config_rxtx_queue_qid =
2623 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, qid, RTE_UINT16);
2624 cmdline_parse_token_string_t cmd_config_rxtx_queue_opname =
2625 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, opname,
2628 cmdline_parse_inst_t cmd_config_rxtx_queue = {
2629 .f = cmd_config_rxtx_queue_parsed,
2631 .help_str = "port <port_id> rxq|txq <queue_id> start|stop",
2633 (void *)&cmd_config_rxtx_queue_port,
2634 (void *)&cmd_config_rxtx_queue_portid,
2635 (void *)&cmd_config_rxtx_queue_rxtxq,
2636 (void *)&cmd_config_rxtx_queue_qid,
2637 (void *)&cmd_config_rxtx_queue_opname,
2642 /* *** configure port rxq/txq deferred start on/off *** */
2643 struct cmd_config_deferred_start_rxtx_queue {
2644 cmdline_fixed_string_t port;
2646 cmdline_fixed_string_t rxtxq;
2648 cmdline_fixed_string_t opname;
2649 cmdline_fixed_string_t state;
2653 cmd_config_deferred_start_rxtx_queue_parsed(void *parsed_result,
2654 __rte_unused struct cmdline *cl,
2655 __rte_unused void *data)
2657 struct cmd_config_deferred_start_rxtx_queue *res = parsed_result;
2658 struct rte_port *port;
2661 uint8_t needreconfig = 0;
2663 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
2666 if (port_is_started(res->port_id) != 0) {
2667 printf("Please stop port %u first\n", res->port_id);
2671 port = &ports[res->port_id];
2673 isrx = !strcmp(res->rxtxq, "rxq");
2675 if (isrx && rx_queue_id_is_invalid(res->qid))
2677 else if (!isrx && tx_queue_id_is_invalid(res->qid))
2680 ison = !strcmp(res->state, "on");
2682 if (isrx && port->rx_conf[res->qid].rx_deferred_start != ison) {
2683 port->rx_conf[res->qid].rx_deferred_start = ison;
2685 } else if (!isrx && port->tx_conf[res->qid].tx_deferred_start != ison) {
2686 port->tx_conf[res->qid].tx_deferred_start = ison;
2691 cmd_reconfig_device_queue(res->port_id, 0, 1);
2694 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_port =
2695 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2697 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_port_id =
2698 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2699 port_id, RTE_UINT16);
2700 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_rxtxq =
2701 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2703 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_qid =
2704 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2706 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_opname =
2707 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2708 opname, "deferred_start");
2709 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_state =
2710 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2713 cmdline_parse_inst_t cmd_config_deferred_start_rxtx_queue = {
2714 .f = cmd_config_deferred_start_rxtx_queue_parsed,
2716 .help_str = "port <port_id> rxq|txq <queue_id> deferred_start on|off",
2718 (void *)&cmd_config_deferred_start_rxtx_queue_port,
2719 (void *)&cmd_config_deferred_start_rxtx_queue_port_id,
2720 (void *)&cmd_config_deferred_start_rxtx_queue_rxtxq,
2721 (void *)&cmd_config_deferred_start_rxtx_queue_qid,
2722 (void *)&cmd_config_deferred_start_rxtx_queue_opname,
2723 (void *)&cmd_config_deferred_start_rxtx_queue_state,
2728 /* *** configure port rxq/txq setup *** */
2729 struct cmd_setup_rxtx_queue {
2730 cmdline_fixed_string_t port;
2732 cmdline_fixed_string_t rxtxq;
2734 cmdline_fixed_string_t setup;
2737 /* Common CLI fields for queue setup */
2738 cmdline_parse_token_string_t cmd_setup_rxtx_queue_port =
2739 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, port, "port");
2740 cmdline_parse_token_num_t cmd_setup_rxtx_queue_portid =
2741 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, portid, RTE_UINT16);
2742 cmdline_parse_token_string_t cmd_setup_rxtx_queue_rxtxq =
2743 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, rxtxq, "rxq#txq");
2744 cmdline_parse_token_num_t cmd_setup_rxtx_queue_qid =
2745 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, qid, RTE_UINT16);
2746 cmdline_parse_token_string_t cmd_setup_rxtx_queue_setup =
2747 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, setup, "setup");
2750 cmd_setup_rxtx_queue_parsed(
2751 void *parsed_result,
2752 __rte_unused struct cmdline *cl,
2753 __rte_unused void *data)
2755 struct cmd_setup_rxtx_queue *res = parsed_result;
2756 struct rte_port *port;
2757 struct rte_mempool *mp;
2758 unsigned int socket_id;
2762 if (port_id_is_invalid(res->portid, ENABLED_WARN))
2765 if (res->portid == (portid_t)RTE_PORT_ALL) {
2766 printf("Invalid port id\n");
2770 if (!strcmp(res->rxtxq, "rxq"))
2772 else if (!strcmp(res->rxtxq, "txq"))
2775 printf("Unknown parameter\n");
2779 if (isrx && rx_queue_id_is_invalid(res->qid)) {
2780 printf("Invalid rx queue\n");
2782 } else if (!isrx && tx_queue_id_is_invalid(res->qid)) {
2783 printf("Invalid tx queue\n");
2787 port = &ports[res->portid];
2789 socket_id = rxring_numa[res->portid];
2790 if (!numa_support || socket_id == NUMA_NO_CONFIG)
2791 socket_id = port->socket_id;
2793 mp = mbuf_pool_find(socket_id, 0);
2795 printf("Failed to setup RX queue: "
2796 "No mempool allocation"
2797 " on the socket %d\n",
2798 rxring_numa[res->portid]);
2801 ret = rx_queue_setup(res->portid,
2803 port->nb_rx_desc[res->qid],
2805 &port->rx_conf[res->qid],
2808 printf("Failed to setup RX queue\n");
2810 socket_id = txring_numa[res->portid];
2811 if (!numa_support || socket_id == NUMA_NO_CONFIG)
2812 socket_id = port->socket_id;
2814 ret = rte_eth_tx_queue_setup(res->portid,
2816 port->nb_tx_desc[res->qid],
2818 &port->tx_conf[res->qid]);
2820 printf("Failed to setup TX queue\n");
2824 cmdline_parse_inst_t cmd_setup_rxtx_queue = {
2825 .f = cmd_setup_rxtx_queue_parsed,
2827 .help_str = "port <port_id> rxq|txq <queue_idx> setup",
2829 (void *)&cmd_setup_rxtx_queue_port,
2830 (void *)&cmd_setup_rxtx_queue_portid,
2831 (void *)&cmd_setup_rxtx_queue_rxtxq,
2832 (void *)&cmd_setup_rxtx_queue_qid,
2833 (void *)&cmd_setup_rxtx_queue_setup,
2839 /* *** Configure RSS RETA *** */
2840 struct cmd_config_rss_reta {
2841 cmdline_fixed_string_t port;
2842 cmdline_fixed_string_t keyword;
2844 cmdline_fixed_string_t name;
2845 cmdline_fixed_string_t list_name;
2846 cmdline_fixed_string_t list_of_items;
2850 parse_reta_config(const char *str,
2851 struct rte_eth_rss_reta_entry64 *reta_conf,
2852 uint16_t nb_entries)
2856 uint16_t hash_index, idx, shift;
2859 const char *p, *p0 = str;
2866 unsigned long int_fld[_NUM_FLD];
2867 char *str_fld[_NUM_FLD];
2869 while ((p = strchr(p0,'(')) != NULL) {
2871 if((p0 = strchr(p,')')) == NULL)
2875 if(size >= sizeof(s))
2878 snprintf(s, sizeof(s), "%.*s", size, p);
2879 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
2881 for (i = 0; i < _NUM_FLD; i++) {
2883 int_fld[i] = strtoul(str_fld[i], &end, 0);
2884 if (errno != 0 || end == str_fld[i] ||
2889 hash_index = (uint16_t)int_fld[FLD_HASH_INDEX];
2890 nb_queue = (uint16_t)int_fld[FLD_QUEUE];
2892 if (hash_index >= nb_entries) {
2893 printf("Invalid RETA hash index=%d\n", hash_index);
2897 idx = hash_index / RTE_RETA_GROUP_SIZE;
2898 shift = hash_index % RTE_RETA_GROUP_SIZE;
2899 reta_conf[idx].mask |= (1ULL << shift);
2900 reta_conf[idx].reta[shift] = nb_queue;
2907 cmd_set_rss_reta_parsed(void *parsed_result,
2908 __rte_unused struct cmdline *cl,
2909 __rte_unused void *data)
2912 struct rte_eth_dev_info dev_info;
2913 struct rte_eth_rss_reta_entry64 reta_conf[8];
2914 struct cmd_config_rss_reta *res = parsed_result;
2916 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
2920 if (dev_info.reta_size == 0) {
2921 printf("Redirection table size is 0 which is "
2922 "invalid for RSS\n");
2925 printf("The reta size of port %d is %u\n",
2926 res->port_id, dev_info.reta_size);
2927 if (dev_info.reta_size > ETH_RSS_RETA_SIZE_512) {
2928 printf("Currently do not support more than %u entries of "
2929 "redirection table\n", ETH_RSS_RETA_SIZE_512);
2933 memset(reta_conf, 0, sizeof(reta_conf));
2934 if (!strcmp(res->list_name, "reta")) {
2935 if (parse_reta_config(res->list_of_items, reta_conf,
2936 dev_info.reta_size)) {
2937 printf("Invalid RSS Redirection Table "
2938 "config entered\n");
2941 ret = rte_eth_dev_rss_reta_update(res->port_id,
2942 reta_conf, dev_info.reta_size);
2944 printf("Bad redirection table parameter, "
2945 "return code = %d \n", ret);
2949 cmdline_parse_token_string_t cmd_config_rss_reta_port =
2950 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, port, "port");
2951 cmdline_parse_token_string_t cmd_config_rss_reta_keyword =
2952 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, keyword, "config");
2953 cmdline_parse_token_num_t cmd_config_rss_reta_port_id =
2954 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_reta, port_id, RTE_UINT16);
2955 cmdline_parse_token_string_t cmd_config_rss_reta_name =
2956 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, name, "rss");
2957 cmdline_parse_token_string_t cmd_config_rss_reta_list_name =
2958 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_name, "reta");
2959 cmdline_parse_token_string_t cmd_config_rss_reta_list_of_items =
2960 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_of_items,
2962 cmdline_parse_inst_t cmd_config_rss_reta = {
2963 .f = cmd_set_rss_reta_parsed,
2965 .help_str = "port config <port_id> rss reta <hash,queue[,hash,queue]*>",
2967 (void *)&cmd_config_rss_reta_port,
2968 (void *)&cmd_config_rss_reta_keyword,
2969 (void *)&cmd_config_rss_reta_port_id,
2970 (void *)&cmd_config_rss_reta_name,
2971 (void *)&cmd_config_rss_reta_list_name,
2972 (void *)&cmd_config_rss_reta_list_of_items,
2977 /* *** SHOW PORT RETA INFO *** */
2978 struct cmd_showport_reta {
2979 cmdline_fixed_string_t show;
2980 cmdline_fixed_string_t port;
2982 cmdline_fixed_string_t rss;
2983 cmdline_fixed_string_t reta;
2985 cmdline_fixed_string_t list_of_items;
2989 showport_parse_reta_config(struct rte_eth_rss_reta_entry64 *conf,
2990 uint16_t nb_entries,
2994 const char *p, *p0 = str;
2999 uint16_t num = (nb_entries + RTE_RETA_GROUP_SIZE - 1) /
3000 RTE_RETA_GROUP_SIZE;
3003 p = strchr(p0, '(');
3007 p0 = strchr(p, ')');
3011 if (size >= sizeof(s)) {
3012 printf("The string size exceeds the internal buffer size\n");
3015 snprintf(s, sizeof(s), "%.*s", size, p);
3016 ret = rte_strsplit(s, sizeof(s), str_fld, num, ',');
3017 if (ret <= 0 || ret != num) {
3018 printf("The bits of masks do not match the number of "
3019 "reta entries: %u\n", num);
3022 for (i = 0; i < ret; i++)
3023 conf[i].mask = (uint64_t)strtoul(str_fld[i], &end, 0);
3029 cmd_showport_reta_parsed(void *parsed_result,
3030 __rte_unused struct cmdline *cl,
3031 __rte_unused void *data)
3033 struct cmd_showport_reta *res = parsed_result;
3034 struct rte_eth_rss_reta_entry64 reta_conf[8];
3035 struct rte_eth_dev_info dev_info;
3036 uint16_t max_reta_size;
3039 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
3043 max_reta_size = RTE_MIN(dev_info.reta_size, ETH_RSS_RETA_SIZE_512);
3044 if (res->size == 0 || res->size > max_reta_size) {
3045 printf("Invalid redirection table size: %u (1-%u)\n",
3046 res->size, max_reta_size);
3050 memset(reta_conf, 0, sizeof(reta_conf));
3051 if (showport_parse_reta_config(reta_conf, res->size,
3052 res->list_of_items) < 0) {
3053 printf("Invalid string: %s for reta masks\n",
3054 res->list_of_items);
3057 port_rss_reta_info(res->port_id, reta_conf, res->size);
3060 cmdline_parse_token_string_t cmd_showport_reta_show =
3061 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, show, "show");
3062 cmdline_parse_token_string_t cmd_showport_reta_port =
3063 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, port, "port");
3064 cmdline_parse_token_num_t cmd_showport_reta_port_id =
3065 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, port_id, RTE_UINT16);
3066 cmdline_parse_token_string_t cmd_showport_reta_rss =
3067 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, rss, "rss");
3068 cmdline_parse_token_string_t cmd_showport_reta_reta =
3069 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, reta, "reta");
3070 cmdline_parse_token_num_t cmd_showport_reta_size =
3071 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, size, RTE_UINT16);
3072 cmdline_parse_token_string_t cmd_showport_reta_list_of_items =
3073 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta,
3074 list_of_items, NULL);
3076 cmdline_parse_inst_t cmd_showport_reta = {
3077 .f = cmd_showport_reta_parsed,
3079 .help_str = "show port <port_id> rss reta <size> <mask0[,mask1]*>",
3081 (void *)&cmd_showport_reta_show,
3082 (void *)&cmd_showport_reta_port,
3083 (void *)&cmd_showport_reta_port_id,
3084 (void *)&cmd_showport_reta_rss,
3085 (void *)&cmd_showport_reta_reta,
3086 (void *)&cmd_showport_reta_size,
3087 (void *)&cmd_showport_reta_list_of_items,
3092 /* *** Show RSS hash configuration *** */
3093 struct cmd_showport_rss_hash {
3094 cmdline_fixed_string_t show;
3095 cmdline_fixed_string_t port;
3097 cmdline_fixed_string_t rss_hash;
3098 cmdline_fixed_string_t rss_type;
3099 cmdline_fixed_string_t key; /* optional argument */
3102 static void cmd_showport_rss_hash_parsed(void *parsed_result,
3103 __rte_unused struct cmdline *cl,
3106 struct cmd_showport_rss_hash *res = parsed_result;
3108 port_rss_hash_conf_show(res->port_id, show_rss_key != NULL);
3111 cmdline_parse_token_string_t cmd_showport_rss_hash_show =
3112 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, show, "show");
3113 cmdline_parse_token_string_t cmd_showport_rss_hash_port =
3114 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, port, "port");
3115 cmdline_parse_token_num_t cmd_showport_rss_hash_port_id =
3116 TOKEN_NUM_INITIALIZER(struct cmd_showport_rss_hash, port_id,
3118 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash =
3119 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_hash,
3121 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_key =
3122 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, key, "key");
3124 cmdline_parse_inst_t cmd_showport_rss_hash = {
3125 .f = cmd_showport_rss_hash_parsed,
3127 .help_str = "show port <port_id> rss-hash",
3129 (void *)&cmd_showport_rss_hash_show,
3130 (void *)&cmd_showport_rss_hash_port,
3131 (void *)&cmd_showport_rss_hash_port_id,
3132 (void *)&cmd_showport_rss_hash_rss_hash,
3137 cmdline_parse_inst_t cmd_showport_rss_hash_key = {
3138 .f = cmd_showport_rss_hash_parsed,
3140 .help_str = "show port <port_id> rss-hash key",
3142 (void *)&cmd_showport_rss_hash_show,
3143 (void *)&cmd_showport_rss_hash_port,
3144 (void *)&cmd_showport_rss_hash_port_id,
3145 (void *)&cmd_showport_rss_hash_rss_hash,
3146 (void *)&cmd_showport_rss_hash_rss_key,
3151 /* *** Configure DCB *** */
3152 struct cmd_config_dcb {
3153 cmdline_fixed_string_t port;
3154 cmdline_fixed_string_t config;
3156 cmdline_fixed_string_t dcb;
3157 cmdline_fixed_string_t vt;
3158 cmdline_fixed_string_t vt_en;
3160 cmdline_fixed_string_t pfc;
3161 cmdline_fixed_string_t pfc_en;
3165 cmd_config_dcb_parsed(void *parsed_result,
3166 __rte_unused struct cmdline *cl,
3167 __rte_unused void *data)
3169 struct cmd_config_dcb *res = parsed_result;
3170 portid_t port_id = res->port_id;
3171 struct rte_port *port;
3175 port = &ports[port_id];
3176 /** Check if the port is not started **/
3177 if (port->port_status != RTE_PORT_STOPPED) {
3178 printf("Please stop port %d first\n", port_id);
3182 if ((res->num_tcs != ETH_4_TCS) && (res->num_tcs != ETH_8_TCS)) {
3183 printf("The invalid number of traffic class,"
3184 " only 4 or 8 allowed.\n");
3188 if (nb_fwd_lcores < res->num_tcs) {
3189 printf("nb_cores shouldn't be less than number of TCs.\n");
3192 if (!strncmp(res->pfc_en, "on", 2))
3197 /* DCB in VT mode */
3198 if (!strncmp(res->vt_en, "on", 2))
3199 ret = init_port_dcb_config(port_id, DCB_VT_ENABLED,
3200 (enum rte_eth_nb_tcs)res->num_tcs,
3203 ret = init_port_dcb_config(port_id, DCB_ENABLED,
3204 (enum rte_eth_nb_tcs)res->num_tcs,
3209 printf("Cannot initialize network ports.\n");
3213 cmd_reconfig_device_queue(port_id, 1, 1);
3216 cmdline_parse_token_string_t cmd_config_dcb_port =
3217 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, port, "port");
3218 cmdline_parse_token_string_t cmd_config_dcb_config =
3219 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, config, "config");
3220 cmdline_parse_token_num_t cmd_config_dcb_port_id =
3221 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, port_id, RTE_UINT16);
3222 cmdline_parse_token_string_t cmd_config_dcb_dcb =
3223 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, dcb, "dcb");
3224 cmdline_parse_token_string_t cmd_config_dcb_vt =
3225 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt, "vt");
3226 cmdline_parse_token_string_t cmd_config_dcb_vt_en =
3227 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt_en, "on#off");
3228 cmdline_parse_token_num_t cmd_config_dcb_num_tcs =
3229 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, num_tcs, RTE_UINT8);
3230 cmdline_parse_token_string_t cmd_config_dcb_pfc=
3231 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc, "pfc");
3232 cmdline_parse_token_string_t cmd_config_dcb_pfc_en =
3233 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc_en, "on#off");
3235 cmdline_parse_inst_t cmd_config_dcb = {
3236 .f = cmd_config_dcb_parsed,
3238 .help_str = "port config <port-id> dcb vt on|off <num_tcs> pfc on|off",
3240 (void *)&cmd_config_dcb_port,
3241 (void *)&cmd_config_dcb_config,
3242 (void *)&cmd_config_dcb_port_id,
3243 (void *)&cmd_config_dcb_dcb,
3244 (void *)&cmd_config_dcb_vt,
3245 (void *)&cmd_config_dcb_vt_en,
3246 (void *)&cmd_config_dcb_num_tcs,
3247 (void *)&cmd_config_dcb_pfc,
3248 (void *)&cmd_config_dcb_pfc_en,
3253 /* *** configure number of packets per burst *** */
3254 struct cmd_config_burst {
3255 cmdline_fixed_string_t port;
3256 cmdline_fixed_string_t keyword;
3257 cmdline_fixed_string_t all;
3258 cmdline_fixed_string_t name;
3263 cmd_config_burst_parsed(void *parsed_result,
3264 __rte_unused struct cmdline *cl,
3265 __rte_unused void *data)
3267 struct cmd_config_burst *res = parsed_result;
3268 struct rte_eth_dev_info dev_info;
3269 uint16_t rec_nb_pkts;
3272 if (!all_ports_stopped()) {
3273 printf("Please stop all ports first\n");
3277 if (!strcmp(res->name, "burst")) {
3278 if (res->value == 0) {
3279 /* If user gives a value of zero, query the PMD for
3280 * its recommended Rx burst size. Testpmd uses a single
3281 * size for all ports, so assume all ports are the same
3282 * NIC model and use the values from Port 0.
3284 ret = eth_dev_info_get_print_err(0, &dev_info);
3288 rec_nb_pkts = dev_info.default_rxportconf.burst_size;
3290 if (rec_nb_pkts == 0) {
3291 printf("PMD does not recommend a burst size.\n"
3292 "User provided value must be between"
3293 " 1 and %d\n", MAX_PKT_BURST);
3295 } else if (rec_nb_pkts > MAX_PKT_BURST) {
3296 printf("PMD recommended burst size of %d"
3297 " exceeds maximum value of %d\n",
3298 rec_nb_pkts, MAX_PKT_BURST);
3301 printf("Using PMD-provided burst value of %d\n",
3303 nb_pkt_per_burst = rec_nb_pkts;
3304 } else if (res->value > MAX_PKT_BURST) {
3305 printf("burst must be >= 1 && <= %d\n", MAX_PKT_BURST);
3308 nb_pkt_per_burst = res->value;
3310 printf("Unknown parameter\n");
3316 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3319 cmdline_parse_token_string_t cmd_config_burst_port =
3320 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, port, "port");
3321 cmdline_parse_token_string_t cmd_config_burst_keyword =
3322 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, keyword, "config");
3323 cmdline_parse_token_string_t cmd_config_burst_all =
3324 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, all, "all");
3325 cmdline_parse_token_string_t cmd_config_burst_name =
3326 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, name, "burst");
3327 cmdline_parse_token_num_t cmd_config_burst_value =
3328 TOKEN_NUM_INITIALIZER(struct cmd_config_burst, value, RTE_UINT16);
3330 cmdline_parse_inst_t cmd_config_burst = {
3331 .f = cmd_config_burst_parsed,
3333 .help_str = "port config all burst <value>",
3335 (void *)&cmd_config_burst_port,
3336 (void *)&cmd_config_burst_keyword,
3337 (void *)&cmd_config_burst_all,
3338 (void *)&cmd_config_burst_name,
3339 (void *)&cmd_config_burst_value,
3344 /* *** configure rx/tx queues *** */
3345 struct cmd_config_thresh {
3346 cmdline_fixed_string_t port;
3347 cmdline_fixed_string_t keyword;
3348 cmdline_fixed_string_t all;
3349 cmdline_fixed_string_t name;
3354 cmd_config_thresh_parsed(void *parsed_result,
3355 __rte_unused struct cmdline *cl,
3356 __rte_unused void *data)
3358 struct cmd_config_thresh *res = parsed_result;
3360 if (!all_ports_stopped()) {
3361 printf("Please stop all ports first\n");
3365 if (!strcmp(res->name, "txpt"))
3366 tx_pthresh = res->value;
3367 else if(!strcmp(res->name, "txht"))
3368 tx_hthresh = res->value;
3369 else if(!strcmp(res->name, "txwt"))
3370 tx_wthresh = res->value;
3371 else if(!strcmp(res->name, "rxpt"))
3372 rx_pthresh = res->value;
3373 else if(!strcmp(res->name, "rxht"))
3374 rx_hthresh = res->value;
3375 else if(!strcmp(res->name, "rxwt"))
3376 rx_wthresh = res->value;
3378 printf("Unknown parameter\n");
3384 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3387 cmdline_parse_token_string_t cmd_config_thresh_port =
3388 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, port, "port");
3389 cmdline_parse_token_string_t cmd_config_thresh_keyword =
3390 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, keyword, "config");
3391 cmdline_parse_token_string_t cmd_config_thresh_all =
3392 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, all, "all");
3393 cmdline_parse_token_string_t cmd_config_thresh_name =
3394 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, name,
3395 "txpt#txht#txwt#rxpt#rxht#rxwt");
3396 cmdline_parse_token_num_t cmd_config_thresh_value =
3397 TOKEN_NUM_INITIALIZER(struct cmd_config_thresh, value, RTE_UINT8);
3399 cmdline_parse_inst_t cmd_config_thresh = {
3400 .f = cmd_config_thresh_parsed,
3402 .help_str = "port config all txpt|txht|txwt|rxpt|rxht|rxwt <value>",
3404 (void *)&cmd_config_thresh_port,
3405 (void *)&cmd_config_thresh_keyword,
3406 (void *)&cmd_config_thresh_all,
3407 (void *)&cmd_config_thresh_name,
3408 (void *)&cmd_config_thresh_value,
3413 /* *** configure free/rs threshold *** */
3414 struct cmd_config_threshold {
3415 cmdline_fixed_string_t port;
3416 cmdline_fixed_string_t keyword;
3417 cmdline_fixed_string_t all;
3418 cmdline_fixed_string_t name;
3423 cmd_config_threshold_parsed(void *parsed_result,
3424 __rte_unused struct cmdline *cl,
3425 __rte_unused void *data)
3427 struct cmd_config_threshold *res = parsed_result;
3429 if (!all_ports_stopped()) {
3430 printf("Please stop all ports first\n");
3434 if (!strcmp(res->name, "txfreet"))
3435 tx_free_thresh = res->value;
3436 else if (!strcmp(res->name, "txrst"))
3437 tx_rs_thresh = res->value;
3438 else if (!strcmp(res->name, "rxfreet"))
3439 rx_free_thresh = res->value;
3441 printf("Unknown parameter\n");
3447 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3450 cmdline_parse_token_string_t cmd_config_threshold_port =
3451 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, port, "port");
3452 cmdline_parse_token_string_t cmd_config_threshold_keyword =
3453 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, keyword,
3455 cmdline_parse_token_string_t cmd_config_threshold_all =
3456 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, all, "all");
3457 cmdline_parse_token_string_t cmd_config_threshold_name =
3458 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, name,
3459 "txfreet#txrst#rxfreet");
3460 cmdline_parse_token_num_t cmd_config_threshold_value =
3461 TOKEN_NUM_INITIALIZER(struct cmd_config_threshold, value, RTE_UINT16);
3463 cmdline_parse_inst_t cmd_config_threshold = {
3464 .f = cmd_config_threshold_parsed,
3466 .help_str = "port config all txfreet|txrst|rxfreet <value>",
3468 (void *)&cmd_config_threshold_port,
3469 (void *)&cmd_config_threshold_keyword,
3470 (void *)&cmd_config_threshold_all,
3471 (void *)&cmd_config_threshold_name,
3472 (void *)&cmd_config_threshold_value,
3478 struct cmd_stop_result {
3479 cmdline_fixed_string_t stop;
3482 static void cmd_stop_parsed(__rte_unused void *parsed_result,
3483 __rte_unused struct cmdline *cl,
3484 __rte_unused void *data)
3486 stop_packet_forwarding();
3489 cmdline_parse_token_string_t cmd_stop_stop =
3490 TOKEN_STRING_INITIALIZER(struct cmd_stop_result, stop, "stop");
3492 cmdline_parse_inst_t cmd_stop = {
3493 .f = cmd_stop_parsed,
3495 .help_str = "stop: Stop packet forwarding",
3497 (void *)&cmd_stop_stop,
3502 /* *** SET CORELIST and PORTLIST CONFIGURATION *** */
3505 parse_item_list(char* str, const char* item_name, unsigned int max_items,
3506 unsigned int *parsed_items, int check_unique_values)
3508 unsigned int nb_item;
3516 * First parse all items in the list and store their value.
3521 for (i = 0; i < strnlen(str, STR_TOKEN_SIZE); i++) {
3523 if ((c >= '0') && (c <= '9')) {
3524 value = (unsigned int) (value * 10 + (c - '0'));
3529 printf("character %c is not a decimal digit\n", c);
3533 printf("No valid value before comma\n");
3536 if (nb_item < max_items) {
3537 parsed_items[nb_item] = value;
3543 if (nb_item >= max_items) {
3544 printf("Number of %s = %u > %u (maximum items)\n",
3545 item_name, nb_item + 1, max_items);
3548 parsed_items[nb_item++] = value;
3549 if (! check_unique_values)
3553 * Then, check that all values in the list are differents.
3554 * No optimization here...
3556 for (i = 0; i < nb_item; i++) {
3557 for (j = i + 1; j < nb_item; j++) {
3558 if (parsed_items[j] == parsed_items[i]) {
3559 printf("duplicated %s %u at index %u and %u\n",
3560 item_name, parsed_items[i], i, j);
3568 struct cmd_set_list_result {
3569 cmdline_fixed_string_t cmd_keyword;
3570 cmdline_fixed_string_t list_name;
3571 cmdline_fixed_string_t list_of_items;
3574 static void cmd_set_list_parsed(void *parsed_result,
3575 __rte_unused struct cmdline *cl,
3576 __rte_unused void *data)
3578 struct cmd_set_list_result *res;
3580 unsigned int lcorelist[RTE_MAX_LCORE];
3581 unsigned int portlist[RTE_MAX_ETHPORTS];
3583 unsigned int nb_item;
3585 if (test_done == 0) {
3586 printf("Please stop forwarding first\n");
3590 res = parsed_result;
3591 if (!strcmp(res->list_name, "corelist")) {
3592 nb_item = parse_item_list(res->list_of_items, "core",
3594 parsed_items.lcorelist, 1);
3596 set_fwd_lcores_list(parsed_items.lcorelist, nb_item);
3601 if (!strcmp(res->list_name, "portlist")) {
3602 nb_item = parse_item_list(res->list_of_items, "port",
3604 parsed_items.portlist, 1);
3606 set_fwd_ports_list(parsed_items.portlist, nb_item);
3612 cmdline_parse_token_string_t cmd_set_list_keyword =
3613 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, cmd_keyword,
3615 cmdline_parse_token_string_t cmd_set_list_name =
3616 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_name,
3617 "corelist#portlist");
3618 cmdline_parse_token_string_t cmd_set_list_of_items =
3619 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_of_items,
3622 cmdline_parse_inst_t cmd_set_fwd_list = {
3623 .f = cmd_set_list_parsed,
3625 .help_str = "set corelist|portlist <list0[,list1]*>",
3627 (void *)&cmd_set_list_keyword,
3628 (void *)&cmd_set_list_name,
3629 (void *)&cmd_set_list_of_items,
3634 /* *** SET COREMASK and PORTMASK CONFIGURATION *** */
3636 struct cmd_setmask_result {
3637 cmdline_fixed_string_t set;
3638 cmdline_fixed_string_t mask;
3642 static void cmd_set_mask_parsed(void *parsed_result,
3643 __rte_unused struct cmdline *cl,
3644 __rte_unused void *data)
3646 struct cmd_setmask_result *res = parsed_result;
3648 if (test_done == 0) {
3649 printf("Please stop forwarding first\n");
3652 if (!strcmp(res->mask, "coremask")) {
3653 set_fwd_lcores_mask(res->hexavalue);
3655 } else if (!strcmp(res->mask, "portmask")) {
3656 set_fwd_ports_mask(res->hexavalue);
3661 cmdline_parse_token_string_t cmd_setmask_set =
3662 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, set, "set");
3663 cmdline_parse_token_string_t cmd_setmask_mask =
3664 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, mask,
3665 "coremask#portmask");
3666 cmdline_parse_token_num_t cmd_setmask_value =
3667 TOKEN_NUM_INITIALIZER(struct cmd_setmask_result, hexavalue, RTE_UINT64);
3669 cmdline_parse_inst_t cmd_set_fwd_mask = {
3670 .f = cmd_set_mask_parsed,
3672 .help_str = "set coremask|portmask <hexadecimal value>",
3674 (void *)&cmd_setmask_set,
3675 (void *)&cmd_setmask_mask,
3676 (void *)&cmd_setmask_value,
3682 * SET NBPORT, NBCORE, PACKET BURST, and VERBOSE LEVEL CONFIGURATION
3684 struct cmd_set_result {
3685 cmdline_fixed_string_t set;
3686 cmdline_fixed_string_t what;
3690 static void cmd_set_parsed(void *parsed_result,
3691 __rte_unused struct cmdline *cl,
3692 __rte_unused void *data)
3694 struct cmd_set_result *res = parsed_result;
3695 if (!strcmp(res->what, "nbport")) {
3696 set_fwd_ports_number(res->value);
3698 } else if (!strcmp(res->what, "nbcore")) {
3699 set_fwd_lcores_number(res->value);
3701 } else if (!strcmp(res->what, "burst"))
3702 set_nb_pkt_per_burst(res->value);
3703 else if (!strcmp(res->what, "verbose"))
3704 set_verbose_level(res->value);
3707 cmdline_parse_token_string_t cmd_set_set =
3708 TOKEN_STRING_INITIALIZER(struct cmd_set_result, set, "set");
3709 cmdline_parse_token_string_t cmd_set_what =
3710 TOKEN_STRING_INITIALIZER(struct cmd_set_result, what,
3711 "nbport#nbcore#burst#verbose");
3712 cmdline_parse_token_num_t cmd_set_value =
3713 TOKEN_NUM_INITIALIZER(struct cmd_set_result, value, RTE_UINT16);
3715 cmdline_parse_inst_t cmd_set_numbers = {
3716 .f = cmd_set_parsed,
3718 .help_str = "set nbport|nbcore|burst|verbose <value>",
3720 (void *)&cmd_set_set,
3721 (void *)&cmd_set_what,
3722 (void *)&cmd_set_value,
3727 /* *** SET LOG LEVEL CONFIGURATION *** */
3729 struct cmd_set_log_result {
3730 cmdline_fixed_string_t set;
3731 cmdline_fixed_string_t log;
3732 cmdline_fixed_string_t type;
3737 cmd_set_log_parsed(void *parsed_result,
3738 __rte_unused struct cmdline *cl,
3739 __rte_unused void *data)
3741 struct cmd_set_log_result *res;
3744 res = parsed_result;
3745 if (!strcmp(res->type, "global"))
3746 rte_log_set_global_level(res->level);
3748 ret = rte_log_set_level_regexp(res->type, res->level);
3750 printf("Unable to set log level\n");
3754 cmdline_parse_token_string_t cmd_set_log_set =
3755 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, set, "set");
3756 cmdline_parse_token_string_t cmd_set_log_log =
3757 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, log, "log");
3758 cmdline_parse_token_string_t cmd_set_log_type =
3759 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, type, NULL);
3760 cmdline_parse_token_num_t cmd_set_log_level =
3761 TOKEN_NUM_INITIALIZER(struct cmd_set_log_result, level, RTE_UINT32);
3763 cmdline_parse_inst_t cmd_set_log = {
3764 .f = cmd_set_log_parsed,
3766 .help_str = "set log global|<type> <level>",
3768 (void *)&cmd_set_log_set,
3769 (void *)&cmd_set_log_log,
3770 (void *)&cmd_set_log_type,
3771 (void *)&cmd_set_log_level,
3776 /* *** SET SEGMENT OFFSETS OF RX PACKETS SPLIT *** */
3778 struct cmd_set_rxoffs_result {
3779 cmdline_fixed_string_t cmd_keyword;
3780 cmdline_fixed_string_t rxoffs;
3781 cmdline_fixed_string_t seg_offsets;
3785 cmd_set_rxoffs_parsed(void *parsed_result,
3786 __rte_unused struct cmdline *cl,
3787 __rte_unused void *data)
3789 struct cmd_set_rxoffs_result *res;
3790 unsigned int seg_offsets[MAX_SEGS_BUFFER_SPLIT];
3791 unsigned int nb_segs;
3793 res = parsed_result;
3794 nb_segs = parse_item_list(res->seg_offsets, "segment offsets",
3795 MAX_SEGS_BUFFER_SPLIT, seg_offsets, 0);
3797 set_rx_pkt_offsets(seg_offsets, nb_segs);
3798 cmd_reconfig_device_queue(RTE_PORT_ALL, 0, 1);
3801 cmdline_parse_token_string_t cmd_set_rxoffs_keyword =
3802 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result,
3803 cmd_keyword, "set");
3804 cmdline_parse_token_string_t cmd_set_rxoffs_name =
3805 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result,
3807 cmdline_parse_token_string_t cmd_set_rxoffs_offsets =
3808 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result,
3811 cmdline_parse_inst_t cmd_set_rxoffs = {
3812 .f = cmd_set_rxoffs_parsed,
3814 .help_str = "set rxoffs <len0[,len1]*>",
3816 (void *)&cmd_set_rxoffs_keyword,
3817 (void *)&cmd_set_rxoffs_name,
3818 (void *)&cmd_set_rxoffs_offsets,
3823 /* *** SET SEGMENT LENGTHS OF RX PACKETS SPLIT *** */
3825 struct cmd_set_rxpkts_result {
3826 cmdline_fixed_string_t cmd_keyword;
3827 cmdline_fixed_string_t rxpkts;
3828 cmdline_fixed_string_t seg_lengths;
3832 cmd_set_rxpkts_parsed(void *parsed_result,
3833 __rte_unused struct cmdline *cl,
3834 __rte_unused void *data)
3836 struct cmd_set_rxpkts_result *res;
3837 unsigned int seg_lengths[MAX_SEGS_BUFFER_SPLIT];
3838 unsigned int nb_segs;
3840 res = parsed_result;
3841 nb_segs = parse_item_list(res->seg_lengths, "segment lengths",
3842 MAX_SEGS_BUFFER_SPLIT, seg_lengths, 0);
3844 set_rx_pkt_segments(seg_lengths, nb_segs);
3845 cmd_reconfig_device_queue(RTE_PORT_ALL, 0, 1);
3848 cmdline_parse_token_string_t cmd_set_rxpkts_keyword =
3849 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result,
3850 cmd_keyword, "set");
3851 cmdline_parse_token_string_t cmd_set_rxpkts_name =
3852 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result,
3854 cmdline_parse_token_string_t cmd_set_rxpkts_lengths =
3855 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result,
3858 cmdline_parse_inst_t cmd_set_rxpkts = {
3859 .f = cmd_set_rxpkts_parsed,
3861 .help_str = "set rxpkts <len0[,len1]*>",
3863 (void *)&cmd_set_rxpkts_keyword,
3864 (void *)&cmd_set_rxpkts_name,
3865 (void *)&cmd_set_rxpkts_lengths,
3870 /* *** SET SEGMENT LENGTHS OF TXONLY PACKETS *** */
3872 struct cmd_set_txpkts_result {
3873 cmdline_fixed_string_t cmd_keyword;
3874 cmdline_fixed_string_t txpkts;
3875 cmdline_fixed_string_t seg_lengths;
3879 cmd_set_txpkts_parsed(void *parsed_result,
3880 __rte_unused struct cmdline *cl,
3881 __rte_unused void *data)
3883 struct cmd_set_txpkts_result *res;
3884 unsigned seg_lengths[RTE_MAX_SEGS_PER_PKT];
3885 unsigned int nb_segs;
3887 res = parsed_result;
3888 nb_segs = parse_item_list(res->seg_lengths, "segment lengths",
3889 RTE_MAX_SEGS_PER_PKT, seg_lengths, 0);
3891 set_tx_pkt_segments(seg_lengths, nb_segs);
3894 cmdline_parse_token_string_t cmd_set_txpkts_keyword =
3895 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
3896 cmd_keyword, "set");
3897 cmdline_parse_token_string_t cmd_set_txpkts_name =
3898 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
3900 cmdline_parse_token_string_t cmd_set_txpkts_lengths =
3901 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
3904 cmdline_parse_inst_t cmd_set_txpkts = {
3905 .f = cmd_set_txpkts_parsed,
3907 .help_str = "set txpkts <len0[,len1]*>",
3909 (void *)&cmd_set_txpkts_keyword,
3910 (void *)&cmd_set_txpkts_name,
3911 (void *)&cmd_set_txpkts_lengths,
3916 /* *** SET COPY AND SPLIT POLICY ON TX PACKETS *** */
3918 struct cmd_set_txsplit_result {
3919 cmdline_fixed_string_t cmd_keyword;
3920 cmdline_fixed_string_t txsplit;
3921 cmdline_fixed_string_t mode;
3925 cmd_set_txsplit_parsed(void *parsed_result,
3926 __rte_unused struct cmdline *cl,
3927 __rte_unused void *data)
3929 struct cmd_set_txsplit_result *res;
3931 res = parsed_result;
3932 set_tx_pkt_split(res->mode);
3935 cmdline_parse_token_string_t cmd_set_txsplit_keyword =
3936 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
3937 cmd_keyword, "set");
3938 cmdline_parse_token_string_t cmd_set_txsplit_name =
3939 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
3940 txsplit, "txsplit");
3941 cmdline_parse_token_string_t cmd_set_txsplit_mode =
3942 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
3945 cmdline_parse_inst_t cmd_set_txsplit = {
3946 .f = cmd_set_txsplit_parsed,
3948 .help_str = "set txsplit on|off|rand",
3950 (void *)&cmd_set_txsplit_keyword,
3951 (void *)&cmd_set_txsplit_name,
3952 (void *)&cmd_set_txsplit_mode,
3957 /* *** SET TIMES FOR TXONLY PACKETS SCHEDULING ON TIMESTAMPS *** */
3959 struct cmd_set_txtimes_result {
3960 cmdline_fixed_string_t cmd_keyword;
3961 cmdline_fixed_string_t txtimes;
3962 cmdline_fixed_string_t tx_times;
3966 cmd_set_txtimes_parsed(void *parsed_result,
3967 __rte_unused struct cmdline *cl,
3968 __rte_unused void *data)
3970 struct cmd_set_txtimes_result *res;
3971 unsigned int tx_times[2] = {0, 0};
3972 unsigned int n_times;
3974 res = parsed_result;
3975 n_times = parse_item_list(res->tx_times, "tx times",
3978 set_tx_pkt_times(tx_times);
3981 cmdline_parse_token_string_t cmd_set_txtimes_keyword =
3982 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result,
3983 cmd_keyword, "set");
3984 cmdline_parse_token_string_t cmd_set_txtimes_name =
3985 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result,
3986 txtimes, "txtimes");
3987 cmdline_parse_token_string_t cmd_set_txtimes_value =
3988 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result,
3991 cmdline_parse_inst_t cmd_set_txtimes = {
3992 .f = cmd_set_txtimes_parsed,
3994 .help_str = "set txtimes <inter_burst>,<intra_burst>",
3996 (void *)&cmd_set_txtimes_keyword,
3997 (void *)&cmd_set_txtimes_name,
3998 (void *)&cmd_set_txtimes_value,
4003 /* *** ADD/REMOVE ALL VLAN IDENTIFIERS TO/FROM A PORT VLAN RX FILTER *** */
4004 struct cmd_rx_vlan_filter_all_result {
4005 cmdline_fixed_string_t rx_vlan;
4006 cmdline_fixed_string_t what;
4007 cmdline_fixed_string_t all;
4012 cmd_rx_vlan_filter_all_parsed(void *parsed_result,
4013 __rte_unused struct cmdline *cl,
4014 __rte_unused void *data)
4016 struct cmd_rx_vlan_filter_all_result *res = parsed_result;
4018 if (!strcmp(res->what, "add"))
4019 rx_vlan_all_filter_set(res->port_id, 1);
4021 rx_vlan_all_filter_set(res->port_id, 0);
4024 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_rx_vlan =
4025 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
4026 rx_vlan, "rx_vlan");
4027 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_what =
4028 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
4030 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_all =
4031 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
4033 cmdline_parse_token_num_t cmd_rx_vlan_filter_all_portid =
4034 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
4035 port_id, RTE_UINT16);
4037 cmdline_parse_inst_t cmd_rx_vlan_filter_all = {
4038 .f = cmd_rx_vlan_filter_all_parsed,
4040 .help_str = "rx_vlan add|rm all <port_id>: "
4041 "Add/Remove all identifiers to/from the set of VLAN "
4042 "identifiers filtered by a port",
4044 (void *)&cmd_rx_vlan_filter_all_rx_vlan,
4045 (void *)&cmd_rx_vlan_filter_all_what,
4046 (void *)&cmd_rx_vlan_filter_all_all,
4047 (void *)&cmd_rx_vlan_filter_all_portid,
4052 /* *** VLAN OFFLOAD SET ON A PORT *** */
4053 struct cmd_vlan_offload_result {
4054 cmdline_fixed_string_t vlan;
4055 cmdline_fixed_string_t set;
4056 cmdline_fixed_string_t vlan_type;
4057 cmdline_fixed_string_t what;
4058 cmdline_fixed_string_t on;
4059 cmdline_fixed_string_t port_id;
4063 cmd_vlan_offload_parsed(void *parsed_result,
4064 __rte_unused struct cmdline *cl,
4065 __rte_unused void *data)
4068 struct cmd_vlan_offload_result *res = parsed_result;
4071 portid_t port_id = 0;
4075 len = strnlen(str, STR_TOKEN_SIZE);
4077 /* Get port_id first */
4085 tmp = strtoul(str, NULL, 0);
4086 /* If port_id greater that what portid_t can represent, return */
4087 if(tmp >= RTE_MAX_ETHPORTS)
4089 port_id = (portid_t)tmp;
4091 if (!strcmp(res->on, "on"))
4096 if (!strcmp(res->what, "strip"))
4097 rx_vlan_strip_set(port_id, on);
4098 else if(!strcmp(res->what, "stripq")){
4099 uint16_t queue_id = 0;
4101 /* No queue_id, return */
4103 printf("must specify (port,queue_id)\n");
4106 tmp = strtoul(str + i + 1, NULL, 0);
4107 /* If queue_id greater that what 16-bits can represent, return */
4111 queue_id = (uint16_t)tmp;
4112 rx_vlan_strip_set_on_queue(port_id, queue_id, on);
4114 else if (!strcmp(res->what, "filter"))
4115 rx_vlan_filter_set(port_id, on);
4116 else if (!strcmp(res->what, "qinq_strip"))
4117 rx_vlan_qinq_strip_set(port_id, on);
4119 vlan_extend_set(port_id, on);
4124 cmdline_parse_token_string_t cmd_vlan_offload_vlan =
4125 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4127 cmdline_parse_token_string_t cmd_vlan_offload_set =
4128 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4130 cmdline_parse_token_string_t cmd_vlan_offload_what =
4131 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4132 what, "strip#filter#qinq_strip#extend#stripq");
4133 cmdline_parse_token_string_t cmd_vlan_offload_on =
4134 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4136 cmdline_parse_token_string_t cmd_vlan_offload_portid =
4137 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4140 cmdline_parse_inst_t cmd_vlan_offload = {
4141 .f = cmd_vlan_offload_parsed,
4143 .help_str = "vlan set strip|filter|qinq_strip|extend|stripq on|off "
4144 "<port_id[,queue_id]>: "
4145 "Strip/Filter/QinQ for rx side Extend for both rx/tx sides",
4147 (void *)&cmd_vlan_offload_vlan,
4148 (void *)&cmd_vlan_offload_set,
4149 (void *)&cmd_vlan_offload_what,
4150 (void *)&cmd_vlan_offload_on,
4151 (void *)&cmd_vlan_offload_portid,
4156 /* *** VLAN TPID SET ON A PORT *** */
4157 struct cmd_vlan_tpid_result {
4158 cmdline_fixed_string_t vlan;
4159 cmdline_fixed_string_t set;
4160 cmdline_fixed_string_t vlan_type;
4161 cmdline_fixed_string_t what;
4167 cmd_vlan_tpid_parsed(void *parsed_result,
4168 __rte_unused struct cmdline *cl,
4169 __rte_unused void *data)
4171 struct cmd_vlan_tpid_result *res = parsed_result;
4172 enum rte_vlan_type vlan_type;
4174 if (!strcmp(res->vlan_type, "inner"))
4175 vlan_type = ETH_VLAN_TYPE_INNER;
4176 else if (!strcmp(res->vlan_type, "outer"))
4177 vlan_type = ETH_VLAN_TYPE_OUTER;
4179 printf("Unknown vlan type\n");
4182 vlan_tpid_set(res->port_id, vlan_type, res->tp_id);
4185 cmdline_parse_token_string_t cmd_vlan_tpid_vlan =
4186 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4188 cmdline_parse_token_string_t cmd_vlan_tpid_set =
4189 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4191 cmdline_parse_token_string_t cmd_vlan_type =
4192 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4193 vlan_type, "inner#outer");
4194 cmdline_parse_token_string_t cmd_vlan_tpid_what =
4195 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4197 cmdline_parse_token_num_t cmd_vlan_tpid_tpid =
4198 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
4200 cmdline_parse_token_num_t cmd_vlan_tpid_portid =
4201 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
4202 port_id, RTE_UINT16);
4204 cmdline_parse_inst_t cmd_vlan_tpid = {
4205 .f = cmd_vlan_tpid_parsed,
4207 .help_str = "vlan set inner|outer tpid <tp_id> <port_id>: "
4208 "Set the VLAN Ether type",
4210 (void *)&cmd_vlan_tpid_vlan,
4211 (void *)&cmd_vlan_tpid_set,
4212 (void *)&cmd_vlan_type,
4213 (void *)&cmd_vlan_tpid_what,
4214 (void *)&cmd_vlan_tpid_tpid,
4215 (void *)&cmd_vlan_tpid_portid,
4220 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
4221 struct cmd_rx_vlan_filter_result {
4222 cmdline_fixed_string_t rx_vlan;
4223 cmdline_fixed_string_t what;
4229 cmd_rx_vlan_filter_parsed(void *parsed_result,
4230 __rte_unused struct cmdline *cl,
4231 __rte_unused void *data)
4233 struct cmd_rx_vlan_filter_result *res = parsed_result;
4235 if (!strcmp(res->what, "add"))
4236 rx_vft_set(res->port_id, res->vlan_id, 1);
4238 rx_vft_set(res->port_id, res->vlan_id, 0);
4241 cmdline_parse_token_string_t cmd_rx_vlan_filter_rx_vlan =
4242 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
4243 rx_vlan, "rx_vlan");
4244 cmdline_parse_token_string_t cmd_rx_vlan_filter_what =
4245 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
4247 cmdline_parse_token_num_t cmd_rx_vlan_filter_vlanid =
4248 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
4249 vlan_id, RTE_UINT16);
4250 cmdline_parse_token_num_t cmd_rx_vlan_filter_portid =
4251 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
4252 port_id, RTE_UINT16);
4254 cmdline_parse_inst_t cmd_rx_vlan_filter = {
4255 .f = cmd_rx_vlan_filter_parsed,
4257 .help_str = "rx_vlan add|rm <vlan_id> <port_id>: "
4258 "Add/Remove a VLAN identifier to/from the set of VLAN "
4259 "identifiers filtered by a port",
4261 (void *)&cmd_rx_vlan_filter_rx_vlan,
4262 (void *)&cmd_rx_vlan_filter_what,
4263 (void *)&cmd_rx_vlan_filter_vlanid,
4264 (void *)&cmd_rx_vlan_filter_portid,
4269 /* *** ENABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
4270 struct cmd_tx_vlan_set_result {
4271 cmdline_fixed_string_t tx_vlan;
4272 cmdline_fixed_string_t set;
4278 cmd_tx_vlan_set_parsed(void *parsed_result,
4279 __rte_unused struct cmdline *cl,
4280 __rte_unused void *data)
4282 struct cmd_tx_vlan_set_result *res = parsed_result;
4284 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4287 if (!port_is_stopped(res->port_id)) {
4288 printf("Please stop port %d first\n", res->port_id);
4292 tx_vlan_set(res->port_id, res->vlan_id);
4294 cmd_reconfig_device_queue(res->port_id, 1, 1);
4297 cmdline_parse_token_string_t cmd_tx_vlan_set_tx_vlan =
4298 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
4299 tx_vlan, "tx_vlan");
4300 cmdline_parse_token_string_t cmd_tx_vlan_set_set =
4301 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
4303 cmdline_parse_token_num_t cmd_tx_vlan_set_portid =
4304 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
4305 port_id, RTE_UINT16);
4306 cmdline_parse_token_num_t cmd_tx_vlan_set_vlanid =
4307 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
4308 vlan_id, RTE_UINT16);
4310 cmdline_parse_inst_t cmd_tx_vlan_set = {
4311 .f = cmd_tx_vlan_set_parsed,
4313 .help_str = "tx_vlan set <port_id> <vlan_id>: "
4314 "Enable hardware insertion of a single VLAN header "
4315 "with a given TAG Identifier in packets sent on a port",
4317 (void *)&cmd_tx_vlan_set_tx_vlan,
4318 (void *)&cmd_tx_vlan_set_set,
4319 (void *)&cmd_tx_vlan_set_portid,
4320 (void *)&cmd_tx_vlan_set_vlanid,
4325 /* *** ENABLE HARDWARE INSERTION OF Double VLAN HEADER IN TX PACKETS *** */
4326 struct cmd_tx_vlan_set_qinq_result {
4327 cmdline_fixed_string_t tx_vlan;
4328 cmdline_fixed_string_t set;
4331 uint16_t vlan_id_outer;
4335 cmd_tx_vlan_set_qinq_parsed(void *parsed_result,
4336 __rte_unused struct cmdline *cl,
4337 __rte_unused void *data)
4339 struct cmd_tx_vlan_set_qinq_result *res = parsed_result;
4341 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4344 if (!port_is_stopped(res->port_id)) {
4345 printf("Please stop port %d first\n", res->port_id);
4349 tx_qinq_set(res->port_id, res->vlan_id, res->vlan_id_outer);
4351 cmd_reconfig_device_queue(res->port_id, 1, 1);
4354 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_tx_vlan =
4355 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4356 tx_vlan, "tx_vlan");
4357 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_set =
4358 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4360 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_portid =
4361 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4362 port_id, RTE_UINT16);
4363 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid =
4364 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4365 vlan_id, RTE_UINT16);
4366 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid_outer =
4367 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4368 vlan_id_outer, RTE_UINT16);
4370 cmdline_parse_inst_t cmd_tx_vlan_set_qinq = {
4371 .f = cmd_tx_vlan_set_qinq_parsed,
4373 .help_str = "tx_vlan set <port_id> <vlan_id> <outer_vlan_id>: "
4374 "Enable hardware insertion of double VLAN header "
4375 "with given TAG Identifiers in packets sent on a port",
4377 (void *)&cmd_tx_vlan_set_qinq_tx_vlan,
4378 (void *)&cmd_tx_vlan_set_qinq_set,
4379 (void *)&cmd_tx_vlan_set_qinq_portid,
4380 (void *)&cmd_tx_vlan_set_qinq_vlanid,
4381 (void *)&cmd_tx_vlan_set_qinq_vlanid_outer,
4386 /* *** ENABLE/DISABLE PORT BASED TX VLAN INSERTION *** */
4387 struct cmd_tx_vlan_set_pvid_result {
4388 cmdline_fixed_string_t tx_vlan;
4389 cmdline_fixed_string_t set;
4390 cmdline_fixed_string_t pvid;
4393 cmdline_fixed_string_t mode;
4397 cmd_tx_vlan_set_pvid_parsed(void *parsed_result,
4398 __rte_unused struct cmdline *cl,
4399 __rte_unused void *data)
4401 struct cmd_tx_vlan_set_pvid_result *res = parsed_result;
4403 if (strcmp(res->mode, "on") == 0)
4404 tx_vlan_pvid_set(res->port_id, res->vlan_id, 1);
4406 tx_vlan_pvid_set(res->port_id, res->vlan_id, 0);
4409 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_tx_vlan =
4410 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4411 tx_vlan, "tx_vlan");
4412 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_set =
4413 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4415 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_pvid =
4416 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4418 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_port_id =
4419 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4420 port_id, RTE_UINT16);
4421 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_vlan_id =
4422 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4423 vlan_id, RTE_UINT16);
4424 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_mode =
4425 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4428 cmdline_parse_inst_t cmd_tx_vlan_set_pvid = {
4429 .f = cmd_tx_vlan_set_pvid_parsed,
4431 .help_str = "tx_vlan set pvid <port_id> <vlan_id> on|off",
4433 (void *)&cmd_tx_vlan_set_pvid_tx_vlan,
4434 (void *)&cmd_tx_vlan_set_pvid_set,
4435 (void *)&cmd_tx_vlan_set_pvid_pvid,
4436 (void *)&cmd_tx_vlan_set_pvid_port_id,
4437 (void *)&cmd_tx_vlan_set_pvid_vlan_id,
4438 (void *)&cmd_tx_vlan_set_pvid_mode,
4443 /* *** DISABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
4444 struct cmd_tx_vlan_reset_result {
4445 cmdline_fixed_string_t tx_vlan;
4446 cmdline_fixed_string_t reset;
4451 cmd_tx_vlan_reset_parsed(void *parsed_result,
4452 __rte_unused struct cmdline *cl,
4453 __rte_unused void *data)
4455 struct cmd_tx_vlan_reset_result *res = parsed_result;
4457 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4460 if (!port_is_stopped(res->port_id)) {
4461 printf("Please stop port %d first\n", res->port_id);
4465 tx_vlan_reset(res->port_id);
4467 cmd_reconfig_device_queue(res->port_id, 1, 1);
4470 cmdline_parse_token_string_t cmd_tx_vlan_reset_tx_vlan =
4471 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
4472 tx_vlan, "tx_vlan");
4473 cmdline_parse_token_string_t cmd_tx_vlan_reset_reset =
4474 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
4476 cmdline_parse_token_num_t cmd_tx_vlan_reset_portid =
4477 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_reset_result,
4478 port_id, RTE_UINT16);
4480 cmdline_parse_inst_t cmd_tx_vlan_reset = {
4481 .f = cmd_tx_vlan_reset_parsed,
4483 .help_str = "tx_vlan reset <port_id>: Disable hardware insertion of a "
4484 "VLAN header in packets sent on a port",
4486 (void *)&cmd_tx_vlan_reset_tx_vlan,
4487 (void *)&cmd_tx_vlan_reset_reset,
4488 (void *)&cmd_tx_vlan_reset_portid,
4494 /* *** ENABLE HARDWARE INSERTION OF CHECKSUM IN TX PACKETS *** */
4495 struct cmd_csum_result {
4496 cmdline_fixed_string_t csum;
4497 cmdline_fixed_string_t mode;
4498 cmdline_fixed_string_t proto;
4499 cmdline_fixed_string_t hwsw;
4504 csum_show(int port_id)
4506 struct rte_eth_dev_info dev_info;
4507 uint64_t tx_offloads;
4510 tx_offloads = ports[port_id].dev_conf.txmode.offloads;
4511 printf("Parse tunnel is %s\n",
4512 (ports[port_id].parse_tunnel) ? "on" : "off");
4513 printf("IP checksum offload is %s\n",
4514 (tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) ? "hw" : "sw");
4515 printf("UDP checksum offload is %s\n",
4516 (tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) ? "hw" : "sw");
4517 printf("TCP checksum offload is %s\n",
4518 (tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) ? "hw" : "sw");
4519 printf("SCTP checksum offload is %s\n",
4520 (tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) ? "hw" : "sw");
4521 printf("Outer-Ip checksum offload is %s\n",
4522 (tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) ? "hw" : "sw");
4523 printf("Outer-Udp checksum offload is %s\n",
4524 (tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) ? "hw" : "sw");
4526 /* display warnings if configuration is not supported by the NIC */
4527 ret = eth_dev_info_get_print_err(port_id, &dev_info);
4531 if ((tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) &&
4532 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) == 0) {
4533 printf("Warning: hardware IP checksum enabled but not "
4534 "supported by port %d\n", port_id);
4536 if ((tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) &&
4537 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) == 0) {
4538 printf("Warning: hardware UDP checksum enabled but not "
4539 "supported by port %d\n", port_id);
4541 if ((tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) &&
4542 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) == 0) {
4543 printf("Warning: hardware TCP checksum enabled but not "
4544 "supported by port %d\n", port_id);
4546 if ((tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) &&
4547 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) == 0) {
4548 printf("Warning: hardware SCTP checksum enabled but not "
4549 "supported by port %d\n", port_id);
4551 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) &&
4552 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) == 0) {
4553 printf("Warning: hardware outer IP checksum enabled but not "
4554 "supported by port %d\n", port_id);
4556 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) &&
4557 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)
4559 printf("Warning: hardware outer UDP checksum enabled but not "
4560 "supported by port %d\n", port_id);
4565 cmd_config_queue_tx_offloads(struct rte_port *port)
4569 /* Apply queue tx offloads configuration */
4570 for (k = 0; k < port->dev_info.max_rx_queues; k++)
4571 port->tx_conf[k].offloads =
4572 port->dev_conf.txmode.offloads;
4576 cmd_csum_parsed(void *parsed_result,
4577 __rte_unused struct cmdline *cl,
4578 __rte_unused void *data)
4580 struct cmd_csum_result *res = parsed_result;
4582 uint64_t csum_offloads = 0;
4583 struct rte_eth_dev_info dev_info;
4586 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) {
4587 printf("invalid port %d\n", res->port_id);
4590 if (!port_is_stopped(res->port_id)) {
4591 printf("Please stop port %d first\n", res->port_id);
4595 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
4599 if (!strcmp(res->mode, "set")) {
4601 if (!strcmp(res->hwsw, "hw"))
4604 if (!strcmp(res->proto, "ip")) {
4605 if (hw == 0 || (dev_info.tx_offload_capa &
4606 DEV_TX_OFFLOAD_IPV4_CKSUM)) {
4607 csum_offloads |= DEV_TX_OFFLOAD_IPV4_CKSUM;
4609 printf("IP checksum offload is not supported "
4610 "by port %u\n", res->port_id);
4612 } else if (!strcmp(res->proto, "udp")) {
4613 if (hw == 0 || (dev_info.tx_offload_capa &
4614 DEV_TX_OFFLOAD_UDP_CKSUM)) {
4615 csum_offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
4617 printf("UDP checksum offload is not supported "
4618 "by port %u\n", res->port_id);
4620 } else if (!strcmp(res->proto, "tcp")) {
4621 if (hw == 0 || (dev_info.tx_offload_capa &
4622 DEV_TX_OFFLOAD_TCP_CKSUM)) {
4623 csum_offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
4625 printf("TCP checksum offload is not supported "
4626 "by port %u\n", res->port_id);
4628 } else if (!strcmp(res->proto, "sctp")) {
4629 if (hw == 0 || (dev_info.tx_offload_capa &
4630 DEV_TX_OFFLOAD_SCTP_CKSUM)) {
4631 csum_offloads |= DEV_TX_OFFLOAD_SCTP_CKSUM;
4633 printf("SCTP checksum offload is not supported "
4634 "by port %u\n", res->port_id);
4636 } else if (!strcmp(res->proto, "outer-ip")) {
4637 if (hw == 0 || (dev_info.tx_offload_capa &
4638 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) {
4640 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
4642 printf("Outer IP checksum offload is not "
4643 "supported by port %u\n", res->port_id);
4645 } else if (!strcmp(res->proto, "outer-udp")) {
4646 if (hw == 0 || (dev_info.tx_offload_capa &
4647 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)) {
4649 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM;
4651 printf("Outer UDP checksum offload is not "
4652 "supported by port %u\n", res->port_id);
4657 ports[res->port_id].dev_conf.txmode.offloads |=
4660 ports[res->port_id].dev_conf.txmode.offloads &=
4663 cmd_config_queue_tx_offloads(&ports[res->port_id]);
4665 csum_show(res->port_id);
4667 cmd_reconfig_device_queue(res->port_id, 1, 1);
4670 cmdline_parse_token_string_t cmd_csum_csum =
4671 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4673 cmdline_parse_token_string_t cmd_csum_mode =
4674 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4676 cmdline_parse_token_string_t cmd_csum_proto =
4677 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4678 proto, "ip#tcp#udp#sctp#outer-ip#outer-udp");
4679 cmdline_parse_token_string_t cmd_csum_hwsw =
4680 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4682 cmdline_parse_token_num_t cmd_csum_portid =
4683 TOKEN_NUM_INITIALIZER(struct cmd_csum_result,
4684 port_id, RTE_UINT16);
4686 cmdline_parse_inst_t cmd_csum_set = {
4687 .f = cmd_csum_parsed,
4689 .help_str = "csum set ip|tcp|udp|sctp|outer-ip|outer-udp hw|sw <port_id>: "
4690 "Enable/Disable hardware calculation of L3/L4 checksum when "
4691 "using csum forward engine",
4693 (void *)&cmd_csum_csum,
4694 (void *)&cmd_csum_mode,
4695 (void *)&cmd_csum_proto,
4696 (void *)&cmd_csum_hwsw,
4697 (void *)&cmd_csum_portid,
4702 cmdline_parse_token_string_t cmd_csum_mode_show =
4703 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4706 cmdline_parse_inst_t cmd_csum_show = {
4707 .f = cmd_csum_parsed,
4709 .help_str = "csum show <port_id>: Show checksum offload configuration",
4711 (void *)&cmd_csum_csum,
4712 (void *)&cmd_csum_mode_show,
4713 (void *)&cmd_csum_portid,
4718 /* Enable/disable tunnel parsing */
4719 struct cmd_csum_tunnel_result {
4720 cmdline_fixed_string_t csum;
4721 cmdline_fixed_string_t parse;
4722 cmdline_fixed_string_t onoff;
4727 cmd_csum_tunnel_parsed(void *parsed_result,
4728 __rte_unused struct cmdline *cl,
4729 __rte_unused void *data)
4731 struct cmd_csum_tunnel_result *res = parsed_result;
4733 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4736 if (!strcmp(res->onoff, "on"))
4737 ports[res->port_id].parse_tunnel = 1;
4739 ports[res->port_id].parse_tunnel = 0;
4741 csum_show(res->port_id);
4744 cmdline_parse_token_string_t cmd_csum_tunnel_csum =
4745 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
4747 cmdline_parse_token_string_t cmd_csum_tunnel_parse =
4748 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
4749 parse, "parse-tunnel");
4750 cmdline_parse_token_string_t cmd_csum_tunnel_onoff =
4751 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
4753 cmdline_parse_token_num_t cmd_csum_tunnel_portid =
4754 TOKEN_NUM_INITIALIZER(struct cmd_csum_tunnel_result,
4755 port_id, RTE_UINT16);
4757 cmdline_parse_inst_t cmd_csum_tunnel = {
4758 .f = cmd_csum_tunnel_parsed,
4760 .help_str = "csum parse-tunnel on|off <port_id>: "
4761 "Enable/Disable parsing of tunnels for csum engine",
4763 (void *)&cmd_csum_tunnel_csum,
4764 (void *)&cmd_csum_tunnel_parse,
4765 (void *)&cmd_csum_tunnel_onoff,
4766 (void *)&cmd_csum_tunnel_portid,
4771 /* *** ENABLE HARDWARE SEGMENTATION IN TX NON-TUNNELED PACKETS *** */
4772 struct cmd_tso_set_result {
4773 cmdline_fixed_string_t tso;
4774 cmdline_fixed_string_t mode;
4780 cmd_tso_set_parsed(void *parsed_result,
4781 __rte_unused struct cmdline *cl,
4782 __rte_unused void *data)
4784 struct cmd_tso_set_result *res = parsed_result;
4785 struct rte_eth_dev_info dev_info;
4788 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4790 if (!port_is_stopped(res->port_id)) {
4791 printf("Please stop port %d first\n", res->port_id);
4795 if (!strcmp(res->mode, "set"))
4796 ports[res->port_id].tso_segsz = res->tso_segsz;
4798 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
4802 if ((ports[res->port_id].tso_segsz != 0) &&
4803 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
4804 printf("Error: TSO is not supported by port %d\n",
4809 if (ports[res->port_id].tso_segsz == 0) {
4810 ports[res->port_id].dev_conf.txmode.offloads &=
4811 ~DEV_TX_OFFLOAD_TCP_TSO;
4812 printf("TSO for non-tunneled packets is disabled\n");
4814 ports[res->port_id].dev_conf.txmode.offloads |=
4815 DEV_TX_OFFLOAD_TCP_TSO;
4816 printf("TSO segment size for non-tunneled packets is %d\n",
4817 ports[res->port_id].tso_segsz);
4819 cmd_config_queue_tx_offloads(&ports[res->port_id]);
4821 /* display warnings if configuration is not supported by the NIC */
4822 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
4826 if ((ports[res->port_id].tso_segsz != 0) &&
4827 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
4828 printf("Warning: TSO enabled but not "
4829 "supported by port %d\n", res->port_id);
4832 cmd_reconfig_device_queue(res->port_id, 1, 1);
4835 cmdline_parse_token_string_t cmd_tso_set_tso =
4836 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
4838 cmdline_parse_token_string_t cmd_tso_set_mode =
4839 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
4841 cmdline_parse_token_num_t cmd_tso_set_tso_segsz =
4842 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
4843 tso_segsz, RTE_UINT16);
4844 cmdline_parse_token_num_t cmd_tso_set_portid =
4845 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
4846 port_id, RTE_UINT16);
4848 cmdline_parse_inst_t cmd_tso_set = {
4849 .f = cmd_tso_set_parsed,
4851 .help_str = "tso set <tso_segsz> <port_id>: "
4852 "Set TSO segment size of non-tunneled packets for csum engine "
4855 (void *)&cmd_tso_set_tso,
4856 (void *)&cmd_tso_set_mode,
4857 (void *)&cmd_tso_set_tso_segsz,
4858 (void *)&cmd_tso_set_portid,
4863 cmdline_parse_token_string_t cmd_tso_show_mode =
4864 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
4868 cmdline_parse_inst_t cmd_tso_show = {
4869 .f = cmd_tso_set_parsed,
4871 .help_str = "tso show <port_id>: "
4872 "Show TSO segment size of non-tunneled packets for csum engine",
4874 (void *)&cmd_tso_set_tso,
4875 (void *)&cmd_tso_show_mode,
4876 (void *)&cmd_tso_set_portid,
4881 /* *** ENABLE HARDWARE SEGMENTATION IN TX TUNNELED PACKETS *** */
4882 struct cmd_tunnel_tso_set_result {
4883 cmdline_fixed_string_t tso;
4884 cmdline_fixed_string_t mode;
4889 static struct rte_eth_dev_info
4890 check_tunnel_tso_nic_support(portid_t port_id)
4892 struct rte_eth_dev_info dev_info;
4894 if (eth_dev_info_get_print_err(port_id, &dev_info) != 0)
4897 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO))
4898 printf("Warning: VXLAN TUNNEL TSO not supported therefore "
4899 "not enabled for port %d\n", port_id);
4900 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO))
4901 printf("Warning: GRE TUNNEL TSO not supported therefore "
4902 "not enabled for port %d\n", port_id);
4903 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO))
4904 printf("Warning: IPIP TUNNEL TSO not supported therefore "
4905 "not enabled for port %d\n", port_id);
4906 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO))
4907 printf("Warning: GENEVE TUNNEL TSO not supported therefore "
4908 "not enabled for port %d\n", port_id);
4909 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IP_TNL_TSO))
4910 printf("Warning: IP TUNNEL TSO not supported therefore "
4911 "not enabled for port %d\n", port_id);
4912 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TNL_TSO))
4913 printf("Warning: UDP TUNNEL TSO not supported therefore "
4914 "not enabled for port %d\n", port_id);
4919 cmd_tunnel_tso_set_parsed(void *parsed_result,
4920 __rte_unused struct cmdline *cl,
4921 __rte_unused void *data)
4923 struct cmd_tunnel_tso_set_result *res = parsed_result;
4924 struct rte_eth_dev_info dev_info;
4926 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4928 if (!port_is_stopped(res->port_id)) {
4929 printf("Please stop port %d first\n", res->port_id);
4933 if (!strcmp(res->mode, "set"))
4934 ports[res->port_id].tunnel_tso_segsz = res->tso_segsz;
4936 dev_info = check_tunnel_tso_nic_support(res->port_id);
4937 if (ports[res->port_id].tunnel_tso_segsz == 0) {
4938 ports[res->port_id].dev_conf.txmode.offloads &=
4939 ~(DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
4940 DEV_TX_OFFLOAD_GRE_TNL_TSO |
4941 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
4942 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
4943 DEV_TX_OFFLOAD_IP_TNL_TSO |
4944 DEV_TX_OFFLOAD_UDP_TNL_TSO);
4945 printf("TSO for tunneled packets is disabled\n");
4947 uint64_t tso_offloads = (DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
4948 DEV_TX_OFFLOAD_GRE_TNL_TSO |
4949 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
4950 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
4951 DEV_TX_OFFLOAD_IP_TNL_TSO |
4952 DEV_TX_OFFLOAD_UDP_TNL_TSO);
4954 ports[res->port_id].dev_conf.txmode.offloads |=
4955 (tso_offloads & dev_info.tx_offload_capa);
4956 printf("TSO segment size for tunneled packets is %d\n",
4957 ports[res->port_id].tunnel_tso_segsz);
4959 /* Below conditions are needed to make it work:
4960 * (1) tunnel TSO is supported by the NIC;
4961 * (2) "csum parse_tunnel" must be set so that tunneled pkts
4963 * (3) for tunneled pkts with outer L3 of IPv4,
4964 * "csum set outer-ip" must be set to hw, because after tso,
4965 * total_len of outer IP header is changed, and the checksum
4966 * of outer IP header calculated by sw should be wrong; that
4967 * is not necessary for IPv6 tunneled pkts because there's no
4968 * checksum in IP header anymore.
4971 if (!ports[res->port_id].parse_tunnel)
4972 printf("Warning: csum parse_tunnel must be set "
4973 "so that tunneled packets are recognized\n");
4974 if (!(ports[res->port_id].dev_conf.txmode.offloads &
4975 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM))
4976 printf("Warning: csum set outer-ip must be set to hw "
4977 "if outer L3 is IPv4; not necessary for IPv6\n");
4980 cmd_config_queue_tx_offloads(&ports[res->port_id]);
4981 cmd_reconfig_device_queue(res->port_id, 1, 1);
4984 cmdline_parse_token_string_t cmd_tunnel_tso_set_tso =
4985 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
4987 cmdline_parse_token_string_t cmd_tunnel_tso_set_mode =
4988 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
4990 cmdline_parse_token_num_t cmd_tunnel_tso_set_tso_segsz =
4991 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result,
4992 tso_segsz, RTE_UINT16);
4993 cmdline_parse_token_num_t cmd_tunnel_tso_set_portid =
4994 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result,
4995 port_id, RTE_UINT16);
4997 cmdline_parse_inst_t cmd_tunnel_tso_set = {
4998 .f = cmd_tunnel_tso_set_parsed,
5000 .help_str = "tunnel_tso set <tso_segsz> <port_id>: "
5001 "Set TSO segment size of tunneled packets for csum engine "
5004 (void *)&cmd_tunnel_tso_set_tso,
5005 (void *)&cmd_tunnel_tso_set_mode,
5006 (void *)&cmd_tunnel_tso_set_tso_segsz,
5007 (void *)&cmd_tunnel_tso_set_portid,
5012 cmdline_parse_token_string_t cmd_tunnel_tso_show_mode =
5013 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
5017 cmdline_parse_inst_t cmd_tunnel_tso_show = {
5018 .f = cmd_tunnel_tso_set_parsed,
5020 .help_str = "tunnel_tso show <port_id> "
5021 "Show TSO segment size of tunneled packets for csum engine",
5023 (void *)&cmd_tunnel_tso_set_tso,
5024 (void *)&cmd_tunnel_tso_show_mode,
5025 (void *)&cmd_tunnel_tso_set_portid,
5030 /* *** SET GRO FOR A PORT *** */
5031 struct cmd_gro_enable_result {
5032 cmdline_fixed_string_t cmd_set;
5033 cmdline_fixed_string_t cmd_port;
5034 cmdline_fixed_string_t cmd_keyword;
5035 cmdline_fixed_string_t cmd_onoff;
5040 cmd_gro_enable_parsed(void *parsed_result,
5041 __rte_unused struct cmdline *cl,
5042 __rte_unused void *data)
5044 struct cmd_gro_enable_result *res;
5046 res = parsed_result;
5047 if (!strcmp(res->cmd_keyword, "gro"))
5048 setup_gro(res->cmd_onoff, res->cmd_pid);
5051 cmdline_parse_token_string_t cmd_gro_enable_set =
5052 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
5054 cmdline_parse_token_string_t cmd_gro_enable_port =
5055 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
5056 cmd_keyword, "port");
5057 cmdline_parse_token_num_t cmd_gro_enable_pid =
5058 TOKEN_NUM_INITIALIZER(struct cmd_gro_enable_result,
5059 cmd_pid, RTE_UINT16);
5060 cmdline_parse_token_string_t cmd_gro_enable_keyword =
5061 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
5062 cmd_keyword, "gro");
5063 cmdline_parse_token_string_t cmd_gro_enable_onoff =
5064 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
5065 cmd_onoff, "on#off");
5067 cmdline_parse_inst_t cmd_gro_enable = {
5068 .f = cmd_gro_enable_parsed,
5070 .help_str = "set port <port_id> gro on|off",
5072 (void *)&cmd_gro_enable_set,
5073 (void *)&cmd_gro_enable_port,
5074 (void *)&cmd_gro_enable_pid,
5075 (void *)&cmd_gro_enable_keyword,
5076 (void *)&cmd_gro_enable_onoff,
5081 /* *** DISPLAY GRO CONFIGURATION *** */
5082 struct cmd_gro_show_result {
5083 cmdline_fixed_string_t cmd_show;
5084 cmdline_fixed_string_t cmd_port;
5085 cmdline_fixed_string_t cmd_keyword;
5090 cmd_gro_show_parsed(void *parsed_result,
5091 __rte_unused struct cmdline *cl,
5092 __rte_unused void *data)
5094 struct cmd_gro_show_result *res;
5096 res = parsed_result;
5097 if (!strcmp(res->cmd_keyword, "gro"))
5098 show_gro(res->cmd_pid);
5101 cmdline_parse_token_string_t cmd_gro_show_show =
5102 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
5104 cmdline_parse_token_string_t cmd_gro_show_port =
5105 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
5107 cmdline_parse_token_num_t cmd_gro_show_pid =
5108 TOKEN_NUM_INITIALIZER(struct cmd_gro_show_result,
5109 cmd_pid, RTE_UINT16);
5110 cmdline_parse_token_string_t cmd_gro_show_keyword =
5111 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
5112 cmd_keyword, "gro");
5114 cmdline_parse_inst_t cmd_gro_show = {
5115 .f = cmd_gro_show_parsed,
5117 .help_str = "show port <port_id> gro",
5119 (void *)&cmd_gro_show_show,
5120 (void *)&cmd_gro_show_port,
5121 (void *)&cmd_gro_show_pid,
5122 (void *)&cmd_gro_show_keyword,
5127 /* *** SET FLUSH CYCLES FOR GRO *** */
5128 struct cmd_gro_flush_result {
5129 cmdline_fixed_string_t cmd_set;
5130 cmdline_fixed_string_t cmd_keyword;
5131 cmdline_fixed_string_t cmd_flush;
5136 cmd_gro_flush_parsed(void *parsed_result,
5137 __rte_unused struct cmdline *cl,
5138 __rte_unused void *data)
5140 struct cmd_gro_flush_result *res;
5142 res = parsed_result;
5143 if ((!strcmp(res->cmd_keyword, "gro")) &&
5144 (!strcmp(res->cmd_flush, "flush")))
5145 setup_gro_flush_cycles(res->cmd_cycles);
5148 cmdline_parse_token_string_t cmd_gro_flush_set =
5149 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
5151 cmdline_parse_token_string_t cmd_gro_flush_keyword =
5152 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
5153 cmd_keyword, "gro");
5154 cmdline_parse_token_string_t cmd_gro_flush_flush =
5155 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
5156 cmd_flush, "flush");
5157 cmdline_parse_token_num_t cmd_gro_flush_cycles =
5158 TOKEN_NUM_INITIALIZER(struct cmd_gro_flush_result,
5159 cmd_cycles, RTE_UINT8);
5161 cmdline_parse_inst_t cmd_gro_flush = {
5162 .f = cmd_gro_flush_parsed,
5164 .help_str = "set gro flush <cycles>",
5166 (void *)&cmd_gro_flush_set,
5167 (void *)&cmd_gro_flush_keyword,
5168 (void *)&cmd_gro_flush_flush,
5169 (void *)&cmd_gro_flush_cycles,
5174 /* *** ENABLE/DISABLE GSO *** */
5175 struct cmd_gso_enable_result {
5176 cmdline_fixed_string_t cmd_set;
5177 cmdline_fixed_string_t cmd_port;
5178 cmdline_fixed_string_t cmd_keyword;
5179 cmdline_fixed_string_t cmd_mode;
5184 cmd_gso_enable_parsed(void *parsed_result,
5185 __rte_unused struct cmdline *cl,
5186 __rte_unused void *data)
5188 struct cmd_gso_enable_result *res;
5190 res = parsed_result;
5191 if (!strcmp(res->cmd_keyword, "gso"))
5192 setup_gso(res->cmd_mode, res->cmd_pid);
5195 cmdline_parse_token_string_t cmd_gso_enable_set =
5196 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5198 cmdline_parse_token_string_t cmd_gso_enable_port =
5199 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5201 cmdline_parse_token_string_t cmd_gso_enable_keyword =
5202 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5203 cmd_keyword, "gso");
5204 cmdline_parse_token_string_t cmd_gso_enable_mode =
5205 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5206 cmd_mode, "on#off");
5207 cmdline_parse_token_num_t cmd_gso_enable_pid =
5208 TOKEN_NUM_INITIALIZER(struct cmd_gso_enable_result,
5209 cmd_pid, RTE_UINT16);
5211 cmdline_parse_inst_t cmd_gso_enable = {
5212 .f = cmd_gso_enable_parsed,
5214 .help_str = "set port <port_id> gso on|off",
5216 (void *)&cmd_gso_enable_set,
5217 (void *)&cmd_gso_enable_port,
5218 (void *)&cmd_gso_enable_pid,
5219 (void *)&cmd_gso_enable_keyword,
5220 (void *)&cmd_gso_enable_mode,
5225 /* *** SET MAX PACKET LENGTH FOR GSO SEGMENTS *** */
5226 struct cmd_gso_size_result {
5227 cmdline_fixed_string_t cmd_set;
5228 cmdline_fixed_string_t cmd_keyword;
5229 cmdline_fixed_string_t cmd_segsz;
5234 cmd_gso_size_parsed(void *parsed_result,
5235 __rte_unused struct cmdline *cl,
5236 __rte_unused void *data)
5238 struct cmd_gso_size_result *res = parsed_result;
5240 if (test_done == 0) {
5241 printf("Before setting GSO segsz, please first"
5242 " stop forwarding\n");
5246 if (!strcmp(res->cmd_keyword, "gso") &&
5247 !strcmp(res->cmd_segsz, "segsz")) {
5248 if (res->cmd_size < RTE_GSO_SEG_SIZE_MIN)
5249 printf("gso_size should be larger than %zu."
5250 " Please input a legal value\n",
5251 RTE_GSO_SEG_SIZE_MIN);
5253 gso_max_segment_size = res->cmd_size;
5257 cmdline_parse_token_string_t cmd_gso_size_set =
5258 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
5260 cmdline_parse_token_string_t cmd_gso_size_keyword =
5261 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
5262 cmd_keyword, "gso");
5263 cmdline_parse_token_string_t cmd_gso_size_segsz =
5264 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
5265 cmd_segsz, "segsz");
5266 cmdline_parse_token_num_t cmd_gso_size_size =
5267 TOKEN_NUM_INITIALIZER(struct cmd_gso_size_result,
5268 cmd_size, RTE_UINT16);
5270 cmdline_parse_inst_t cmd_gso_size = {
5271 .f = cmd_gso_size_parsed,
5273 .help_str = "set gso segsz <length>",
5275 (void *)&cmd_gso_size_set,
5276 (void *)&cmd_gso_size_keyword,
5277 (void *)&cmd_gso_size_segsz,
5278 (void *)&cmd_gso_size_size,
5283 /* *** SHOW GSO CONFIGURATION *** */
5284 struct cmd_gso_show_result {
5285 cmdline_fixed_string_t cmd_show;
5286 cmdline_fixed_string_t cmd_port;
5287 cmdline_fixed_string_t cmd_keyword;
5292 cmd_gso_show_parsed(void *parsed_result,
5293 __rte_unused struct cmdline *cl,
5294 __rte_unused void *data)
5296 struct cmd_gso_show_result *res = parsed_result;
5298 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
5299 printf("invalid port id %u\n", res->cmd_pid);
5302 if (!strcmp(res->cmd_keyword, "gso")) {
5303 if (gso_ports[res->cmd_pid].enable) {
5304 printf("Max GSO'd packet size: %uB\n"
5305 "Supported GSO types: TCP/IPv4, "
5306 "UDP/IPv4, VxLAN with inner "
5307 "TCP/IPv4 packet, GRE with inner "
5308 "TCP/IPv4 packet\n",
5309 gso_max_segment_size);
5311 printf("GSO is not enabled on Port %u\n", res->cmd_pid);
5315 cmdline_parse_token_string_t cmd_gso_show_show =
5316 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
5318 cmdline_parse_token_string_t cmd_gso_show_port =
5319 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
5321 cmdline_parse_token_string_t cmd_gso_show_keyword =
5322 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
5323 cmd_keyword, "gso");
5324 cmdline_parse_token_num_t cmd_gso_show_pid =
5325 TOKEN_NUM_INITIALIZER(struct cmd_gso_show_result,
5326 cmd_pid, RTE_UINT16);
5328 cmdline_parse_inst_t cmd_gso_show = {
5329 .f = cmd_gso_show_parsed,
5331 .help_str = "show port <port_id> gso",
5333 (void *)&cmd_gso_show_show,
5334 (void *)&cmd_gso_show_port,
5335 (void *)&cmd_gso_show_pid,
5336 (void *)&cmd_gso_show_keyword,
5341 /* *** ENABLE/DISABLE FLUSH ON RX STREAMS *** */
5342 struct cmd_set_flush_rx {
5343 cmdline_fixed_string_t set;
5344 cmdline_fixed_string_t flush_rx;
5345 cmdline_fixed_string_t mode;
5349 cmd_set_flush_rx_parsed(void *parsed_result,
5350 __rte_unused struct cmdline *cl,
5351 __rte_unused void *data)
5353 struct cmd_set_flush_rx *res = parsed_result;
5354 no_flush_rx = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
5357 cmdline_parse_token_string_t cmd_setflushrx_set =
5358 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
5360 cmdline_parse_token_string_t cmd_setflushrx_flush_rx =
5361 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
5362 flush_rx, "flush_rx");
5363 cmdline_parse_token_string_t cmd_setflushrx_mode =
5364 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
5368 cmdline_parse_inst_t cmd_set_flush_rx = {
5369 .f = cmd_set_flush_rx_parsed,
5370 .help_str = "set flush_rx on|off: Enable/Disable flush on rx streams",
5373 (void *)&cmd_setflushrx_set,
5374 (void *)&cmd_setflushrx_flush_rx,
5375 (void *)&cmd_setflushrx_mode,
5380 /* *** ENABLE/DISABLE LINK STATUS CHECK *** */
5381 struct cmd_set_link_check {
5382 cmdline_fixed_string_t set;
5383 cmdline_fixed_string_t link_check;
5384 cmdline_fixed_string_t mode;
5388 cmd_set_link_check_parsed(void *parsed_result,
5389 __rte_unused struct cmdline *cl,
5390 __rte_unused void *data)
5392 struct cmd_set_link_check *res = parsed_result;
5393 no_link_check = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
5396 cmdline_parse_token_string_t cmd_setlinkcheck_set =
5397 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
5399 cmdline_parse_token_string_t cmd_setlinkcheck_link_check =
5400 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
5401 link_check, "link_check");
5402 cmdline_parse_token_string_t cmd_setlinkcheck_mode =
5403 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
5407 cmdline_parse_inst_t cmd_set_link_check = {
5408 .f = cmd_set_link_check_parsed,
5409 .help_str = "set link_check on|off: Enable/Disable link status check "
5410 "when starting/stopping a port",
5413 (void *)&cmd_setlinkcheck_set,
5414 (void *)&cmd_setlinkcheck_link_check,
5415 (void *)&cmd_setlinkcheck_mode,
5420 /* *** SET NIC BYPASS MODE *** */
5421 struct cmd_set_bypass_mode_result {
5422 cmdline_fixed_string_t set;
5423 cmdline_fixed_string_t bypass;
5424 cmdline_fixed_string_t mode;
5425 cmdline_fixed_string_t value;
5430 cmd_set_bypass_mode_parsed(void *parsed_result,
5431 __rte_unused struct cmdline *cl,
5432 __rte_unused void *data)
5434 struct cmd_set_bypass_mode_result *res = parsed_result;
5435 portid_t port_id = res->port_id;
5436 int32_t rc = -EINVAL;
5438 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS
5439 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5441 if (!strcmp(res->value, "bypass"))
5442 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS;
5443 else if (!strcmp(res->value, "isolate"))
5444 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE;
5446 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5448 /* Set the bypass mode for the relevant port. */
5449 rc = rte_pmd_ixgbe_bypass_state_set(port_id, &bypass_mode);
5452 printf("\t Failed to set bypass mode for port = %d.\n", port_id);
5455 cmdline_parse_token_string_t cmd_setbypass_mode_set =
5456 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5458 cmdline_parse_token_string_t cmd_setbypass_mode_bypass =
5459 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5461 cmdline_parse_token_string_t cmd_setbypass_mode_mode =
5462 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5464 cmdline_parse_token_string_t cmd_setbypass_mode_value =
5465 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5466 value, "normal#bypass#isolate");
5467 cmdline_parse_token_num_t cmd_setbypass_mode_port =
5468 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_mode_result,
5469 port_id, RTE_UINT16);
5471 cmdline_parse_inst_t cmd_set_bypass_mode = {
5472 .f = cmd_set_bypass_mode_parsed,
5473 .help_str = "set bypass mode normal|bypass|isolate <port_id>: "
5474 "Set the NIC bypass mode for port_id",
5477 (void *)&cmd_setbypass_mode_set,
5478 (void *)&cmd_setbypass_mode_bypass,
5479 (void *)&cmd_setbypass_mode_mode,
5480 (void *)&cmd_setbypass_mode_value,
5481 (void *)&cmd_setbypass_mode_port,
5486 /* *** SET NIC BYPASS EVENT *** */
5487 struct cmd_set_bypass_event_result {
5488 cmdline_fixed_string_t set;
5489 cmdline_fixed_string_t bypass;
5490 cmdline_fixed_string_t event;
5491 cmdline_fixed_string_t event_value;
5492 cmdline_fixed_string_t mode;
5493 cmdline_fixed_string_t mode_value;
5498 cmd_set_bypass_event_parsed(void *parsed_result,
5499 __rte_unused struct cmdline *cl,
5500 __rte_unused void *data)
5502 int32_t rc = -EINVAL;
5503 struct cmd_set_bypass_event_result *res = parsed_result;
5504 portid_t port_id = res->port_id;
5506 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS
5507 uint32_t bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE;
5508 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5510 if (!strcmp(res->event_value, "timeout"))
5511 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT;
5512 else if (!strcmp(res->event_value, "os_on"))
5513 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_ON;
5514 else if (!strcmp(res->event_value, "os_off"))
5515 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_OFF;
5516 else if (!strcmp(res->event_value, "power_on"))
5517 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_ON;
5518 else if (!strcmp(res->event_value, "power_off"))
5519 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_OFF;
5521 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE;
5523 if (!strcmp(res->mode_value, "bypass"))
5524 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS;
5525 else if (!strcmp(res->mode_value, "isolate"))
5526 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE;
5528 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5530 /* Set the watchdog timeout. */
5531 if (bypass_event == RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT) {
5534 if (RTE_PMD_IXGBE_BYPASS_TMT_VALID(bypass_timeout)) {
5535 rc = rte_pmd_ixgbe_bypass_wd_timeout_store(port_id,
5539 printf("Failed to set timeout value %u "
5540 "for port %d, errto code: %d.\n",
5541 bypass_timeout, port_id, rc);
5545 /* Set the bypass event to transition to bypass mode. */
5546 rc = rte_pmd_ixgbe_bypass_event_store(port_id, bypass_event,
5551 printf("\t Failed to set bypass event for port = %d.\n",
5555 cmdline_parse_token_string_t cmd_setbypass_event_set =
5556 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5558 cmdline_parse_token_string_t cmd_setbypass_event_bypass =
5559 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5561 cmdline_parse_token_string_t cmd_setbypass_event_event =
5562 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5564 cmdline_parse_token_string_t cmd_setbypass_event_event_value =
5565 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5566 event_value, "none#timeout#os_off#os_on#power_on#power_off");
5567 cmdline_parse_token_string_t cmd_setbypass_event_mode =
5568 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5570 cmdline_parse_token_string_t cmd_setbypass_event_mode_value =
5571 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5572 mode_value, "normal#bypass#isolate");
5573 cmdline_parse_token_num_t cmd_setbypass_event_port =
5574 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_event_result,
5575 port_id, RTE_UINT16);
5577 cmdline_parse_inst_t cmd_set_bypass_event = {
5578 .f = cmd_set_bypass_event_parsed,
5579 .help_str = "set bypass event none|timeout|os_on|os_off|power_on|"
5580 "power_off mode normal|bypass|isolate <port_id>: "
5581 "Set the NIC bypass event mode for port_id",
5584 (void *)&cmd_setbypass_event_set,
5585 (void *)&cmd_setbypass_event_bypass,
5586 (void *)&cmd_setbypass_event_event,
5587 (void *)&cmd_setbypass_event_event_value,
5588 (void *)&cmd_setbypass_event_mode,
5589 (void *)&cmd_setbypass_event_mode_value,
5590 (void *)&cmd_setbypass_event_port,
5596 /* *** SET NIC BYPASS TIMEOUT *** */
5597 struct cmd_set_bypass_timeout_result {
5598 cmdline_fixed_string_t set;
5599 cmdline_fixed_string_t bypass;
5600 cmdline_fixed_string_t timeout;
5601 cmdline_fixed_string_t value;
5605 cmd_set_bypass_timeout_parsed(void *parsed_result,
5606 __rte_unused struct cmdline *cl,
5607 __rte_unused void *data)
5609 __rte_unused struct cmd_set_bypass_timeout_result *res = parsed_result;
5611 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS
5612 if (!strcmp(res->value, "1.5"))
5613 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_1_5_SEC;
5614 else if (!strcmp(res->value, "2"))
5615 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_2_SEC;
5616 else if (!strcmp(res->value, "3"))
5617 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_3_SEC;
5618 else if (!strcmp(res->value, "4"))
5619 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_4_SEC;
5620 else if (!strcmp(res->value, "8"))
5621 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_8_SEC;
5622 else if (!strcmp(res->value, "16"))
5623 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_16_SEC;
5624 else if (!strcmp(res->value, "32"))
5625 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_32_SEC;
5627 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF;
5631 cmdline_parse_token_string_t cmd_setbypass_timeout_set =
5632 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5634 cmdline_parse_token_string_t cmd_setbypass_timeout_bypass =
5635 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5637 cmdline_parse_token_string_t cmd_setbypass_timeout_timeout =
5638 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5639 timeout, "timeout");
5640 cmdline_parse_token_string_t cmd_setbypass_timeout_value =
5641 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5642 value, "0#1.5#2#3#4#8#16#32");
5644 cmdline_parse_inst_t cmd_set_bypass_timeout = {
5645 .f = cmd_set_bypass_timeout_parsed,
5646 .help_str = "set bypass timeout 0|1.5|2|3|4|8|16|32: "
5647 "Set the NIC bypass watchdog timeout in seconds",
5650 (void *)&cmd_setbypass_timeout_set,
5651 (void *)&cmd_setbypass_timeout_bypass,
5652 (void *)&cmd_setbypass_timeout_timeout,
5653 (void *)&cmd_setbypass_timeout_value,
5658 /* *** SHOW NIC BYPASS MODE *** */
5659 struct cmd_show_bypass_config_result {
5660 cmdline_fixed_string_t show;
5661 cmdline_fixed_string_t bypass;
5662 cmdline_fixed_string_t config;
5667 cmd_show_bypass_config_parsed(void *parsed_result,
5668 __rte_unused struct cmdline *cl,
5669 __rte_unused void *data)
5671 struct cmd_show_bypass_config_result *res = parsed_result;
5672 portid_t port_id = res->port_id;
5674 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS
5675 uint32_t event_mode;
5676 uint32_t bypass_mode;
5677 uint32_t timeout = bypass_timeout;
5680 static const char * const timeouts[RTE_PMD_IXGBE_BYPASS_TMT_NUM] =
5681 {"off", "1.5", "2", "3", "4", "8", "16", "32"};
5682 static const char * const modes[RTE_PMD_IXGBE_BYPASS_MODE_NUM] =
5683 {"UNKNOWN", "normal", "bypass", "isolate"};
5684 static const char * const events[RTE_PMD_IXGBE_BYPASS_EVENT_NUM] = {
5692 /* Display the bypass mode.*/
5693 if (rte_pmd_ixgbe_bypass_state_show(port_id, &bypass_mode) != 0) {
5694 printf("\tFailed to get bypass mode for port = %d\n", port_id);
5698 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(bypass_mode))
5699 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE;
5701 printf("\tbypass mode = %s\n", modes[bypass_mode]);
5704 /* Display the bypass timeout.*/
5705 if (!RTE_PMD_IXGBE_BYPASS_TMT_VALID(timeout))
5706 timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF;
5708 printf("\tbypass timeout = %s\n", timeouts[timeout]);
5710 /* Display the bypass events and associated modes. */
5711 for (i = RTE_PMD_IXGBE_BYPASS_EVENT_START; i < RTE_DIM(events); i++) {
5713 if (rte_pmd_ixgbe_bypass_event_show(port_id, i, &event_mode)) {
5714 printf("\tFailed to get bypass mode for event = %s\n",
5717 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(event_mode))
5718 event_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE;
5720 printf("\tbypass event: %-16s = %s\n", events[i],
5726 printf("\tFailed to get bypass configuration for port = %d\n",
5730 cmdline_parse_token_string_t cmd_showbypass_config_show =
5731 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
5733 cmdline_parse_token_string_t cmd_showbypass_config_bypass =
5734 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
5736 cmdline_parse_token_string_t cmd_showbypass_config_config =
5737 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
5739 cmdline_parse_token_num_t cmd_showbypass_config_port =
5740 TOKEN_NUM_INITIALIZER(struct cmd_show_bypass_config_result,
5741 port_id, RTE_UINT16);
5743 cmdline_parse_inst_t cmd_show_bypass_config = {
5744 .f = cmd_show_bypass_config_parsed,
5745 .help_str = "show bypass config <port_id>: "
5746 "Show the NIC bypass config for port_id",
5749 (void *)&cmd_showbypass_config_show,
5750 (void *)&cmd_showbypass_config_bypass,
5751 (void *)&cmd_showbypass_config_config,
5752 (void *)&cmd_showbypass_config_port,
5758 /* *** SET BONDING MODE *** */
5759 struct cmd_set_bonding_mode_result {
5760 cmdline_fixed_string_t set;
5761 cmdline_fixed_string_t bonding;
5762 cmdline_fixed_string_t mode;
5767 static void cmd_set_bonding_mode_parsed(void *parsed_result,
5768 __rte_unused struct cmdline *cl,
5769 __rte_unused void *data)
5771 struct cmd_set_bonding_mode_result *res = parsed_result;
5772 portid_t port_id = res->port_id;
5774 /* Set the bonding mode for the relevant port. */
5775 if (0 != rte_eth_bond_mode_set(port_id, res->value))
5776 printf("\t Failed to set bonding mode for port = %d.\n", port_id);
5779 cmdline_parse_token_string_t cmd_setbonding_mode_set =
5780 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
5782 cmdline_parse_token_string_t cmd_setbonding_mode_bonding =
5783 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
5784 bonding, "bonding");
5785 cmdline_parse_token_string_t cmd_setbonding_mode_mode =
5786 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
5788 cmdline_parse_token_num_t cmd_setbonding_mode_value =
5789 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
5791 cmdline_parse_token_num_t cmd_setbonding_mode_port =
5792 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
5793 port_id, RTE_UINT16);
5795 cmdline_parse_inst_t cmd_set_bonding_mode = {
5796 .f = cmd_set_bonding_mode_parsed,
5797 .help_str = "set bonding mode <mode_value> <port_id>: "
5798 "Set the bonding mode for port_id",
5801 (void *) &cmd_setbonding_mode_set,
5802 (void *) &cmd_setbonding_mode_bonding,
5803 (void *) &cmd_setbonding_mode_mode,
5804 (void *) &cmd_setbonding_mode_value,
5805 (void *) &cmd_setbonding_mode_port,
5810 /* *** SET BONDING SLOW_QUEUE SW/HW *** */
5811 struct cmd_set_bonding_lacp_dedicated_queues_result {
5812 cmdline_fixed_string_t set;
5813 cmdline_fixed_string_t bonding;
5814 cmdline_fixed_string_t lacp;
5815 cmdline_fixed_string_t dedicated_queues;
5817 cmdline_fixed_string_t mode;
5820 static void cmd_set_bonding_lacp_dedicated_queues_parsed(void *parsed_result,
5821 __rte_unused struct cmdline *cl,
5822 __rte_unused void *data)
5824 struct cmd_set_bonding_lacp_dedicated_queues_result *res = parsed_result;
5825 portid_t port_id = res->port_id;
5826 struct rte_port *port;
5828 port = &ports[port_id];
5830 /** Check if the port is not started **/
5831 if (port->port_status != RTE_PORT_STOPPED) {
5832 printf("Please stop port %d first\n", port_id);
5836 if (!strcmp(res->mode, "enable")) {
5837 if (rte_eth_bond_8023ad_dedicated_queues_enable(port_id) == 0)
5838 printf("Dedicate queues for LACP control packets"
5841 printf("Enabling dedicate queues for LACP control "
5842 "packets on port %d failed\n", port_id);
5843 } else if (!strcmp(res->mode, "disable")) {
5844 if (rte_eth_bond_8023ad_dedicated_queues_disable(port_id) == 0)
5845 printf("Dedicated queues for LACP control packets "
5848 printf("Disabling dedicated queues for LACP control "
5849 "traffic on port %d failed\n", port_id);
5853 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_set =
5854 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5856 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_bonding =
5857 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5858 bonding, "bonding");
5859 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_lacp =
5860 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5862 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_dedicated_queues =
5863 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5864 dedicated_queues, "dedicated_queues");
5865 cmdline_parse_token_num_t cmd_setbonding_lacp_dedicated_queues_port_id =
5866 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5867 port_id, RTE_UINT16);
5868 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_mode =
5869 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5870 mode, "enable#disable");
5872 cmdline_parse_inst_t cmd_set_lacp_dedicated_queues = {
5873 .f = cmd_set_bonding_lacp_dedicated_queues_parsed,
5874 .help_str = "set bonding lacp dedicated_queues <port_id> "
5876 "Enable/disable dedicated queues for LACP control traffic for port_id",
5879 (void *)&cmd_setbonding_lacp_dedicated_queues_set,
5880 (void *)&cmd_setbonding_lacp_dedicated_queues_bonding,
5881 (void *)&cmd_setbonding_lacp_dedicated_queues_lacp,
5882 (void *)&cmd_setbonding_lacp_dedicated_queues_dedicated_queues,
5883 (void *)&cmd_setbonding_lacp_dedicated_queues_port_id,
5884 (void *)&cmd_setbonding_lacp_dedicated_queues_mode,
5889 /* *** SET BALANCE XMIT POLICY *** */
5890 struct cmd_set_bonding_balance_xmit_policy_result {
5891 cmdline_fixed_string_t set;
5892 cmdline_fixed_string_t bonding;
5893 cmdline_fixed_string_t balance_xmit_policy;
5895 cmdline_fixed_string_t policy;
5898 static void cmd_set_bonding_balance_xmit_policy_parsed(void *parsed_result,
5899 __rte_unused struct cmdline *cl,
5900 __rte_unused void *data)
5902 struct cmd_set_bonding_balance_xmit_policy_result *res = parsed_result;
5903 portid_t port_id = res->port_id;
5906 if (!strcmp(res->policy, "l2")) {
5907 policy = BALANCE_XMIT_POLICY_LAYER2;
5908 } else if (!strcmp(res->policy, "l23")) {
5909 policy = BALANCE_XMIT_POLICY_LAYER23;
5910 } else if (!strcmp(res->policy, "l34")) {
5911 policy = BALANCE_XMIT_POLICY_LAYER34;
5913 printf("\t Invalid xmit policy selection");
5917 /* Set the bonding mode for the relevant port. */
5918 if (0 != rte_eth_bond_xmit_policy_set(port_id, policy)) {
5919 printf("\t Failed to set bonding balance xmit policy for port = %d.\n",
5924 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_set =
5925 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5927 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_bonding =
5928 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5929 bonding, "bonding");
5930 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_balance_xmit_policy =
5931 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5932 balance_xmit_policy, "balance_xmit_policy");
5933 cmdline_parse_token_num_t cmd_setbonding_balance_xmit_policy_port =
5934 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5935 port_id, RTE_UINT16);
5936 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_policy =
5937 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5938 policy, "l2#l23#l34");
5940 cmdline_parse_inst_t cmd_set_balance_xmit_policy = {
5941 .f = cmd_set_bonding_balance_xmit_policy_parsed,
5942 .help_str = "set bonding balance_xmit_policy <port_id> "
5944 "Set the bonding balance_xmit_policy for port_id",
5947 (void *)&cmd_setbonding_balance_xmit_policy_set,
5948 (void *)&cmd_setbonding_balance_xmit_policy_bonding,
5949 (void *)&cmd_setbonding_balance_xmit_policy_balance_xmit_policy,
5950 (void *)&cmd_setbonding_balance_xmit_policy_port,
5951 (void *)&cmd_setbonding_balance_xmit_policy_policy,
5956 /* *** SHOW NIC BONDING CONFIGURATION *** */
5957 struct cmd_show_bonding_config_result {
5958 cmdline_fixed_string_t show;
5959 cmdline_fixed_string_t bonding;
5960 cmdline_fixed_string_t config;
5964 static void cmd_show_bonding_config_parsed(void *parsed_result,
5965 __rte_unused struct cmdline *cl,
5966 __rte_unused void *data)
5968 struct cmd_show_bonding_config_result *res = parsed_result;
5969 int bonding_mode, agg_mode;
5970 portid_t slaves[RTE_MAX_ETHPORTS];
5971 int num_slaves, num_active_slaves;
5974 portid_t port_id = res->port_id;
5976 /* Display the bonding mode.*/
5977 bonding_mode = rte_eth_bond_mode_get(port_id);
5978 if (bonding_mode < 0) {
5979 printf("\tFailed to get bonding mode for port = %d\n", port_id);
5982 printf("\tBonding mode: %d\n", bonding_mode);
5984 if (bonding_mode == BONDING_MODE_BALANCE) {
5985 int balance_xmit_policy;
5987 balance_xmit_policy = rte_eth_bond_xmit_policy_get(port_id);
5988 if (balance_xmit_policy < 0) {
5989 printf("\tFailed to get balance xmit policy for port = %d\n",
5993 printf("\tBalance Xmit Policy: ");
5995 switch (balance_xmit_policy) {
5996 case BALANCE_XMIT_POLICY_LAYER2:
5997 printf("BALANCE_XMIT_POLICY_LAYER2");
5999 case BALANCE_XMIT_POLICY_LAYER23:
6000 printf("BALANCE_XMIT_POLICY_LAYER23");
6002 case BALANCE_XMIT_POLICY_LAYER34:
6003 printf("BALANCE_XMIT_POLICY_LAYER34");
6010 if (bonding_mode == BONDING_MODE_8023AD) {
6011 agg_mode = rte_eth_bond_8023ad_agg_selection_get(port_id);
6012 printf("\tIEEE802.3AD Aggregator Mode: ");
6015 printf("bandwidth");
6027 num_slaves = rte_eth_bond_slaves_get(port_id, slaves, RTE_MAX_ETHPORTS);
6029 if (num_slaves < 0) {
6030 printf("\tFailed to get slave list for port = %d\n", port_id);
6033 if (num_slaves > 0) {
6034 printf("\tSlaves (%d): [", num_slaves);
6035 for (i = 0; i < num_slaves - 1; i++)
6036 printf("%d ", slaves[i]);
6038 printf("%d]\n", slaves[num_slaves - 1]);
6040 printf("\tSlaves: []\n");
6044 num_active_slaves = rte_eth_bond_active_slaves_get(port_id, slaves,
6047 if (num_active_slaves < 0) {
6048 printf("\tFailed to get active slave list for port = %d\n", port_id);
6051 if (num_active_slaves > 0) {
6052 printf("\tActive Slaves (%d): [", num_active_slaves);
6053 for (i = 0; i < num_active_slaves - 1; i++)
6054 printf("%d ", slaves[i]);
6056 printf("%d]\n", slaves[num_active_slaves - 1]);
6059 printf("\tActive Slaves: []\n");
6063 primary_id = rte_eth_bond_primary_get(port_id);
6064 if (primary_id < 0) {
6065 printf("\tFailed to get primary slave for port = %d\n", port_id);
6068 printf("\tPrimary: [%d]\n", primary_id);
6072 cmdline_parse_token_string_t cmd_showbonding_config_show =
6073 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
6075 cmdline_parse_token_string_t cmd_showbonding_config_bonding =
6076 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
6077 bonding, "bonding");
6078 cmdline_parse_token_string_t cmd_showbonding_config_config =
6079 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
6081 cmdline_parse_token_num_t cmd_showbonding_config_port =
6082 TOKEN_NUM_INITIALIZER(struct cmd_show_bonding_config_result,
6083 port_id, RTE_UINT16);
6085 cmdline_parse_inst_t cmd_show_bonding_config = {
6086 .f = cmd_show_bonding_config_parsed,
6087 .help_str = "show bonding config <port_id>: "
6088 "Show the bonding config for port_id",
6091 (void *)&cmd_showbonding_config_show,
6092 (void *)&cmd_showbonding_config_bonding,
6093 (void *)&cmd_showbonding_config_config,
6094 (void *)&cmd_showbonding_config_port,
6099 /* *** SET BONDING PRIMARY *** */
6100 struct cmd_set_bonding_primary_result {
6101 cmdline_fixed_string_t set;
6102 cmdline_fixed_string_t bonding;
6103 cmdline_fixed_string_t primary;
6108 static void cmd_set_bonding_primary_parsed(void *parsed_result,
6109 __rte_unused struct cmdline *cl,
6110 __rte_unused void *data)
6112 struct cmd_set_bonding_primary_result *res = parsed_result;
6113 portid_t master_port_id = res->port_id;
6114 portid_t slave_port_id = res->slave_id;
6116 /* Set the primary slave for a bonded device. */
6117 if (0 != rte_eth_bond_primary_set(master_port_id, slave_port_id)) {
6118 printf("\t Failed to set primary slave for port = %d.\n",
6125 cmdline_parse_token_string_t cmd_setbonding_primary_set =
6126 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
6128 cmdline_parse_token_string_t cmd_setbonding_primary_bonding =
6129 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
6130 bonding, "bonding");
6131 cmdline_parse_token_string_t cmd_setbonding_primary_primary =
6132 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
6133 primary, "primary");
6134 cmdline_parse_token_num_t cmd_setbonding_primary_slave =
6135 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
6136 slave_id, RTE_UINT16);
6137 cmdline_parse_token_num_t cmd_setbonding_primary_port =
6138 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
6139 port_id, RTE_UINT16);
6141 cmdline_parse_inst_t cmd_set_bonding_primary = {
6142 .f = cmd_set_bonding_primary_parsed,
6143 .help_str = "set bonding primary <slave_id> <port_id>: "
6144 "Set the primary slave for port_id",
6147 (void *)&cmd_setbonding_primary_set,
6148 (void *)&cmd_setbonding_primary_bonding,
6149 (void *)&cmd_setbonding_primary_primary,
6150 (void *)&cmd_setbonding_primary_slave,
6151 (void *)&cmd_setbonding_primary_port,
6156 /* *** ADD SLAVE *** */
6157 struct cmd_add_bonding_slave_result {
6158 cmdline_fixed_string_t add;
6159 cmdline_fixed_string_t bonding;
6160 cmdline_fixed_string_t slave;
6165 static void cmd_add_bonding_slave_parsed(void *parsed_result,
6166 __rte_unused struct cmdline *cl,
6167 __rte_unused void *data)
6169 struct cmd_add_bonding_slave_result *res = parsed_result;
6170 portid_t master_port_id = res->port_id;
6171 portid_t slave_port_id = res->slave_id;
6173 /* add the slave for a bonded device. */
6174 if (0 != rte_eth_bond_slave_add(master_port_id, slave_port_id)) {
6175 printf("\t Failed to add slave %d to master port = %d.\n",
6176 slave_port_id, master_port_id);
6180 set_port_slave_flag(slave_port_id);
6183 cmdline_parse_token_string_t cmd_addbonding_slave_add =
6184 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
6186 cmdline_parse_token_string_t cmd_addbonding_slave_bonding =
6187 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
6188 bonding, "bonding");
6189 cmdline_parse_token_string_t cmd_addbonding_slave_slave =
6190 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
6192 cmdline_parse_token_num_t cmd_addbonding_slave_slaveid =
6193 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
6194 slave_id, RTE_UINT16);
6195 cmdline_parse_token_num_t cmd_addbonding_slave_port =
6196 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
6197 port_id, RTE_UINT16);
6199 cmdline_parse_inst_t cmd_add_bonding_slave = {
6200 .f = cmd_add_bonding_slave_parsed,
6201 .help_str = "add bonding slave <slave_id> <port_id>: "
6202 "Add a slave device to a bonded device",
6205 (void *)&cmd_addbonding_slave_add,
6206 (void *)&cmd_addbonding_slave_bonding,
6207 (void *)&cmd_addbonding_slave_slave,
6208 (void *)&cmd_addbonding_slave_slaveid,
6209 (void *)&cmd_addbonding_slave_port,
6214 /* *** REMOVE SLAVE *** */
6215 struct cmd_remove_bonding_slave_result {
6216 cmdline_fixed_string_t remove;
6217 cmdline_fixed_string_t bonding;
6218 cmdline_fixed_string_t slave;
6223 static void cmd_remove_bonding_slave_parsed(void *parsed_result,
6224 __rte_unused struct cmdline *cl,
6225 __rte_unused void *data)
6227 struct cmd_remove_bonding_slave_result *res = parsed_result;
6228 portid_t master_port_id = res->port_id;
6229 portid_t slave_port_id = res->slave_id;
6231 /* remove the slave from a bonded device. */
6232 if (0 != rte_eth_bond_slave_remove(master_port_id, slave_port_id)) {
6233 printf("\t Failed to remove slave %d from master port = %d.\n",
6234 slave_port_id, master_port_id);
6238 clear_port_slave_flag(slave_port_id);
6241 cmdline_parse_token_string_t cmd_removebonding_slave_remove =
6242 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
6244 cmdline_parse_token_string_t cmd_removebonding_slave_bonding =
6245 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
6246 bonding, "bonding");
6247 cmdline_parse_token_string_t cmd_removebonding_slave_slave =
6248 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
6250 cmdline_parse_token_num_t cmd_removebonding_slave_slaveid =
6251 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
6252 slave_id, RTE_UINT16);
6253 cmdline_parse_token_num_t cmd_removebonding_slave_port =
6254 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
6255 port_id, RTE_UINT16);
6257 cmdline_parse_inst_t cmd_remove_bonding_slave = {
6258 .f = cmd_remove_bonding_slave_parsed,
6259 .help_str = "remove bonding slave <slave_id> <port_id>: "
6260 "Remove a slave device from a bonded device",
6263 (void *)&cmd_removebonding_slave_remove,
6264 (void *)&cmd_removebonding_slave_bonding,
6265 (void *)&cmd_removebonding_slave_slave,
6266 (void *)&cmd_removebonding_slave_slaveid,
6267 (void *)&cmd_removebonding_slave_port,
6272 /* *** CREATE BONDED DEVICE *** */
6273 struct cmd_create_bonded_device_result {
6274 cmdline_fixed_string_t create;
6275 cmdline_fixed_string_t bonded;
6276 cmdline_fixed_string_t device;
6281 static int bond_dev_num = 0;
6283 static void cmd_create_bonded_device_parsed(void *parsed_result,
6284 __rte_unused struct cmdline *cl,
6285 __rte_unused void *data)
6287 struct cmd_create_bonded_device_result *res = parsed_result;
6288 char ethdev_name[RTE_ETH_NAME_MAX_LEN];
6292 if (test_done == 0) {
6293 printf("Please stop forwarding first\n");
6297 snprintf(ethdev_name, RTE_ETH_NAME_MAX_LEN, "net_bonding_testpmd_%d",
6300 /* Create a new bonded device. */
6301 port_id = rte_eth_bond_create(ethdev_name, res->mode, res->socket);
6303 printf("\t Failed to create bonded device.\n");
6306 printf("Created new bonded device %s on (port %d).\n", ethdev_name,
6309 /* Update number of ports */
6310 nb_ports = rte_eth_dev_count_avail();
6311 reconfig(port_id, res->socket);
6312 ret = rte_eth_promiscuous_enable(port_id);
6314 printf("Failed to enable promiscuous mode for port %u: %s - ignore\n",
6315 port_id, rte_strerror(-ret));
6317 ports[port_id].need_setup = 0;
6318 ports[port_id].port_status = RTE_PORT_STOPPED;
6323 cmdline_parse_token_string_t cmd_createbonded_device_create =
6324 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
6326 cmdline_parse_token_string_t cmd_createbonded_device_bonded =
6327 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
6329 cmdline_parse_token_string_t cmd_createbonded_device_device =
6330 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
6332 cmdline_parse_token_num_t cmd_createbonded_device_mode =
6333 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
6335 cmdline_parse_token_num_t cmd_createbonded_device_socket =
6336 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
6339 cmdline_parse_inst_t cmd_create_bonded_device = {
6340 .f = cmd_create_bonded_device_parsed,
6341 .help_str = "create bonded device <mode> <socket>: "
6342 "Create a new bonded device with specific bonding mode and socket",
6345 (void *)&cmd_createbonded_device_create,
6346 (void *)&cmd_createbonded_device_bonded,
6347 (void *)&cmd_createbonded_device_device,
6348 (void *)&cmd_createbonded_device_mode,
6349 (void *)&cmd_createbonded_device_socket,
6354 /* *** SET MAC ADDRESS IN BONDED DEVICE *** */
6355 struct cmd_set_bond_mac_addr_result {
6356 cmdline_fixed_string_t set;
6357 cmdline_fixed_string_t bonding;
6358 cmdline_fixed_string_t mac_addr;
6360 struct rte_ether_addr address;
6363 static void cmd_set_bond_mac_addr_parsed(void *parsed_result,
6364 __rte_unused struct cmdline *cl,
6365 __rte_unused void *data)
6367 struct cmd_set_bond_mac_addr_result *res = parsed_result;
6370 if (port_id_is_invalid(res->port_num, ENABLED_WARN))
6373 ret = rte_eth_bond_mac_address_set(res->port_num, &res->address);
6375 /* check the return value and print it if is < 0 */
6377 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
6380 cmdline_parse_token_string_t cmd_set_bond_mac_addr_set =
6381 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, set, "set");
6382 cmdline_parse_token_string_t cmd_set_bond_mac_addr_bonding =
6383 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, bonding,
6385 cmdline_parse_token_string_t cmd_set_bond_mac_addr_mac =
6386 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, mac_addr,
6388 cmdline_parse_token_num_t cmd_set_bond_mac_addr_portnum =
6389 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mac_addr_result,
6390 port_num, RTE_UINT16);
6391 cmdline_parse_token_etheraddr_t cmd_set_bond_mac_addr_addr =
6392 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_bond_mac_addr_result, address);
6394 cmdline_parse_inst_t cmd_set_bond_mac_addr = {
6395 .f = cmd_set_bond_mac_addr_parsed,
6397 .help_str = "set bonding mac_addr <port_id> <mac_addr>",
6399 (void *)&cmd_set_bond_mac_addr_set,
6400 (void *)&cmd_set_bond_mac_addr_bonding,
6401 (void *)&cmd_set_bond_mac_addr_mac,
6402 (void *)&cmd_set_bond_mac_addr_portnum,
6403 (void *)&cmd_set_bond_mac_addr_addr,
6409 /* *** SET LINK STATUS MONITORING POLLING PERIOD ON BONDED DEVICE *** */
6410 struct cmd_set_bond_mon_period_result {
6411 cmdline_fixed_string_t set;
6412 cmdline_fixed_string_t bonding;
6413 cmdline_fixed_string_t mon_period;
6418 static void cmd_set_bond_mon_period_parsed(void *parsed_result,
6419 __rte_unused struct cmdline *cl,
6420 __rte_unused void *data)
6422 struct cmd_set_bond_mon_period_result *res = parsed_result;
6425 ret = rte_eth_bond_link_monitoring_set(res->port_num, res->period_ms);
6427 /* check the return value and print it if is < 0 */
6429 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
6432 cmdline_parse_token_string_t cmd_set_bond_mon_period_set =
6433 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
6435 cmdline_parse_token_string_t cmd_set_bond_mon_period_bonding =
6436 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
6437 bonding, "bonding");
6438 cmdline_parse_token_string_t cmd_set_bond_mon_period_mon_period =
6439 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
6440 mon_period, "mon_period");
6441 cmdline_parse_token_num_t cmd_set_bond_mon_period_portnum =
6442 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
6443 port_num, RTE_UINT16);
6444 cmdline_parse_token_num_t cmd_set_bond_mon_period_period_ms =
6445 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
6446 period_ms, RTE_UINT32);
6448 cmdline_parse_inst_t cmd_set_bond_mon_period = {
6449 .f = cmd_set_bond_mon_period_parsed,
6451 .help_str = "set bonding mon_period <port_id> <period_ms>",
6453 (void *)&cmd_set_bond_mon_period_set,
6454 (void *)&cmd_set_bond_mon_period_bonding,
6455 (void *)&cmd_set_bond_mon_period_mon_period,
6456 (void *)&cmd_set_bond_mon_period_portnum,
6457 (void *)&cmd_set_bond_mon_period_period_ms,
6464 struct cmd_set_bonding_agg_mode_policy_result {
6465 cmdline_fixed_string_t set;
6466 cmdline_fixed_string_t bonding;
6467 cmdline_fixed_string_t agg_mode;
6469 cmdline_fixed_string_t policy;
6474 cmd_set_bonding_agg_mode(void *parsed_result,
6475 __rte_unused struct cmdline *cl,
6476 __rte_unused void *data)
6478 struct cmd_set_bonding_agg_mode_policy_result *res = parsed_result;
6479 uint8_t policy = AGG_BANDWIDTH;
6481 if (!strcmp(res->policy, "bandwidth"))
6482 policy = AGG_BANDWIDTH;
6483 else if (!strcmp(res->policy, "stable"))
6484 policy = AGG_STABLE;
6485 else if (!strcmp(res->policy, "count"))
6488 rte_eth_bond_8023ad_agg_selection_set(res->port_num, policy);
6492 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_set =
6493 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6495 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_bonding =
6496 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6497 bonding, "bonding");
6499 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_agg_mode =
6500 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6501 agg_mode, "agg_mode");
6503 cmdline_parse_token_num_t cmd_set_bonding_agg_mode_portnum =
6504 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6505 port_num, RTE_UINT16);
6507 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_policy_string =
6508 TOKEN_STRING_INITIALIZER(
6509 struct cmd_set_bonding_balance_xmit_policy_result,
6510 policy, "stable#bandwidth#count");
6512 cmdline_parse_inst_t cmd_set_bonding_agg_mode_policy = {
6513 .f = cmd_set_bonding_agg_mode,
6515 .help_str = "set bonding mode IEEE802.3AD aggregator policy <port_id> <agg_name>",
6517 (void *)&cmd_set_bonding_agg_mode_set,
6518 (void *)&cmd_set_bonding_agg_mode_bonding,
6519 (void *)&cmd_set_bonding_agg_mode_agg_mode,
6520 (void *)&cmd_set_bonding_agg_mode_portnum,
6521 (void *)&cmd_set_bonding_agg_mode_policy_string,
6527 #endif /* RTE_NET_BOND */
6529 /* *** SET FORWARDING MODE *** */
6530 struct cmd_set_fwd_mode_result {
6531 cmdline_fixed_string_t set;
6532 cmdline_fixed_string_t fwd;
6533 cmdline_fixed_string_t mode;
6536 static void cmd_set_fwd_mode_parsed(void *parsed_result,
6537 __rte_unused struct cmdline *cl,
6538 __rte_unused void *data)
6540 struct cmd_set_fwd_mode_result *res = parsed_result;
6543 set_pkt_forwarding_mode(res->mode);
6546 cmdline_parse_token_string_t cmd_setfwd_set =
6547 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, set, "set");
6548 cmdline_parse_token_string_t cmd_setfwd_fwd =
6549 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, fwd, "fwd");
6550 cmdline_parse_token_string_t cmd_setfwd_mode =
6551 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, mode,
6552 "" /* defined at init */);
6554 cmdline_parse_inst_t cmd_set_fwd_mode = {
6555 .f = cmd_set_fwd_mode_parsed,
6557 .help_str = NULL, /* defined at init */
6559 (void *)&cmd_setfwd_set,
6560 (void *)&cmd_setfwd_fwd,
6561 (void *)&cmd_setfwd_mode,
6566 static void cmd_set_fwd_mode_init(void)
6569 static char token[128];
6570 static char help[256];
6571 cmdline_parse_token_string_t *token_struct;
6573 modes = list_pkt_forwarding_modes();
6574 snprintf(help, sizeof(help), "set fwd %s: "
6575 "Set packet forwarding mode", modes);
6576 cmd_set_fwd_mode.help_str = help;
6578 /* string token separator is # */
6579 for (c = token; *modes != '\0'; modes++)
6584 token_struct = (cmdline_parse_token_string_t*)cmd_set_fwd_mode.tokens[2];
6585 token_struct->string_data.str = token;
6588 /* *** SET RETRY FORWARDING MODE *** */
6589 struct cmd_set_fwd_retry_mode_result {
6590 cmdline_fixed_string_t set;
6591 cmdline_fixed_string_t fwd;
6592 cmdline_fixed_string_t mode;
6593 cmdline_fixed_string_t retry;
6596 static void cmd_set_fwd_retry_mode_parsed(void *parsed_result,
6597 __rte_unused struct cmdline *cl,
6598 __rte_unused void *data)
6600 struct cmd_set_fwd_retry_mode_result *res = parsed_result;
6603 set_pkt_forwarding_mode(res->mode);
6606 cmdline_parse_token_string_t cmd_setfwd_retry_set =
6607 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6609 cmdline_parse_token_string_t cmd_setfwd_retry_fwd =
6610 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6612 cmdline_parse_token_string_t cmd_setfwd_retry_mode =
6613 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6615 "" /* defined at init */);
6616 cmdline_parse_token_string_t cmd_setfwd_retry_retry =
6617 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6620 cmdline_parse_inst_t cmd_set_fwd_retry_mode = {
6621 .f = cmd_set_fwd_retry_mode_parsed,
6623 .help_str = NULL, /* defined at init */
6625 (void *)&cmd_setfwd_retry_set,
6626 (void *)&cmd_setfwd_retry_fwd,
6627 (void *)&cmd_setfwd_retry_mode,
6628 (void *)&cmd_setfwd_retry_retry,
6633 static void cmd_set_fwd_retry_mode_init(void)
6636 static char token[128];
6637 static char help[256];
6638 cmdline_parse_token_string_t *token_struct;
6640 modes = list_pkt_forwarding_retry_modes();
6641 snprintf(help, sizeof(help), "set fwd %s retry: "
6642 "Set packet forwarding mode with retry", modes);
6643 cmd_set_fwd_retry_mode.help_str = help;
6645 /* string token separator is # */
6646 for (c = token; *modes != '\0'; modes++)
6651 token_struct = (cmdline_parse_token_string_t *)
6652 cmd_set_fwd_retry_mode.tokens[2];
6653 token_struct->string_data.str = token;
6656 /* *** SET BURST TX DELAY TIME RETRY NUMBER *** */
6657 struct cmd_set_burst_tx_retry_result {
6658 cmdline_fixed_string_t set;
6659 cmdline_fixed_string_t burst;
6660 cmdline_fixed_string_t tx;
6661 cmdline_fixed_string_t delay;
6663 cmdline_fixed_string_t retry;
6667 static void cmd_set_burst_tx_retry_parsed(void *parsed_result,
6668 __rte_unused struct cmdline *cl,
6669 __rte_unused void *data)
6671 struct cmd_set_burst_tx_retry_result *res = parsed_result;
6673 if (!strcmp(res->set, "set") && !strcmp(res->burst, "burst")
6674 && !strcmp(res->tx, "tx")) {
6675 if (!strcmp(res->delay, "delay"))
6676 burst_tx_delay_time = res->time;
6677 if (!strcmp(res->retry, "retry"))
6678 burst_tx_retry_num = res->retry_num;
6683 cmdline_parse_token_string_t cmd_set_burst_tx_retry_set =
6684 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, set, "set");
6685 cmdline_parse_token_string_t cmd_set_burst_tx_retry_burst =
6686 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, burst,
6688 cmdline_parse_token_string_t cmd_set_burst_tx_retry_tx =
6689 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, tx, "tx");
6690 cmdline_parse_token_string_t cmd_set_burst_tx_retry_delay =
6691 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, delay, "delay");
6692 cmdline_parse_token_num_t cmd_set_burst_tx_retry_time =
6693 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, time,
6695 cmdline_parse_token_string_t cmd_set_burst_tx_retry_retry =
6696 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry, "retry");
6697 cmdline_parse_token_num_t cmd_set_burst_tx_retry_retry_num =
6698 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry_num,
6701 cmdline_parse_inst_t cmd_set_burst_tx_retry = {
6702 .f = cmd_set_burst_tx_retry_parsed,
6703 .help_str = "set burst tx delay <delay_usec> retry <num_retry>",
6705 (void *)&cmd_set_burst_tx_retry_set,
6706 (void *)&cmd_set_burst_tx_retry_burst,
6707 (void *)&cmd_set_burst_tx_retry_tx,
6708 (void *)&cmd_set_burst_tx_retry_delay,
6709 (void *)&cmd_set_burst_tx_retry_time,
6710 (void *)&cmd_set_burst_tx_retry_retry,
6711 (void *)&cmd_set_burst_tx_retry_retry_num,
6716 /* *** SET PROMISC MODE *** */
6717 struct cmd_set_promisc_mode_result {
6718 cmdline_fixed_string_t set;
6719 cmdline_fixed_string_t promisc;
6720 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
6721 uint16_t port_num; /* valid if "allports" argument == 0 */
6722 cmdline_fixed_string_t mode;
6725 static void cmd_set_promisc_mode_parsed(void *parsed_result,
6726 __rte_unused struct cmdline *cl,
6729 struct cmd_set_promisc_mode_result *res = parsed_result;
6733 if (!strcmp(res->mode, "on"))
6740 RTE_ETH_FOREACH_DEV(i)
6741 eth_set_promisc_mode(i, enable);
6743 eth_set_promisc_mode(res->port_num, enable);
6747 cmdline_parse_token_string_t cmd_setpromisc_set =
6748 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, set, "set");
6749 cmdline_parse_token_string_t cmd_setpromisc_promisc =
6750 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, promisc,
6752 cmdline_parse_token_string_t cmd_setpromisc_portall =
6753 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, port_all,
6755 cmdline_parse_token_num_t cmd_setpromisc_portnum =
6756 TOKEN_NUM_INITIALIZER(struct cmd_set_promisc_mode_result, port_num,
6758 cmdline_parse_token_string_t cmd_setpromisc_mode =
6759 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, mode,
6762 cmdline_parse_inst_t cmd_set_promisc_mode_all = {
6763 .f = cmd_set_promisc_mode_parsed,
6765 .help_str = "set promisc all on|off: Set promisc mode for all ports",
6767 (void *)&cmd_setpromisc_set,
6768 (void *)&cmd_setpromisc_promisc,
6769 (void *)&cmd_setpromisc_portall,
6770 (void *)&cmd_setpromisc_mode,
6775 cmdline_parse_inst_t cmd_set_promisc_mode_one = {
6776 .f = cmd_set_promisc_mode_parsed,
6778 .help_str = "set promisc <port_id> on|off: Set promisc mode on port_id",
6780 (void *)&cmd_setpromisc_set,
6781 (void *)&cmd_setpromisc_promisc,
6782 (void *)&cmd_setpromisc_portnum,
6783 (void *)&cmd_setpromisc_mode,
6788 /* *** SET ALLMULTI MODE *** */
6789 struct cmd_set_allmulti_mode_result {
6790 cmdline_fixed_string_t set;
6791 cmdline_fixed_string_t allmulti;
6792 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
6793 uint16_t port_num; /* valid if "allports" argument == 0 */
6794 cmdline_fixed_string_t mode;
6797 static void cmd_set_allmulti_mode_parsed(void *parsed_result,
6798 __rte_unused struct cmdline *cl,
6801 struct cmd_set_allmulti_mode_result *res = parsed_result;
6805 if (!strcmp(res->mode, "on"))
6812 RTE_ETH_FOREACH_DEV(i) {
6813 eth_set_allmulticast_mode(i, enable);
6817 eth_set_allmulticast_mode(res->port_num, enable);
6821 cmdline_parse_token_string_t cmd_setallmulti_set =
6822 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, set, "set");
6823 cmdline_parse_token_string_t cmd_setallmulti_allmulti =
6824 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, allmulti,
6826 cmdline_parse_token_string_t cmd_setallmulti_portall =
6827 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, port_all,
6829 cmdline_parse_token_num_t cmd_setallmulti_portnum =
6830 TOKEN_NUM_INITIALIZER(struct cmd_set_allmulti_mode_result, port_num,
6832 cmdline_parse_token_string_t cmd_setallmulti_mode =
6833 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, mode,
6836 cmdline_parse_inst_t cmd_set_allmulti_mode_all = {
6837 .f = cmd_set_allmulti_mode_parsed,
6839 .help_str = "set allmulti all on|off: Set allmulti mode for all ports",
6841 (void *)&cmd_setallmulti_set,
6842 (void *)&cmd_setallmulti_allmulti,
6843 (void *)&cmd_setallmulti_portall,
6844 (void *)&cmd_setallmulti_mode,
6849 cmdline_parse_inst_t cmd_set_allmulti_mode_one = {
6850 .f = cmd_set_allmulti_mode_parsed,
6852 .help_str = "set allmulti <port_id> on|off: "
6853 "Set allmulti mode on port_id",
6855 (void *)&cmd_setallmulti_set,
6856 (void *)&cmd_setallmulti_allmulti,
6857 (void *)&cmd_setallmulti_portnum,
6858 (void *)&cmd_setallmulti_mode,
6863 /* *** SETUP ETHERNET LINK FLOW CONTROL *** */
6864 struct cmd_link_flow_ctrl_set_result {
6865 cmdline_fixed_string_t set;
6866 cmdline_fixed_string_t flow_ctrl;
6867 cmdline_fixed_string_t rx;
6868 cmdline_fixed_string_t rx_lfc_mode;
6869 cmdline_fixed_string_t tx;
6870 cmdline_fixed_string_t tx_lfc_mode;
6871 cmdline_fixed_string_t mac_ctrl_frame_fwd;
6872 cmdline_fixed_string_t mac_ctrl_frame_fwd_mode;
6873 cmdline_fixed_string_t autoneg_str;
6874 cmdline_fixed_string_t autoneg;
6875 cmdline_fixed_string_t hw_str;
6876 uint32_t high_water;
6877 cmdline_fixed_string_t lw_str;
6879 cmdline_fixed_string_t pt_str;
6880 uint16_t pause_time;
6881 cmdline_fixed_string_t xon_str;
6886 cmdline_parse_token_string_t cmd_lfc_set_set =
6887 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6889 cmdline_parse_token_string_t cmd_lfc_set_flow_ctrl =
6890 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6891 flow_ctrl, "flow_ctrl");
6892 cmdline_parse_token_string_t cmd_lfc_set_rx =
6893 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6895 cmdline_parse_token_string_t cmd_lfc_set_rx_mode =
6896 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6897 rx_lfc_mode, "on#off");
6898 cmdline_parse_token_string_t cmd_lfc_set_tx =
6899 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6901 cmdline_parse_token_string_t cmd_lfc_set_tx_mode =
6902 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6903 tx_lfc_mode, "on#off");
6904 cmdline_parse_token_string_t cmd_lfc_set_high_water_str =
6905 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6906 hw_str, "high_water");
6907 cmdline_parse_token_num_t cmd_lfc_set_high_water =
6908 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6909 high_water, RTE_UINT32);
6910 cmdline_parse_token_string_t cmd_lfc_set_low_water_str =
6911 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6912 lw_str, "low_water");
6913 cmdline_parse_token_num_t cmd_lfc_set_low_water =
6914 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6915 low_water, RTE_UINT32);
6916 cmdline_parse_token_string_t cmd_lfc_set_pause_time_str =
6917 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6918 pt_str, "pause_time");
6919 cmdline_parse_token_num_t cmd_lfc_set_pause_time =
6920 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6921 pause_time, RTE_UINT16);
6922 cmdline_parse_token_string_t cmd_lfc_set_send_xon_str =
6923 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6924 xon_str, "send_xon");
6925 cmdline_parse_token_num_t cmd_lfc_set_send_xon =
6926 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6927 send_xon, RTE_UINT16);
6928 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd_mode =
6929 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6930 mac_ctrl_frame_fwd, "mac_ctrl_frame_fwd");
6931 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd =
6932 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6933 mac_ctrl_frame_fwd_mode, "on#off");
6934 cmdline_parse_token_string_t cmd_lfc_set_autoneg_str =
6935 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6936 autoneg_str, "autoneg");
6937 cmdline_parse_token_string_t cmd_lfc_set_autoneg =
6938 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6940 cmdline_parse_token_num_t cmd_lfc_set_portid =
6941 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6942 port_id, RTE_UINT16);
6944 /* forward declaration */
6946 cmd_link_flow_ctrl_set_parsed(void *parsed_result, struct cmdline *cl,
6949 cmdline_parse_inst_t cmd_link_flow_control_set = {
6950 .f = cmd_link_flow_ctrl_set_parsed,
6952 .help_str = "set flow_ctrl rx on|off tx on|off <high_water> "
6953 "<low_water> <pause_time> <send_xon> mac_ctrl_frame_fwd on|off "
6954 "autoneg on|off <port_id>: Configure the Ethernet flow control",
6956 (void *)&cmd_lfc_set_set,
6957 (void *)&cmd_lfc_set_flow_ctrl,
6958 (void *)&cmd_lfc_set_rx,
6959 (void *)&cmd_lfc_set_rx_mode,
6960 (void *)&cmd_lfc_set_tx,
6961 (void *)&cmd_lfc_set_tx_mode,
6962 (void *)&cmd_lfc_set_high_water,
6963 (void *)&cmd_lfc_set_low_water,
6964 (void *)&cmd_lfc_set_pause_time,
6965 (void *)&cmd_lfc_set_send_xon,
6966 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
6967 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
6968 (void *)&cmd_lfc_set_autoneg_str,
6969 (void *)&cmd_lfc_set_autoneg,
6970 (void *)&cmd_lfc_set_portid,
6975 cmdline_parse_inst_t cmd_link_flow_control_set_rx = {
6976 .f = cmd_link_flow_ctrl_set_parsed,
6977 .data = (void *)&cmd_link_flow_control_set_rx,
6978 .help_str = "set flow_ctrl rx on|off <port_id>: "
6979 "Change rx flow control parameter",
6981 (void *)&cmd_lfc_set_set,
6982 (void *)&cmd_lfc_set_flow_ctrl,
6983 (void *)&cmd_lfc_set_rx,
6984 (void *)&cmd_lfc_set_rx_mode,
6985 (void *)&cmd_lfc_set_portid,
6990 cmdline_parse_inst_t cmd_link_flow_control_set_tx = {
6991 .f = cmd_link_flow_ctrl_set_parsed,
6992 .data = (void *)&cmd_link_flow_control_set_tx,
6993 .help_str = "set flow_ctrl tx on|off <port_id>: "
6994 "Change tx flow control parameter",
6996 (void *)&cmd_lfc_set_set,
6997 (void *)&cmd_lfc_set_flow_ctrl,
6998 (void *)&cmd_lfc_set_tx,
6999 (void *)&cmd_lfc_set_tx_mode,
7000 (void *)&cmd_lfc_set_portid,
7005 cmdline_parse_inst_t cmd_link_flow_control_set_hw = {
7006 .f = cmd_link_flow_ctrl_set_parsed,
7007 .data = (void *)&cmd_link_flow_control_set_hw,
7008 .help_str = "set flow_ctrl high_water <value> <port_id>: "
7009 "Change high water flow control parameter",
7011 (void *)&cmd_lfc_set_set,
7012 (void *)&cmd_lfc_set_flow_ctrl,
7013 (void *)&cmd_lfc_set_high_water_str,
7014 (void *)&cmd_lfc_set_high_water,
7015 (void *)&cmd_lfc_set_portid,
7020 cmdline_parse_inst_t cmd_link_flow_control_set_lw = {
7021 .f = cmd_link_flow_ctrl_set_parsed,
7022 .data = (void *)&cmd_link_flow_control_set_lw,
7023 .help_str = "set flow_ctrl low_water <value> <port_id>: "
7024 "Change low water flow control parameter",
7026 (void *)&cmd_lfc_set_set,
7027 (void *)&cmd_lfc_set_flow_ctrl,
7028 (void *)&cmd_lfc_set_low_water_str,
7029 (void *)&cmd_lfc_set_low_water,
7030 (void *)&cmd_lfc_set_portid,
7035 cmdline_parse_inst_t cmd_link_flow_control_set_pt = {
7036 .f = cmd_link_flow_ctrl_set_parsed,
7037 .data = (void *)&cmd_link_flow_control_set_pt,
7038 .help_str = "set flow_ctrl pause_time <value> <port_id>: "
7039 "Change pause time flow control parameter",
7041 (void *)&cmd_lfc_set_set,
7042 (void *)&cmd_lfc_set_flow_ctrl,
7043 (void *)&cmd_lfc_set_pause_time_str,
7044 (void *)&cmd_lfc_set_pause_time,
7045 (void *)&cmd_lfc_set_portid,
7050 cmdline_parse_inst_t cmd_link_flow_control_set_xon = {
7051 .f = cmd_link_flow_ctrl_set_parsed,
7052 .data = (void *)&cmd_link_flow_control_set_xon,
7053 .help_str = "set flow_ctrl send_xon <value> <port_id>: "
7054 "Change send_xon flow control parameter",
7056 (void *)&cmd_lfc_set_set,
7057 (void *)&cmd_lfc_set_flow_ctrl,
7058 (void *)&cmd_lfc_set_send_xon_str,
7059 (void *)&cmd_lfc_set_send_xon,
7060 (void *)&cmd_lfc_set_portid,
7065 cmdline_parse_inst_t cmd_link_flow_control_set_macfwd = {
7066 .f = cmd_link_flow_ctrl_set_parsed,
7067 .data = (void *)&cmd_link_flow_control_set_macfwd,
7068 .help_str = "set flow_ctrl mac_ctrl_frame_fwd on|off <port_id>: "
7069 "Change mac ctrl fwd flow control parameter",
7071 (void *)&cmd_lfc_set_set,
7072 (void *)&cmd_lfc_set_flow_ctrl,
7073 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
7074 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
7075 (void *)&cmd_lfc_set_portid,
7080 cmdline_parse_inst_t cmd_link_flow_control_set_autoneg = {
7081 .f = cmd_link_flow_ctrl_set_parsed,
7082 .data = (void *)&cmd_link_flow_control_set_autoneg,
7083 .help_str = "set flow_ctrl autoneg on|off <port_id>: "
7084 "Change autoneg flow control parameter",
7086 (void *)&cmd_lfc_set_set,
7087 (void *)&cmd_lfc_set_flow_ctrl,
7088 (void *)&cmd_lfc_set_autoneg_str,
7089 (void *)&cmd_lfc_set_autoneg,
7090 (void *)&cmd_lfc_set_portid,
7096 cmd_link_flow_ctrl_set_parsed(void *parsed_result,
7097 __rte_unused struct cmdline *cl,
7100 struct cmd_link_flow_ctrl_set_result *res = parsed_result;
7101 cmdline_parse_inst_t *cmd = data;
7102 struct rte_eth_fc_conf fc_conf;
7108 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
7109 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
7110 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
7111 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
7113 static enum rte_eth_fc_mode rx_tx_onoff_2_lfc_mode[2][2] = {
7114 {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL}
7117 /* Partial command line, retrieve current configuration */
7119 ret = rte_eth_dev_flow_ctrl_get(res->port_id, &fc_conf);
7121 printf("cannot get current flow ctrl parameters, return"
7122 "code = %d\n", ret);
7126 if ((fc_conf.mode == RTE_FC_RX_PAUSE) ||
7127 (fc_conf.mode == RTE_FC_FULL))
7129 if ((fc_conf.mode == RTE_FC_TX_PAUSE) ||
7130 (fc_conf.mode == RTE_FC_FULL))
7134 if (!cmd || cmd == &cmd_link_flow_control_set_rx)
7135 rx_fc_en = (!strcmp(res->rx_lfc_mode, "on")) ? 1 : 0;
7137 if (!cmd || cmd == &cmd_link_flow_control_set_tx)
7138 tx_fc_en = (!strcmp(res->tx_lfc_mode, "on")) ? 1 : 0;
7140 fc_conf.mode = rx_tx_onoff_2_lfc_mode[rx_fc_en][tx_fc_en];
7142 if (!cmd || cmd == &cmd_link_flow_control_set_hw)
7143 fc_conf.high_water = res->high_water;
7145 if (!cmd || cmd == &cmd_link_flow_control_set_lw)
7146 fc_conf.low_water = res->low_water;
7148 if (!cmd || cmd == &cmd_link_flow_control_set_pt)
7149 fc_conf.pause_time = res->pause_time;
7151 if (!cmd || cmd == &cmd_link_flow_control_set_xon)
7152 fc_conf.send_xon = res->send_xon;
7154 if (!cmd || cmd == &cmd_link_flow_control_set_macfwd) {
7155 if (!strcmp(res->mac_ctrl_frame_fwd_mode, "on"))
7156 fc_conf.mac_ctrl_frame_fwd = 1;
7158 fc_conf.mac_ctrl_frame_fwd = 0;
7161 if (!cmd || cmd == &cmd_link_flow_control_set_autoneg)
7162 fc_conf.autoneg = (!strcmp(res->autoneg, "on")) ? 1 : 0;
7164 ret = rte_eth_dev_flow_ctrl_set(res->port_id, &fc_conf);
7166 printf("bad flow contrl parameter, return code = %d \n", ret);
7169 /* *** SETUP ETHERNET PRIORITY FLOW CONTROL *** */
7170 struct cmd_priority_flow_ctrl_set_result {
7171 cmdline_fixed_string_t set;
7172 cmdline_fixed_string_t pfc_ctrl;
7173 cmdline_fixed_string_t rx;
7174 cmdline_fixed_string_t rx_pfc_mode;
7175 cmdline_fixed_string_t tx;
7176 cmdline_fixed_string_t tx_pfc_mode;
7177 uint32_t high_water;
7179 uint16_t pause_time;
7185 cmd_priority_flow_ctrl_set_parsed(void *parsed_result,
7186 __rte_unused struct cmdline *cl,
7187 __rte_unused void *data)
7189 struct cmd_priority_flow_ctrl_set_result *res = parsed_result;
7190 struct rte_eth_pfc_conf pfc_conf;
7191 int rx_fc_enable, tx_fc_enable;
7195 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
7196 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
7197 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
7198 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
7200 static enum rte_eth_fc_mode rx_tx_onoff_2_pfc_mode[2][2] = {
7201 {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL}
7204 memset(&pfc_conf, 0, sizeof(struct rte_eth_pfc_conf));
7205 rx_fc_enable = (!strncmp(res->rx_pfc_mode, "on",2)) ? 1 : 0;
7206 tx_fc_enable = (!strncmp(res->tx_pfc_mode, "on",2)) ? 1 : 0;
7207 pfc_conf.fc.mode = rx_tx_onoff_2_pfc_mode[rx_fc_enable][tx_fc_enable];
7208 pfc_conf.fc.high_water = res->high_water;
7209 pfc_conf.fc.low_water = res->low_water;
7210 pfc_conf.fc.pause_time = res->pause_time;
7211 pfc_conf.priority = res->priority;
7213 ret = rte_eth_dev_priority_flow_ctrl_set(res->port_id, &pfc_conf);
7215 printf("bad priority flow contrl parameter, return code = %d \n", ret);
7218 cmdline_parse_token_string_t cmd_pfc_set_set =
7219 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7221 cmdline_parse_token_string_t cmd_pfc_set_flow_ctrl =
7222 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7223 pfc_ctrl, "pfc_ctrl");
7224 cmdline_parse_token_string_t cmd_pfc_set_rx =
7225 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7227 cmdline_parse_token_string_t cmd_pfc_set_rx_mode =
7228 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7229 rx_pfc_mode, "on#off");
7230 cmdline_parse_token_string_t cmd_pfc_set_tx =
7231 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7233 cmdline_parse_token_string_t cmd_pfc_set_tx_mode =
7234 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7235 tx_pfc_mode, "on#off");
7236 cmdline_parse_token_num_t cmd_pfc_set_high_water =
7237 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7238 high_water, RTE_UINT32);
7239 cmdline_parse_token_num_t cmd_pfc_set_low_water =
7240 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7241 low_water, RTE_UINT32);
7242 cmdline_parse_token_num_t cmd_pfc_set_pause_time =
7243 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7244 pause_time, RTE_UINT16);
7245 cmdline_parse_token_num_t cmd_pfc_set_priority =
7246 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7247 priority, RTE_UINT8);
7248 cmdline_parse_token_num_t cmd_pfc_set_portid =
7249 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7250 port_id, RTE_UINT16);
7252 cmdline_parse_inst_t cmd_priority_flow_control_set = {
7253 .f = cmd_priority_flow_ctrl_set_parsed,
7255 .help_str = "set pfc_ctrl rx on|off tx on|off <high_water> <low_water> "
7256 "<pause_time> <priority> <port_id>: "
7257 "Configure the Ethernet priority flow control",
7259 (void *)&cmd_pfc_set_set,
7260 (void *)&cmd_pfc_set_flow_ctrl,
7261 (void *)&cmd_pfc_set_rx,
7262 (void *)&cmd_pfc_set_rx_mode,
7263 (void *)&cmd_pfc_set_tx,
7264 (void *)&cmd_pfc_set_tx_mode,
7265 (void *)&cmd_pfc_set_high_water,
7266 (void *)&cmd_pfc_set_low_water,
7267 (void *)&cmd_pfc_set_pause_time,
7268 (void *)&cmd_pfc_set_priority,
7269 (void *)&cmd_pfc_set_portid,
7274 /* *** RESET CONFIGURATION *** */
7275 struct cmd_reset_result {
7276 cmdline_fixed_string_t reset;
7277 cmdline_fixed_string_t def;
7280 static void cmd_reset_parsed(__rte_unused void *parsed_result,
7282 __rte_unused void *data)
7284 cmdline_printf(cl, "Reset to default forwarding configuration...\n");
7285 set_def_fwd_config();
7288 cmdline_parse_token_string_t cmd_reset_set =
7289 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, reset, "set");
7290 cmdline_parse_token_string_t cmd_reset_def =
7291 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, def,
7294 cmdline_parse_inst_t cmd_reset = {
7295 .f = cmd_reset_parsed,
7297 .help_str = "set default: Reset default forwarding configuration",
7299 (void *)&cmd_reset_set,
7300 (void *)&cmd_reset_def,
7305 /* *** START FORWARDING *** */
7306 struct cmd_start_result {
7307 cmdline_fixed_string_t start;
7310 cmdline_parse_token_string_t cmd_start_start =
7311 TOKEN_STRING_INITIALIZER(struct cmd_start_result, start, "start");
7313 static void cmd_start_parsed(__rte_unused void *parsed_result,
7314 __rte_unused struct cmdline *cl,
7315 __rte_unused void *data)
7317 start_packet_forwarding(0);
7320 cmdline_parse_inst_t cmd_start = {
7321 .f = cmd_start_parsed,
7323 .help_str = "start: Start packet forwarding",
7325 (void *)&cmd_start_start,
7330 /* *** START FORWARDING WITH ONE TX BURST FIRST *** */
7331 struct cmd_start_tx_first_result {
7332 cmdline_fixed_string_t start;
7333 cmdline_fixed_string_t tx_first;
7337 cmd_start_tx_first_parsed(__rte_unused void *parsed_result,
7338 __rte_unused struct cmdline *cl,
7339 __rte_unused void *data)
7341 start_packet_forwarding(1);
7344 cmdline_parse_token_string_t cmd_start_tx_first_start =
7345 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, start,
7347 cmdline_parse_token_string_t cmd_start_tx_first_tx_first =
7348 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result,
7349 tx_first, "tx_first");
7351 cmdline_parse_inst_t cmd_start_tx_first = {
7352 .f = cmd_start_tx_first_parsed,
7354 .help_str = "start tx_first: Start packet forwarding, "
7355 "after sending 1 burst of packets",
7357 (void *)&cmd_start_tx_first_start,
7358 (void *)&cmd_start_tx_first_tx_first,
7363 /* *** START FORWARDING WITH N TX BURST FIRST *** */
7364 struct cmd_start_tx_first_n_result {
7365 cmdline_fixed_string_t start;
7366 cmdline_fixed_string_t tx_first;
7371 cmd_start_tx_first_n_parsed(void *parsed_result,
7372 __rte_unused struct cmdline *cl,
7373 __rte_unused void *data)
7375 struct cmd_start_tx_first_n_result *res = parsed_result;
7377 start_packet_forwarding(res->tx_num);
7380 cmdline_parse_token_string_t cmd_start_tx_first_n_start =
7381 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result,
7383 cmdline_parse_token_string_t cmd_start_tx_first_n_tx_first =
7384 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result,
7385 tx_first, "tx_first");
7386 cmdline_parse_token_num_t cmd_start_tx_first_n_tx_num =
7387 TOKEN_NUM_INITIALIZER(struct cmd_start_tx_first_n_result,
7388 tx_num, RTE_UINT32);
7390 cmdline_parse_inst_t cmd_start_tx_first_n = {
7391 .f = cmd_start_tx_first_n_parsed,
7393 .help_str = "start tx_first <num>: "
7394 "packet forwarding, after sending <num> bursts of packets",
7396 (void *)&cmd_start_tx_first_n_start,
7397 (void *)&cmd_start_tx_first_n_tx_first,
7398 (void *)&cmd_start_tx_first_n_tx_num,
7403 /* *** SET LINK UP *** */
7404 struct cmd_set_link_up_result {
7405 cmdline_fixed_string_t set;
7406 cmdline_fixed_string_t link_up;
7407 cmdline_fixed_string_t port;
7411 cmdline_parse_token_string_t cmd_set_link_up_set =
7412 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, set, "set");
7413 cmdline_parse_token_string_t cmd_set_link_up_link_up =
7414 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, link_up,
7416 cmdline_parse_token_string_t cmd_set_link_up_port =
7417 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, port, "port");
7418 cmdline_parse_token_num_t cmd_set_link_up_port_id =
7419 TOKEN_NUM_INITIALIZER(struct cmd_set_link_up_result, port_id,
7422 static void cmd_set_link_up_parsed(__rte_unused void *parsed_result,
7423 __rte_unused struct cmdline *cl,
7424 __rte_unused void *data)
7426 struct cmd_set_link_up_result *res = parsed_result;
7427 dev_set_link_up(res->port_id);
7430 cmdline_parse_inst_t cmd_set_link_up = {
7431 .f = cmd_set_link_up_parsed,
7433 .help_str = "set link-up port <port id>",
7435 (void *)&cmd_set_link_up_set,
7436 (void *)&cmd_set_link_up_link_up,
7437 (void *)&cmd_set_link_up_port,
7438 (void *)&cmd_set_link_up_port_id,
7443 /* *** SET LINK DOWN *** */
7444 struct cmd_set_link_down_result {
7445 cmdline_fixed_string_t set;
7446 cmdline_fixed_string_t link_down;
7447 cmdline_fixed_string_t port;
7451 cmdline_parse_token_string_t cmd_set_link_down_set =
7452 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, set, "set");
7453 cmdline_parse_token_string_t cmd_set_link_down_link_down =
7454 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, link_down,
7456 cmdline_parse_token_string_t cmd_set_link_down_port =
7457 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, port, "port");
7458 cmdline_parse_token_num_t cmd_set_link_down_port_id =
7459 TOKEN_NUM_INITIALIZER(struct cmd_set_link_down_result, port_id,
7462 static void cmd_set_link_down_parsed(
7463 __rte_unused void *parsed_result,
7464 __rte_unused struct cmdline *cl,
7465 __rte_unused void *data)
7467 struct cmd_set_link_down_result *res = parsed_result;
7468 dev_set_link_down(res->port_id);
7471 cmdline_parse_inst_t cmd_set_link_down = {
7472 .f = cmd_set_link_down_parsed,
7474 .help_str = "set link-down port <port id>",
7476 (void *)&cmd_set_link_down_set,
7477 (void *)&cmd_set_link_down_link_down,
7478 (void *)&cmd_set_link_down_port,
7479 (void *)&cmd_set_link_down_port_id,
7484 /* *** SHOW CFG *** */
7485 struct cmd_showcfg_result {
7486 cmdline_fixed_string_t show;
7487 cmdline_fixed_string_t cfg;
7488 cmdline_fixed_string_t what;
7491 static void cmd_showcfg_parsed(void *parsed_result,
7492 __rte_unused struct cmdline *cl,
7493 __rte_unused void *data)
7495 struct cmd_showcfg_result *res = parsed_result;
7496 if (!strcmp(res->what, "rxtx"))
7497 rxtx_config_display();
7498 else if (!strcmp(res->what, "cores"))
7499 fwd_lcores_config_display();
7500 else if (!strcmp(res->what, "fwd"))
7501 pkt_fwd_config_display(&cur_fwd_config);
7502 else if (!strcmp(res->what, "rxoffs"))
7503 show_rx_pkt_offsets();
7504 else if (!strcmp(res->what, "rxpkts"))
7505 show_rx_pkt_segments();
7506 else if (!strcmp(res->what, "txpkts"))
7507 show_tx_pkt_segments();
7508 else if (!strcmp(res->what, "txtimes"))
7509 show_tx_pkt_times();
7512 cmdline_parse_token_string_t cmd_showcfg_show =
7513 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, show, "show");
7514 cmdline_parse_token_string_t cmd_showcfg_port =
7515 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, cfg, "config");
7516 cmdline_parse_token_string_t cmd_showcfg_what =
7517 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, what,
7518 "rxtx#cores#fwd#rxoffs#rxpkts#txpkts#txtimes");
7520 cmdline_parse_inst_t cmd_showcfg = {
7521 .f = cmd_showcfg_parsed,
7523 .help_str = "show config rxtx|cores|fwd|rxoffs|rxpkts|txpkts|txtimes",
7525 (void *)&cmd_showcfg_show,
7526 (void *)&cmd_showcfg_port,
7527 (void *)&cmd_showcfg_what,
7532 /* *** SHOW ALL PORT INFO *** */
7533 struct cmd_showportall_result {
7534 cmdline_fixed_string_t show;
7535 cmdline_fixed_string_t port;
7536 cmdline_fixed_string_t what;
7537 cmdline_fixed_string_t all;
7540 static void cmd_showportall_parsed(void *parsed_result,
7541 __rte_unused struct cmdline *cl,
7542 __rte_unused void *data)
7546 struct cmd_showportall_result *res = parsed_result;
7547 if (!strcmp(res->show, "clear")) {
7548 if (!strcmp(res->what, "stats"))
7549 RTE_ETH_FOREACH_DEV(i)
7551 else if (!strcmp(res->what, "xstats"))
7552 RTE_ETH_FOREACH_DEV(i)
7553 nic_xstats_clear(i);
7554 } else if (!strcmp(res->what, "info"))
7555 RTE_ETH_FOREACH_DEV(i)
7556 port_infos_display(i);
7557 else if (!strcmp(res->what, "summary")) {
7558 port_summary_header_display();
7559 RTE_ETH_FOREACH_DEV(i)
7560 port_summary_display(i);
7562 else if (!strcmp(res->what, "stats"))
7563 RTE_ETH_FOREACH_DEV(i)
7564 nic_stats_display(i);
7565 else if (!strcmp(res->what, "xstats"))
7566 RTE_ETH_FOREACH_DEV(i)
7567 nic_xstats_display(i);
7568 #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
7569 else if (!strcmp(res->what, "fdir"))
7570 RTE_ETH_FOREACH_DEV(i)
7573 else if (!strcmp(res->what, "dcb_tc"))
7574 RTE_ETH_FOREACH_DEV(i)
7575 port_dcb_info_display(i);
7578 cmdline_parse_token_string_t cmd_showportall_show =
7579 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, show,
7581 cmdline_parse_token_string_t cmd_showportall_port =
7582 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, port, "port");
7583 cmdline_parse_token_string_t cmd_showportall_what =
7584 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, what,
7585 "info#summary#stats#xstats#fdir#dcb_tc");
7586 cmdline_parse_token_string_t cmd_showportall_all =
7587 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, all, "all");
7588 cmdline_parse_inst_t cmd_showportall = {
7589 .f = cmd_showportall_parsed,
7591 .help_str = "show|clear port "
7592 "info|summary|stats|xstats|fdir|dcb_tc all",
7594 (void *)&cmd_showportall_show,
7595 (void *)&cmd_showportall_port,
7596 (void *)&cmd_showportall_what,
7597 (void *)&cmd_showportall_all,
7602 /* *** SHOW PORT INFO *** */
7603 struct cmd_showport_result {
7604 cmdline_fixed_string_t show;
7605 cmdline_fixed_string_t port;
7606 cmdline_fixed_string_t what;
7610 static void cmd_showport_parsed(void *parsed_result,
7611 __rte_unused struct cmdline *cl,
7612 __rte_unused void *data)
7614 struct cmd_showport_result *res = parsed_result;
7615 if (!strcmp(res->show, "clear")) {
7616 if (!strcmp(res->what, "stats"))
7617 nic_stats_clear(res->portnum);
7618 else if (!strcmp(res->what, "xstats"))
7619 nic_xstats_clear(res->portnum);
7620 } else if (!strcmp(res->what, "info"))
7621 port_infos_display(res->portnum);
7622 else if (!strcmp(res->what, "summary")) {
7623 port_summary_header_display();
7624 port_summary_display(res->portnum);
7626 else if (!strcmp(res->what, "stats"))
7627 nic_stats_display(res->portnum);
7628 else if (!strcmp(res->what, "xstats"))
7629 nic_xstats_display(res->portnum);
7630 #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
7631 else if (!strcmp(res->what, "fdir"))
7632 fdir_get_infos(res->portnum);
7634 else if (!strcmp(res->what, "dcb_tc"))
7635 port_dcb_info_display(res->portnum);
7638 cmdline_parse_token_string_t cmd_showport_show =
7639 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, show,
7641 cmdline_parse_token_string_t cmd_showport_port =
7642 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, port, "port");
7643 cmdline_parse_token_string_t cmd_showport_what =
7644 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, what,
7645 "info#summary#stats#xstats#fdir#dcb_tc");
7646 cmdline_parse_token_num_t cmd_showport_portnum =
7647 TOKEN_NUM_INITIALIZER(struct cmd_showport_result, portnum, RTE_UINT16);
7649 cmdline_parse_inst_t cmd_showport = {
7650 .f = cmd_showport_parsed,
7652 .help_str = "show|clear port "
7653 "info|summary|stats|xstats|fdir|dcb_tc "
7656 (void *)&cmd_showport_show,
7657 (void *)&cmd_showport_port,
7658 (void *)&cmd_showport_what,
7659 (void *)&cmd_showport_portnum,
7664 /* *** SHOW DEVICE INFO *** */
7665 struct cmd_showdevice_result {
7666 cmdline_fixed_string_t show;
7667 cmdline_fixed_string_t device;
7668 cmdline_fixed_string_t what;
7669 cmdline_fixed_string_t identifier;
7672 static void cmd_showdevice_parsed(void *parsed_result,
7673 __rte_unused struct cmdline *cl,
7674 __rte_unused void *data)
7676 struct cmd_showdevice_result *res = parsed_result;
7677 if (!strcmp(res->what, "info")) {
7678 if (!strcmp(res->identifier, "all"))
7679 device_infos_display(NULL);
7681 device_infos_display(res->identifier);
7685 cmdline_parse_token_string_t cmd_showdevice_show =
7686 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, show,
7688 cmdline_parse_token_string_t cmd_showdevice_device =
7689 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, device, "device");
7690 cmdline_parse_token_string_t cmd_showdevice_what =
7691 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, what,
7693 cmdline_parse_token_string_t cmd_showdevice_identifier =
7694 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result,
7697 cmdline_parse_inst_t cmd_showdevice = {
7698 .f = cmd_showdevice_parsed,
7700 .help_str = "show device info <identifier>|all",
7702 (void *)&cmd_showdevice_show,
7703 (void *)&cmd_showdevice_device,
7704 (void *)&cmd_showdevice_what,
7705 (void *)&cmd_showdevice_identifier,
7710 /* *** SHOW MODULE EEPROM/EEPROM port INFO *** */
7711 struct cmd_showeeprom_result {
7712 cmdline_fixed_string_t show;
7713 cmdline_fixed_string_t port;
7715 cmdline_fixed_string_t type;
7718 static void cmd_showeeprom_parsed(void *parsed_result,
7719 __rte_unused struct cmdline *cl,
7720 __rte_unused void *data)
7722 struct cmd_showeeprom_result *res = parsed_result;
7724 if (!strcmp(res->type, "eeprom"))
7725 port_eeprom_display(res->portnum);
7726 else if (!strcmp(res->type, "module_eeprom"))
7727 port_module_eeprom_display(res->portnum);
7729 printf("Unknown argument\n");
7732 cmdline_parse_token_string_t cmd_showeeprom_show =
7733 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, show, "show");
7734 cmdline_parse_token_string_t cmd_showeeprom_port =
7735 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, port, "port");
7736 cmdline_parse_token_num_t cmd_showeeprom_portnum =
7737 TOKEN_NUM_INITIALIZER(struct cmd_showeeprom_result, portnum,
7739 cmdline_parse_token_string_t cmd_showeeprom_type =
7740 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, type, "module_eeprom#eeprom");
7742 cmdline_parse_inst_t cmd_showeeprom = {
7743 .f = cmd_showeeprom_parsed,
7745 .help_str = "show port <port_id> module_eeprom|eeprom",
7747 (void *)&cmd_showeeprom_show,
7748 (void *)&cmd_showeeprom_port,
7749 (void *)&cmd_showeeprom_portnum,
7750 (void *)&cmd_showeeprom_type,
7755 /* *** SHOW QUEUE INFO *** */
7756 struct cmd_showqueue_result {
7757 cmdline_fixed_string_t show;
7758 cmdline_fixed_string_t type;
7759 cmdline_fixed_string_t what;
7765 cmd_showqueue_parsed(void *parsed_result,
7766 __rte_unused struct cmdline *cl,
7767 __rte_unused void *data)
7769 struct cmd_showqueue_result *res = parsed_result;
7771 if (!strcmp(res->type, "rxq"))
7772 rx_queue_infos_display(res->portnum, res->queuenum);
7773 else if (!strcmp(res->type, "txq"))
7774 tx_queue_infos_display(res->portnum, res->queuenum);
7777 cmdline_parse_token_string_t cmd_showqueue_show =
7778 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, show, "show");
7779 cmdline_parse_token_string_t cmd_showqueue_type =
7780 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, type, "rxq#txq");
7781 cmdline_parse_token_string_t cmd_showqueue_what =
7782 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, what, "info");
7783 cmdline_parse_token_num_t cmd_showqueue_portnum =
7784 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, portnum,
7786 cmdline_parse_token_num_t cmd_showqueue_queuenum =
7787 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, queuenum,
7790 cmdline_parse_inst_t cmd_showqueue = {
7791 .f = cmd_showqueue_parsed,
7793 .help_str = "show rxq|txq info <port_id> <queue_id>",
7795 (void *)&cmd_showqueue_show,
7796 (void *)&cmd_showqueue_type,
7797 (void *)&cmd_showqueue_what,
7798 (void *)&cmd_showqueue_portnum,
7799 (void *)&cmd_showqueue_queuenum,
7804 /* show/clear fwd engine statistics */
7806 cmdline_fixed_string_t action;
7807 cmdline_fixed_string_t fwd;
7808 cmdline_fixed_string_t stats;
7809 cmdline_fixed_string_t all;
7812 cmdline_parse_token_string_t cmd_fwd_action =
7813 TOKEN_STRING_INITIALIZER(struct fwd_result, action, "show#clear");
7814 cmdline_parse_token_string_t cmd_fwd_fwd =
7815 TOKEN_STRING_INITIALIZER(struct fwd_result, fwd, "fwd");
7816 cmdline_parse_token_string_t cmd_fwd_stats =
7817 TOKEN_STRING_INITIALIZER(struct fwd_result, stats, "stats");
7818 cmdline_parse_token_string_t cmd_fwd_all =
7819 TOKEN_STRING_INITIALIZER(struct fwd_result, all, "all");
7822 cmd_showfwdall_parsed(void *parsed_result,
7823 __rte_unused struct cmdline *cl,
7824 __rte_unused void *data)
7826 struct fwd_result *res = parsed_result;
7828 if (!strcmp(res->action, "show"))
7829 fwd_stats_display();
7834 static cmdline_parse_inst_t cmd_showfwdall = {
7835 .f = cmd_showfwdall_parsed,
7837 .help_str = "show|clear fwd stats all",
7839 (void *)&cmd_fwd_action,
7840 (void *)&cmd_fwd_fwd,
7841 (void *)&cmd_fwd_stats,
7842 (void *)&cmd_fwd_all,
7847 /* *** READ PORT REGISTER *** */
7848 struct cmd_read_reg_result {
7849 cmdline_fixed_string_t read;
7850 cmdline_fixed_string_t reg;
7856 cmd_read_reg_parsed(void *parsed_result,
7857 __rte_unused struct cmdline *cl,
7858 __rte_unused void *data)
7860 struct cmd_read_reg_result *res = parsed_result;
7861 port_reg_display(res->port_id, res->reg_off);
7864 cmdline_parse_token_string_t cmd_read_reg_read =
7865 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, read, "read");
7866 cmdline_parse_token_string_t cmd_read_reg_reg =
7867 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, reg, "reg");
7868 cmdline_parse_token_num_t cmd_read_reg_port_id =
7869 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, port_id, RTE_UINT16);
7870 cmdline_parse_token_num_t cmd_read_reg_reg_off =
7871 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, reg_off, RTE_UINT32);
7873 cmdline_parse_inst_t cmd_read_reg = {
7874 .f = cmd_read_reg_parsed,
7876 .help_str = "read reg <port_id> <reg_off>",
7878 (void *)&cmd_read_reg_read,
7879 (void *)&cmd_read_reg_reg,
7880 (void *)&cmd_read_reg_port_id,
7881 (void *)&cmd_read_reg_reg_off,
7886 /* *** READ PORT REGISTER BIT FIELD *** */
7887 struct cmd_read_reg_bit_field_result {
7888 cmdline_fixed_string_t read;
7889 cmdline_fixed_string_t regfield;
7897 cmd_read_reg_bit_field_parsed(void *parsed_result,
7898 __rte_unused struct cmdline *cl,
7899 __rte_unused void *data)
7901 struct cmd_read_reg_bit_field_result *res = parsed_result;
7902 port_reg_bit_field_display(res->port_id, res->reg_off,
7903 res->bit1_pos, res->bit2_pos);
7906 cmdline_parse_token_string_t cmd_read_reg_bit_field_read =
7907 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, read,
7909 cmdline_parse_token_string_t cmd_read_reg_bit_field_regfield =
7910 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result,
7911 regfield, "regfield");
7912 cmdline_parse_token_num_t cmd_read_reg_bit_field_port_id =
7913 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, port_id,
7915 cmdline_parse_token_num_t cmd_read_reg_bit_field_reg_off =
7916 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, reg_off,
7918 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit1_pos =
7919 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit1_pos,
7921 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit2_pos =
7922 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit2_pos,
7925 cmdline_parse_inst_t cmd_read_reg_bit_field = {
7926 .f = cmd_read_reg_bit_field_parsed,
7928 .help_str = "read regfield <port_id> <reg_off> <bit_x> <bit_y>: "
7929 "Read register bit field between bit_x and bit_y included",
7931 (void *)&cmd_read_reg_bit_field_read,
7932 (void *)&cmd_read_reg_bit_field_regfield,
7933 (void *)&cmd_read_reg_bit_field_port_id,
7934 (void *)&cmd_read_reg_bit_field_reg_off,
7935 (void *)&cmd_read_reg_bit_field_bit1_pos,
7936 (void *)&cmd_read_reg_bit_field_bit2_pos,
7941 /* *** READ PORT REGISTER BIT *** */
7942 struct cmd_read_reg_bit_result {
7943 cmdline_fixed_string_t read;
7944 cmdline_fixed_string_t regbit;
7951 cmd_read_reg_bit_parsed(void *parsed_result,
7952 __rte_unused struct cmdline *cl,
7953 __rte_unused void *data)
7955 struct cmd_read_reg_bit_result *res = parsed_result;
7956 port_reg_bit_display(res->port_id, res->reg_off, res->bit_pos);
7959 cmdline_parse_token_string_t cmd_read_reg_bit_read =
7960 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, read, "read");
7961 cmdline_parse_token_string_t cmd_read_reg_bit_regbit =
7962 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result,
7964 cmdline_parse_token_num_t cmd_read_reg_bit_port_id =
7965 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, port_id,
7967 cmdline_parse_token_num_t cmd_read_reg_bit_reg_off =
7968 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, reg_off,
7970 cmdline_parse_token_num_t cmd_read_reg_bit_bit_pos =
7971 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, bit_pos,
7974 cmdline_parse_inst_t cmd_read_reg_bit = {
7975 .f = cmd_read_reg_bit_parsed,
7977 .help_str = "read regbit <port_id> <reg_off> <bit_x>: 0 <= bit_x <= 31",
7979 (void *)&cmd_read_reg_bit_read,
7980 (void *)&cmd_read_reg_bit_regbit,
7981 (void *)&cmd_read_reg_bit_port_id,
7982 (void *)&cmd_read_reg_bit_reg_off,
7983 (void *)&cmd_read_reg_bit_bit_pos,
7988 /* *** WRITE PORT REGISTER *** */
7989 struct cmd_write_reg_result {
7990 cmdline_fixed_string_t write;
7991 cmdline_fixed_string_t reg;
7998 cmd_write_reg_parsed(void *parsed_result,
7999 __rte_unused struct cmdline *cl,
8000 __rte_unused void *data)
8002 struct cmd_write_reg_result *res = parsed_result;
8003 port_reg_set(res->port_id, res->reg_off, res->value);
8006 cmdline_parse_token_string_t cmd_write_reg_write =
8007 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, write, "write");
8008 cmdline_parse_token_string_t cmd_write_reg_reg =
8009 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, reg, "reg");
8010 cmdline_parse_token_num_t cmd_write_reg_port_id =
8011 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, port_id, RTE_UINT16);
8012 cmdline_parse_token_num_t cmd_write_reg_reg_off =
8013 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, reg_off, RTE_UINT32);
8014 cmdline_parse_token_num_t cmd_write_reg_value =
8015 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, value, RTE_UINT32);
8017 cmdline_parse_inst_t cmd_write_reg = {
8018 .f = cmd_write_reg_parsed,
8020 .help_str = "write reg <port_id> <reg_off> <reg_value>",
8022 (void *)&cmd_write_reg_write,
8023 (void *)&cmd_write_reg_reg,
8024 (void *)&cmd_write_reg_port_id,
8025 (void *)&cmd_write_reg_reg_off,
8026 (void *)&cmd_write_reg_value,
8031 /* *** WRITE PORT REGISTER BIT FIELD *** */
8032 struct cmd_write_reg_bit_field_result {
8033 cmdline_fixed_string_t write;
8034 cmdline_fixed_string_t regfield;
8043 cmd_write_reg_bit_field_parsed(void *parsed_result,
8044 __rte_unused struct cmdline *cl,
8045 __rte_unused void *data)
8047 struct cmd_write_reg_bit_field_result *res = parsed_result;
8048 port_reg_bit_field_set(res->port_id, res->reg_off,
8049 res->bit1_pos, res->bit2_pos, res->value);
8052 cmdline_parse_token_string_t cmd_write_reg_bit_field_write =
8053 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, write,
8055 cmdline_parse_token_string_t cmd_write_reg_bit_field_regfield =
8056 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result,
8057 regfield, "regfield");
8058 cmdline_parse_token_num_t cmd_write_reg_bit_field_port_id =
8059 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, port_id,
8061 cmdline_parse_token_num_t cmd_write_reg_bit_field_reg_off =
8062 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, reg_off,
8064 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit1_pos =
8065 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit1_pos,
8067 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit2_pos =
8068 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit2_pos,
8070 cmdline_parse_token_num_t cmd_write_reg_bit_field_value =
8071 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, value,
8074 cmdline_parse_inst_t cmd_write_reg_bit_field = {
8075 .f = cmd_write_reg_bit_field_parsed,
8077 .help_str = "write regfield <port_id> <reg_off> <bit_x> <bit_y> "
8079 "Set register bit field between bit_x and bit_y included",
8081 (void *)&cmd_write_reg_bit_field_write,
8082 (void *)&cmd_write_reg_bit_field_regfield,
8083 (void *)&cmd_write_reg_bit_field_port_id,
8084 (void *)&cmd_write_reg_bit_field_reg_off,
8085 (void *)&cmd_write_reg_bit_field_bit1_pos,
8086 (void *)&cmd_write_reg_bit_field_bit2_pos,
8087 (void *)&cmd_write_reg_bit_field_value,
8092 /* *** WRITE PORT REGISTER BIT *** */
8093 struct cmd_write_reg_bit_result {
8094 cmdline_fixed_string_t write;
8095 cmdline_fixed_string_t regbit;
8103 cmd_write_reg_bit_parsed(void *parsed_result,
8104 __rte_unused struct cmdline *cl,
8105 __rte_unused void *data)
8107 struct cmd_write_reg_bit_result *res = parsed_result;
8108 port_reg_bit_set(res->port_id, res->reg_off, res->bit_pos, res->value);
8111 cmdline_parse_token_string_t cmd_write_reg_bit_write =
8112 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, write,
8114 cmdline_parse_token_string_t cmd_write_reg_bit_regbit =
8115 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result,
8117 cmdline_parse_token_num_t cmd_write_reg_bit_port_id =
8118 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, port_id,
8120 cmdline_parse_token_num_t cmd_write_reg_bit_reg_off =
8121 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, reg_off,
8123 cmdline_parse_token_num_t cmd_write_reg_bit_bit_pos =
8124 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, bit_pos,
8126 cmdline_parse_token_num_t cmd_write_reg_bit_value =
8127 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, value,
8130 cmdline_parse_inst_t cmd_write_reg_bit = {
8131 .f = cmd_write_reg_bit_parsed,
8133 .help_str = "write regbit <port_id> <reg_off> <bit_x> 0|1: "
8136 (void *)&cmd_write_reg_bit_write,
8137 (void *)&cmd_write_reg_bit_regbit,
8138 (void *)&cmd_write_reg_bit_port_id,
8139 (void *)&cmd_write_reg_bit_reg_off,
8140 (void *)&cmd_write_reg_bit_bit_pos,
8141 (void *)&cmd_write_reg_bit_value,
8146 /* *** READ A RING DESCRIPTOR OF A PORT RX/TX QUEUE *** */
8147 struct cmd_read_rxd_txd_result {
8148 cmdline_fixed_string_t read;
8149 cmdline_fixed_string_t rxd_txd;
8156 cmd_read_rxd_txd_parsed(void *parsed_result,
8157 __rte_unused struct cmdline *cl,
8158 __rte_unused void *data)
8160 struct cmd_read_rxd_txd_result *res = parsed_result;
8162 if (!strcmp(res->rxd_txd, "rxd"))
8163 rx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
8164 else if (!strcmp(res->rxd_txd, "txd"))
8165 tx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
8168 cmdline_parse_token_string_t cmd_read_rxd_txd_read =
8169 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, read, "read");
8170 cmdline_parse_token_string_t cmd_read_rxd_txd_rxd_txd =
8171 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, rxd_txd,
8173 cmdline_parse_token_num_t cmd_read_rxd_txd_port_id =
8174 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, port_id,
8176 cmdline_parse_token_num_t cmd_read_rxd_txd_queue_id =
8177 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, queue_id,
8179 cmdline_parse_token_num_t cmd_read_rxd_txd_desc_id =
8180 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, desc_id,
8183 cmdline_parse_inst_t cmd_read_rxd_txd = {
8184 .f = cmd_read_rxd_txd_parsed,
8186 .help_str = "read rxd|txd <port_id> <queue_id> <desc_id>",
8188 (void *)&cmd_read_rxd_txd_read,
8189 (void *)&cmd_read_rxd_txd_rxd_txd,
8190 (void *)&cmd_read_rxd_txd_port_id,
8191 (void *)&cmd_read_rxd_txd_queue_id,
8192 (void *)&cmd_read_rxd_txd_desc_id,
8198 struct cmd_quit_result {
8199 cmdline_fixed_string_t quit;
8202 static void cmd_quit_parsed(__rte_unused void *parsed_result,
8204 __rte_unused void *data)
8209 cmdline_parse_token_string_t cmd_quit_quit =
8210 TOKEN_STRING_INITIALIZER(struct cmd_quit_result, quit, "quit");
8212 cmdline_parse_inst_t cmd_quit = {
8213 .f = cmd_quit_parsed,
8215 .help_str = "quit: Exit application",
8217 (void *)&cmd_quit_quit,
8222 /* *** ADD/REMOVE MAC ADDRESS FROM A PORT *** */
8223 struct cmd_mac_addr_result {
8224 cmdline_fixed_string_t mac_addr_cmd;
8225 cmdline_fixed_string_t what;
8227 struct rte_ether_addr address;
8230 static void cmd_mac_addr_parsed(void *parsed_result,
8231 __rte_unused struct cmdline *cl,
8232 __rte_unused void *data)
8234 struct cmd_mac_addr_result *res = parsed_result;
8237 if (strcmp(res->what, "add") == 0)
8238 ret = rte_eth_dev_mac_addr_add(res->port_num, &res->address, 0);
8239 else if (strcmp(res->what, "set") == 0)
8240 ret = rte_eth_dev_default_mac_addr_set(res->port_num,
8243 ret = rte_eth_dev_mac_addr_remove(res->port_num, &res->address);
8245 /* check the return value and print it if is < 0 */
8247 printf("mac_addr_cmd error: (%s)\n", strerror(-ret));
8251 cmdline_parse_token_string_t cmd_mac_addr_cmd =
8252 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, mac_addr_cmd,
8254 cmdline_parse_token_string_t cmd_mac_addr_what =
8255 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, what,
8257 cmdline_parse_token_num_t cmd_mac_addr_portnum =
8258 TOKEN_NUM_INITIALIZER(struct cmd_mac_addr_result, port_num,
8260 cmdline_parse_token_etheraddr_t cmd_mac_addr_addr =
8261 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
8263 cmdline_parse_inst_t cmd_mac_addr = {
8264 .f = cmd_mac_addr_parsed,
8266 .help_str = "mac_addr add|remove|set <port_id> <mac_addr>: "
8267 "Add/Remove/Set MAC address on port_id",
8269 (void *)&cmd_mac_addr_cmd,
8270 (void *)&cmd_mac_addr_what,
8271 (void *)&cmd_mac_addr_portnum,
8272 (void *)&cmd_mac_addr_addr,
8277 /* *** SET THE PEER ADDRESS FOR CERTAIN PORT *** */
8278 struct cmd_eth_peer_result {
8279 cmdline_fixed_string_t set;
8280 cmdline_fixed_string_t eth_peer;
8282 cmdline_fixed_string_t peer_addr;
8285 static void cmd_set_eth_peer_parsed(void *parsed_result,
8286 __rte_unused struct cmdline *cl,
8287 __rte_unused void *data)
8289 struct cmd_eth_peer_result *res = parsed_result;
8291 if (test_done == 0) {
8292 printf("Please stop forwarding first\n");
8295 if (!strcmp(res->eth_peer, "eth-peer")) {
8296 set_fwd_eth_peer(res->port_id, res->peer_addr);
8300 cmdline_parse_token_string_t cmd_eth_peer_set =
8301 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, set, "set");
8302 cmdline_parse_token_string_t cmd_eth_peer =
8303 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, eth_peer, "eth-peer");
8304 cmdline_parse_token_num_t cmd_eth_peer_port_id =
8305 TOKEN_NUM_INITIALIZER(struct cmd_eth_peer_result, port_id,
8307 cmdline_parse_token_string_t cmd_eth_peer_addr =
8308 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, peer_addr, NULL);
8310 cmdline_parse_inst_t cmd_set_fwd_eth_peer = {
8311 .f = cmd_set_eth_peer_parsed,
8313 .help_str = "set eth-peer <port_id> <peer_mac>",
8315 (void *)&cmd_eth_peer_set,
8316 (void *)&cmd_eth_peer,
8317 (void *)&cmd_eth_peer_port_id,
8318 (void *)&cmd_eth_peer_addr,
8323 /* *** CONFIGURE QUEUE STATS COUNTER MAPPINGS *** */
8324 struct cmd_set_qmap_result {
8325 cmdline_fixed_string_t set;
8326 cmdline_fixed_string_t qmap;
8327 cmdline_fixed_string_t what;
8334 cmd_set_qmap_parsed(void *parsed_result,
8335 __rte_unused struct cmdline *cl,
8336 __rte_unused void *data)
8338 struct cmd_set_qmap_result *res = parsed_result;
8339 int is_rx = (strcmp(res->what, "tx") == 0) ? 0 : 1;
8341 set_qmap(res->port_id, (uint8_t)is_rx, res->queue_id, res->map_value);
8344 cmdline_parse_token_string_t cmd_setqmap_set =
8345 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
8347 cmdline_parse_token_string_t cmd_setqmap_qmap =
8348 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
8350 cmdline_parse_token_string_t cmd_setqmap_what =
8351 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
8353 cmdline_parse_token_num_t cmd_setqmap_portid =
8354 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
8355 port_id, RTE_UINT16);
8356 cmdline_parse_token_num_t cmd_setqmap_queueid =
8357 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
8358 queue_id, RTE_UINT16);
8359 cmdline_parse_token_num_t cmd_setqmap_mapvalue =
8360 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
8361 map_value, RTE_UINT8);
8363 cmdline_parse_inst_t cmd_set_qmap = {
8364 .f = cmd_set_qmap_parsed,
8366 .help_str = "set stat_qmap rx|tx <port_id> <queue_id> <map_value>: "
8367 "Set statistics mapping value on tx|rx queue_id of port_id",
8369 (void *)&cmd_setqmap_set,
8370 (void *)&cmd_setqmap_qmap,
8371 (void *)&cmd_setqmap_what,
8372 (void *)&cmd_setqmap_portid,
8373 (void *)&cmd_setqmap_queueid,
8374 (void *)&cmd_setqmap_mapvalue,
8379 /* *** SET OPTION TO HIDE ZERO VALUES FOR XSTATS DISPLAY *** */
8380 struct cmd_set_xstats_hide_zero_result {
8381 cmdline_fixed_string_t keyword;
8382 cmdline_fixed_string_t name;
8383 cmdline_fixed_string_t on_off;
8387 cmd_set_xstats_hide_zero_parsed(void *parsed_result,
8388 __rte_unused struct cmdline *cl,
8389 __rte_unused void *data)
8391 struct cmd_set_xstats_hide_zero_result *res;
8392 uint16_t on_off = 0;
8394 res = parsed_result;
8395 on_off = !strcmp(res->on_off, "on") ? 1 : 0;
8396 set_xstats_hide_zero(on_off);
8399 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_keyword =
8400 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result,
8402 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_name =
8403 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result,
8404 name, "xstats-hide-zero");
8405 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_on_off =
8406 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result,
8409 cmdline_parse_inst_t cmd_set_xstats_hide_zero = {
8410 .f = cmd_set_xstats_hide_zero_parsed,
8412 .help_str = "set xstats-hide-zero on|off",
8414 (void *)&cmd_set_xstats_hide_zero_keyword,
8415 (void *)&cmd_set_xstats_hide_zero_name,
8416 (void *)&cmd_set_xstats_hide_zero_on_off,
8421 /* *** SET OPTION TO ENABLE MEASUREMENT OF CPU CYCLES *** */
8422 struct cmd_set_record_core_cycles_result {
8423 cmdline_fixed_string_t keyword;
8424 cmdline_fixed_string_t name;
8425 cmdline_fixed_string_t on_off;
8429 cmd_set_record_core_cycles_parsed(void *parsed_result,
8430 __rte_unused struct cmdline *cl,
8431 __rte_unused void *data)
8433 struct cmd_set_record_core_cycles_result *res;
8434 uint16_t on_off = 0;
8436 res = parsed_result;
8437 on_off = !strcmp(res->on_off, "on") ? 1 : 0;
8438 set_record_core_cycles(on_off);
8441 cmdline_parse_token_string_t cmd_set_record_core_cycles_keyword =
8442 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result,
8444 cmdline_parse_token_string_t cmd_set_record_core_cycles_name =
8445 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result,
8446 name, "record-core-cycles");
8447 cmdline_parse_token_string_t cmd_set_record_core_cycles_on_off =
8448 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result,
8451 cmdline_parse_inst_t cmd_set_record_core_cycles = {
8452 .f = cmd_set_record_core_cycles_parsed,
8454 .help_str = "set record-core-cycles on|off",
8456 (void *)&cmd_set_record_core_cycles_keyword,
8457 (void *)&cmd_set_record_core_cycles_name,
8458 (void *)&cmd_set_record_core_cycles_on_off,
8463 /* *** SET OPTION TO ENABLE DISPLAY OF RX AND TX BURSTS *** */
8464 struct cmd_set_record_burst_stats_result {
8465 cmdline_fixed_string_t keyword;
8466 cmdline_fixed_string_t name;
8467 cmdline_fixed_string_t on_off;
8471 cmd_set_record_burst_stats_parsed(void *parsed_result,
8472 __rte_unused struct cmdline *cl,
8473 __rte_unused void *data)
8475 struct cmd_set_record_burst_stats_result *res;
8476 uint16_t on_off = 0;
8478 res = parsed_result;
8479 on_off = !strcmp(res->on_off, "on") ? 1 : 0;
8480 set_record_burst_stats(on_off);
8483 cmdline_parse_token_string_t cmd_set_record_burst_stats_keyword =
8484 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result,
8486 cmdline_parse_token_string_t cmd_set_record_burst_stats_name =
8487 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result,
8488 name, "record-burst-stats");
8489 cmdline_parse_token_string_t cmd_set_record_burst_stats_on_off =
8490 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result,
8493 cmdline_parse_inst_t cmd_set_record_burst_stats = {
8494 .f = cmd_set_record_burst_stats_parsed,
8496 .help_str = "set record-burst-stats on|off",
8498 (void *)&cmd_set_record_burst_stats_keyword,
8499 (void *)&cmd_set_record_burst_stats_name,
8500 (void *)&cmd_set_record_burst_stats_on_off,
8505 /* *** CONFIGURE UNICAST HASH TABLE *** */
8506 struct cmd_set_uc_hash_table {
8507 cmdline_fixed_string_t set;
8508 cmdline_fixed_string_t port;
8510 cmdline_fixed_string_t what;
8511 struct rte_ether_addr address;
8512 cmdline_fixed_string_t mode;
8516 cmd_set_uc_hash_parsed(void *parsed_result,
8517 __rte_unused struct cmdline *cl,
8518 __rte_unused void *data)
8521 struct cmd_set_uc_hash_table *res = parsed_result;
8523 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8525 if (strcmp(res->what, "uta") == 0)
8526 ret = rte_eth_dev_uc_hash_table_set(res->port_id,
8527 &res->address,(uint8_t)is_on);
8529 printf("bad unicast hash table parameter, return code = %d \n", ret);
8533 cmdline_parse_token_string_t cmd_set_uc_hash_set =
8534 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8536 cmdline_parse_token_string_t cmd_set_uc_hash_port =
8537 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8539 cmdline_parse_token_num_t cmd_set_uc_hash_portid =
8540 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_hash_table,
8541 port_id, RTE_UINT16);
8542 cmdline_parse_token_string_t cmd_set_uc_hash_what =
8543 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8545 cmdline_parse_token_etheraddr_t cmd_set_uc_hash_mac =
8546 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_uc_hash_table,
8548 cmdline_parse_token_string_t cmd_set_uc_hash_mode =
8549 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8552 cmdline_parse_inst_t cmd_set_uc_hash_filter = {
8553 .f = cmd_set_uc_hash_parsed,
8555 .help_str = "set port <port_id> uta <mac_addr> on|off)",
8557 (void *)&cmd_set_uc_hash_set,
8558 (void *)&cmd_set_uc_hash_port,
8559 (void *)&cmd_set_uc_hash_portid,
8560 (void *)&cmd_set_uc_hash_what,
8561 (void *)&cmd_set_uc_hash_mac,
8562 (void *)&cmd_set_uc_hash_mode,
8567 struct cmd_set_uc_all_hash_table {
8568 cmdline_fixed_string_t set;
8569 cmdline_fixed_string_t port;
8571 cmdline_fixed_string_t what;
8572 cmdline_fixed_string_t value;
8573 cmdline_fixed_string_t mode;
8577 cmd_set_uc_all_hash_parsed(void *parsed_result,
8578 __rte_unused struct cmdline *cl,
8579 __rte_unused void *data)
8582 struct cmd_set_uc_all_hash_table *res = parsed_result;
8584 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8586 if ((strcmp(res->what, "uta") == 0) &&
8587 (strcmp(res->value, "all") == 0))
8588 ret = rte_eth_dev_uc_all_hash_table_set(res->port_id,(uint8_t) is_on);
8590 printf("bad unicast hash table parameter,"
8591 "return code = %d \n", ret);
8594 cmdline_parse_token_string_t cmd_set_uc_all_hash_set =
8595 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8597 cmdline_parse_token_string_t cmd_set_uc_all_hash_port =
8598 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8600 cmdline_parse_token_num_t cmd_set_uc_all_hash_portid =
8601 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_all_hash_table,
8602 port_id, RTE_UINT16);
8603 cmdline_parse_token_string_t cmd_set_uc_all_hash_what =
8604 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8606 cmdline_parse_token_string_t cmd_set_uc_all_hash_value =
8607 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8609 cmdline_parse_token_string_t cmd_set_uc_all_hash_mode =
8610 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8613 cmdline_parse_inst_t cmd_set_uc_all_hash_filter = {
8614 .f = cmd_set_uc_all_hash_parsed,
8616 .help_str = "set port <port_id> uta all on|off",
8618 (void *)&cmd_set_uc_all_hash_set,
8619 (void *)&cmd_set_uc_all_hash_port,
8620 (void *)&cmd_set_uc_all_hash_portid,
8621 (void *)&cmd_set_uc_all_hash_what,
8622 (void *)&cmd_set_uc_all_hash_value,
8623 (void *)&cmd_set_uc_all_hash_mode,
8628 /* *** CONFIGURE VF TRAFFIC CONTROL *** */
8629 struct cmd_set_vf_traffic {
8630 cmdline_fixed_string_t set;
8631 cmdline_fixed_string_t port;
8633 cmdline_fixed_string_t vf;
8635 cmdline_fixed_string_t what;
8636 cmdline_fixed_string_t mode;
8640 cmd_set_vf_traffic_parsed(void *parsed_result,
8641 __rte_unused struct cmdline *cl,
8642 __rte_unused void *data)
8644 struct cmd_set_vf_traffic *res = parsed_result;
8645 int is_rx = (strcmp(res->what, "rx") == 0) ? 1 : 0;
8646 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8648 set_vf_traffic(res->port_id, (uint8_t)is_rx, res->vf_id,(uint8_t) is_on);
8651 cmdline_parse_token_string_t cmd_setvf_traffic_set =
8652 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8654 cmdline_parse_token_string_t cmd_setvf_traffic_port =
8655 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8657 cmdline_parse_token_num_t cmd_setvf_traffic_portid =
8658 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
8659 port_id, RTE_UINT16);
8660 cmdline_parse_token_string_t cmd_setvf_traffic_vf =
8661 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8663 cmdline_parse_token_num_t cmd_setvf_traffic_vfid =
8664 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
8666 cmdline_parse_token_string_t cmd_setvf_traffic_what =
8667 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8669 cmdline_parse_token_string_t cmd_setvf_traffic_mode =
8670 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8673 cmdline_parse_inst_t cmd_set_vf_traffic = {
8674 .f = cmd_set_vf_traffic_parsed,
8676 .help_str = "set port <port_id> vf <vf_id> rx|tx on|off",
8678 (void *)&cmd_setvf_traffic_set,
8679 (void *)&cmd_setvf_traffic_port,
8680 (void *)&cmd_setvf_traffic_portid,
8681 (void *)&cmd_setvf_traffic_vf,
8682 (void *)&cmd_setvf_traffic_vfid,
8683 (void *)&cmd_setvf_traffic_what,
8684 (void *)&cmd_setvf_traffic_mode,
8689 /* *** CONFIGURE VF RECEIVE MODE *** */
8690 struct cmd_set_vf_rxmode {
8691 cmdline_fixed_string_t set;
8692 cmdline_fixed_string_t port;
8694 cmdline_fixed_string_t vf;
8696 cmdline_fixed_string_t what;
8697 cmdline_fixed_string_t mode;
8698 cmdline_fixed_string_t on;
8702 cmd_set_vf_rxmode_parsed(void *parsed_result,
8703 __rte_unused struct cmdline *cl,
8704 __rte_unused void *data)
8707 uint16_t vf_rxmode = 0;
8708 struct cmd_set_vf_rxmode *res = parsed_result;
8710 int is_on = (strcmp(res->on, "on") == 0) ? 1 : 0;
8711 if (!strcmp(res->what,"rxmode")) {
8712 if (!strcmp(res->mode, "AUPE"))
8713 vf_rxmode |= ETH_VMDQ_ACCEPT_UNTAG;
8714 else if (!strcmp(res->mode, "ROPE"))
8715 vf_rxmode |= ETH_VMDQ_ACCEPT_HASH_UC;
8716 else if (!strcmp(res->mode, "BAM"))
8717 vf_rxmode |= ETH_VMDQ_ACCEPT_BROADCAST;
8718 else if (!strncmp(res->mode, "MPE",3))
8719 vf_rxmode |= ETH_VMDQ_ACCEPT_MULTICAST;
8722 RTE_SET_USED(is_on);
8724 #ifdef RTE_NET_IXGBE
8725 if (ret == -ENOTSUP)
8726 ret = rte_pmd_ixgbe_set_vf_rxmode(res->port_id, res->vf_id,
8727 vf_rxmode, (uint8_t)is_on);
8730 if (ret == -ENOTSUP)
8731 ret = rte_pmd_bnxt_set_vf_rxmode(res->port_id, res->vf_id,
8732 vf_rxmode, (uint8_t)is_on);
8735 printf("bad VF receive mode parameter, return code = %d \n",
8739 cmdline_parse_token_string_t cmd_set_vf_rxmode_set =
8740 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8742 cmdline_parse_token_string_t cmd_set_vf_rxmode_port =
8743 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8745 cmdline_parse_token_num_t cmd_set_vf_rxmode_portid =
8746 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
8747 port_id, RTE_UINT16);
8748 cmdline_parse_token_string_t cmd_set_vf_rxmode_vf =
8749 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8751 cmdline_parse_token_num_t cmd_set_vf_rxmode_vfid =
8752 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
8754 cmdline_parse_token_string_t cmd_set_vf_rxmode_what =
8755 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8757 cmdline_parse_token_string_t cmd_set_vf_rxmode_mode =
8758 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8759 mode, "AUPE#ROPE#BAM#MPE");
8760 cmdline_parse_token_string_t cmd_set_vf_rxmode_on =
8761 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8764 cmdline_parse_inst_t cmd_set_vf_rxmode = {
8765 .f = cmd_set_vf_rxmode_parsed,
8767 .help_str = "set port <port_id> vf <vf_id> rxmode "
8768 "AUPE|ROPE|BAM|MPE on|off",
8770 (void *)&cmd_set_vf_rxmode_set,
8771 (void *)&cmd_set_vf_rxmode_port,
8772 (void *)&cmd_set_vf_rxmode_portid,
8773 (void *)&cmd_set_vf_rxmode_vf,
8774 (void *)&cmd_set_vf_rxmode_vfid,
8775 (void *)&cmd_set_vf_rxmode_what,
8776 (void *)&cmd_set_vf_rxmode_mode,
8777 (void *)&cmd_set_vf_rxmode_on,
8782 /* *** ADD MAC ADDRESS FILTER FOR A VF OF A PORT *** */
8783 struct cmd_vf_mac_addr_result {
8784 cmdline_fixed_string_t mac_addr_cmd;
8785 cmdline_fixed_string_t what;
8786 cmdline_fixed_string_t port;
8788 cmdline_fixed_string_t vf;
8790 struct rte_ether_addr address;
8793 static void cmd_vf_mac_addr_parsed(void *parsed_result,
8794 __rte_unused struct cmdline *cl,
8795 __rte_unused void *data)
8797 struct cmd_vf_mac_addr_result *res = parsed_result;
8800 if (strcmp(res->what, "add") != 0)
8804 if (ret == -ENOTSUP)
8805 ret = rte_pmd_i40e_add_vf_mac_addr(res->port_num, res->vf_num,
8809 if (ret == -ENOTSUP)
8810 ret = rte_pmd_bnxt_mac_addr_add(res->port_num, &res->address,
8815 printf("vf_mac_addr_cmd error: (%s)\n", strerror(-ret));
8819 cmdline_parse_token_string_t cmd_vf_mac_addr_cmd =
8820 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8821 mac_addr_cmd,"mac_addr");
8822 cmdline_parse_token_string_t cmd_vf_mac_addr_what =
8823 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8825 cmdline_parse_token_string_t cmd_vf_mac_addr_port =
8826 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8828 cmdline_parse_token_num_t cmd_vf_mac_addr_portnum =
8829 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
8830 port_num, RTE_UINT16);
8831 cmdline_parse_token_string_t cmd_vf_mac_addr_vf =
8832 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8834 cmdline_parse_token_num_t cmd_vf_mac_addr_vfnum =
8835 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
8837 cmdline_parse_token_etheraddr_t cmd_vf_mac_addr_addr =
8838 TOKEN_ETHERADDR_INITIALIZER(struct cmd_vf_mac_addr_result,
8841 cmdline_parse_inst_t cmd_vf_mac_addr_filter = {
8842 .f = cmd_vf_mac_addr_parsed,
8844 .help_str = "mac_addr add port <port_id> vf <vf_id> <mac_addr>: "
8845 "Add MAC address filtering for a VF on port_id",
8847 (void *)&cmd_vf_mac_addr_cmd,
8848 (void *)&cmd_vf_mac_addr_what,
8849 (void *)&cmd_vf_mac_addr_port,
8850 (void *)&cmd_vf_mac_addr_portnum,
8851 (void *)&cmd_vf_mac_addr_vf,
8852 (void *)&cmd_vf_mac_addr_vfnum,
8853 (void *)&cmd_vf_mac_addr_addr,
8858 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
8859 struct cmd_vf_rx_vlan_filter {
8860 cmdline_fixed_string_t rx_vlan;
8861 cmdline_fixed_string_t what;
8863 cmdline_fixed_string_t port;
8865 cmdline_fixed_string_t vf;
8870 cmd_vf_rx_vlan_filter_parsed(void *parsed_result,
8871 __rte_unused struct cmdline *cl,
8872 __rte_unused void *data)
8874 struct cmd_vf_rx_vlan_filter *res = parsed_result;
8877 __rte_unused int is_add = (strcmp(res->what, "add") == 0) ? 1 : 0;
8879 #ifdef RTE_NET_IXGBE
8880 if (ret == -ENOTSUP)
8881 ret = rte_pmd_ixgbe_set_vf_vlan_filter(res->port_id,
8882 res->vlan_id, res->vf_mask, is_add);
8885 if (ret == -ENOTSUP)
8886 ret = rte_pmd_i40e_set_vf_vlan_filter(res->port_id,
8887 res->vlan_id, res->vf_mask, is_add);
8890 if (ret == -ENOTSUP)
8891 ret = rte_pmd_bnxt_set_vf_vlan_filter(res->port_id,
8892 res->vlan_id, res->vf_mask, is_add);
8899 printf("invalid vlan_id %d or vf_mask %"PRIu64"\n",
8900 res->vlan_id, res->vf_mask);
8903 printf("invalid port_id %d\n", res->port_id);
8906 printf("function not implemented or supported\n");
8909 printf("programming error: (%s)\n", strerror(-ret));
8913 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_rx_vlan =
8914 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8915 rx_vlan, "rx_vlan");
8916 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_what =
8917 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8919 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vlanid =
8920 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8921 vlan_id, RTE_UINT16);
8922 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_port =
8923 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8925 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_portid =
8926 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8927 port_id, RTE_UINT16);
8928 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_vf =
8929 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8931 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vf_mask =
8932 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8933 vf_mask, RTE_UINT64);
8935 cmdline_parse_inst_t cmd_vf_rxvlan_filter = {
8936 .f = cmd_vf_rx_vlan_filter_parsed,
8938 .help_str = "rx_vlan add|rm <vlan_id> port <port_id> vf <vf_mask>: "
8939 "(vf_mask = hexadecimal VF mask)",
8941 (void *)&cmd_vf_rx_vlan_filter_rx_vlan,
8942 (void *)&cmd_vf_rx_vlan_filter_what,
8943 (void *)&cmd_vf_rx_vlan_filter_vlanid,
8944 (void *)&cmd_vf_rx_vlan_filter_port,
8945 (void *)&cmd_vf_rx_vlan_filter_portid,
8946 (void *)&cmd_vf_rx_vlan_filter_vf,
8947 (void *)&cmd_vf_rx_vlan_filter_vf_mask,
8952 /* *** SET RATE LIMIT FOR A QUEUE OF A PORT *** */
8953 struct cmd_queue_rate_limit_result {
8954 cmdline_fixed_string_t set;
8955 cmdline_fixed_string_t port;
8957 cmdline_fixed_string_t queue;
8959 cmdline_fixed_string_t rate;
8963 static void cmd_queue_rate_limit_parsed(void *parsed_result,
8964 __rte_unused struct cmdline *cl,
8965 __rte_unused void *data)
8967 struct cmd_queue_rate_limit_result *res = parsed_result;
8970 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
8971 && (strcmp(res->queue, "queue") == 0)
8972 && (strcmp(res->rate, "rate") == 0))
8973 ret = set_queue_rate_limit(res->port_num, res->queue_num,
8976 printf("queue_rate_limit_cmd error: (%s)\n", strerror(-ret));
8980 cmdline_parse_token_string_t cmd_queue_rate_limit_set =
8981 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8983 cmdline_parse_token_string_t cmd_queue_rate_limit_port =
8984 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8986 cmdline_parse_token_num_t cmd_queue_rate_limit_portnum =
8987 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
8988 port_num, RTE_UINT16);
8989 cmdline_parse_token_string_t cmd_queue_rate_limit_queue =
8990 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8992 cmdline_parse_token_num_t cmd_queue_rate_limit_queuenum =
8993 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
8994 queue_num, RTE_UINT8);
8995 cmdline_parse_token_string_t cmd_queue_rate_limit_rate =
8996 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8998 cmdline_parse_token_num_t cmd_queue_rate_limit_ratenum =
8999 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
9000 rate_num, RTE_UINT16);
9002 cmdline_parse_inst_t cmd_queue_rate_limit = {
9003 .f = cmd_queue_rate_limit_parsed,
9005 .help_str = "set port <port_id> queue <queue_id> rate <rate_value>: "
9006 "Set rate limit for a queue on port_id",
9008 (void *)&cmd_queue_rate_limit_set,
9009 (void *)&cmd_queue_rate_limit_port,
9010 (void *)&cmd_queue_rate_limit_portnum,
9011 (void *)&cmd_queue_rate_limit_queue,
9012 (void *)&cmd_queue_rate_limit_queuenum,
9013 (void *)&cmd_queue_rate_limit_rate,
9014 (void *)&cmd_queue_rate_limit_ratenum,
9019 /* *** SET RATE LIMIT FOR A VF OF A PORT *** */
9020 struct cmd_vf_rate_limit_result {
9021 cmdline_fixed_string_t set;
9022 cmdline_fixed_string_t port;
9024 cmdline_fixed_string_t vf;
9026 cmdline_fixed_string_t rate;
9028 cmdline_fixed_string_t q_msk;
9032 static void cmd_vf_rate_limit_parsed(void *parsed_result,
9033 __rte_unused struct cmdline *cl,
9034 __rte_unused void *data)
9036 struct cmd_vf_rate_limit_result *res = parsed_result;
9039 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
9040 && (strcmp(res->vf, "vf") == 0)
9041 && (strcmp(res->rate, "rate") == 0)
9042 && (strcmp(res->q_msk, "queue_mask") == 0))
9043 ret = set_vf_rate_limit(res->port_num, res->vf_num,
9044 res->rate_num, res->q_msk_val);
9046 printf("vf_rate_limit_cmd error: (%s)\n", strerror(-ret));
9050 cmdline_parse_token_string_t cmd_vf_rate_limit_set =
9051 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9053 cmdline_parse_token_string_t cmd_vf_rate_limit_port =
9054 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9056 cmdline_parse_token_num_t cmd_vf_rate_limit_portnum =
9057 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
9058 port_num, RTE_UINT16);
9059 cmdline_parse_token_string_t cmd_vf_rate_limit_vf =
9060 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9062 cmdline_parse_token_num_t cmd_vf_rate_limit_vfnum =
9063 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
9065 cmdline_parse_token_string_t cmd_vf_rate_limit_rate =
9066 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9068 cmdline_parse_token_num_t cmd_vf_rate_limit_ratenum =
9069 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
9070 rate_num, RTE_UINT16);
9071 cmdline_parse_token_string_t cmd_vf_rate_limit_q_msk =
9072 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9073 q_msk, "queue_mask");
9074 cmdline_parse_token_num_t cmd_vf_rate_limit_q_msk_val =
9075 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
9076 q_msk_val, RTE_UINT64);
9078 cmdline_parse_inst_t cmd_vf_rate_limit = {
9079 .f = cmd_vf_rate_limit_parsed,
9081 .help_str = "set port <port_id> vf <vf_id> rate <rate_value> "
9082 "queue_mask <queue_mask_value>: "
9083 "Set rate limit for queues of VF on port_id",
9085 (void *)&cmd_vf_rate_limit_set,
9086 (void *)&cmd_vf_rate_limit_port,
9087 (void *)&cmd_vf_rate_limit_portnum,
9088 (void *)&cmd_vf_rate_limit_vf,
9089 (void *)&cmd_vf_rate_limit_vfnum,
9090 (void *)&cmd_vf_rate_limit_rate,
9091 (void *)&cmd_vf_rate_limit_ratenum,
9092 (void *)&cmd_vf_rate_limit_q_msk,
9093 (void *)&cmd_vf_rate_limit_q_msk_val,
9098 /* *** CONFIGURE TUNNEL UDP PORT *** */
9099 struct cmd_tunnel_udp_config {
9100 cmdline_fixed_string_t rx_vxlan_port;
9101 cmdline_fixed_string_t what;
9107 cmd_tunnel_udp_config_parsed(void *parsed_result,
9108 __rte_unused struct cmdline *cl,
9109 __rte_unused void *data)
9111 struct cmd_tunnel_udp_config *res = parsed_result;
9112 struct rte_eth_udp_tunnel tunnel_udp;
9115 tunnel_udp.udp_port = res->udp_port;
9116 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN;
9118 if (!strcmp(res->what, "add"))
9119 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id,
9122 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id,
9126 printf("udp tunneling add error: (%s)\n", strerror(-ret));
9129 cmdline_parse_token_string_t cmd_tunnel_udp_config_rx_vxlan_port =
9130 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
9131 rx_vxlan_port, "rx_vxlan_port");
9132 cmdline_parse_token_string_t cmd_tunnel_udp_config_what =
9133 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
9135 cmdline_parse_token_num_t cmd_tunnel_udp_config_udp_port =
9136 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
9137 udp_port, RTE_UINT16);
9138 cmdline_parse_token_num_t cmd_tunnel_udp_config_port_id =
9139 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
9140 port_id, RTE_UINT16);
9142 cmdline_parse_inst_t cmd_tunnel_udp_config = {
9143 .f = cmd_tunnel_udp_config_parsed,
9145 .help_str = "rx_vxlan_port add|rm <udp_port> <port_id>: "
9146 "Add/Remove a tunneling UDP port filter",
9148 (void *)&cmd_tunnel_udp_config_rx_vxlan_port,
9149 (void *)&cmd_tunnel_udp_config_what,
9150 (void *)&cmd_tunnel_udp_config_udp_port,
9151 (void *)&cmd_tunnel_udp_config_port_id,
9156 struct cmd_config_tunnel_udp_port {
9157 cmdline_fixed_string_t port;
9158 cmdline_fixed_string_t config;
9160 cmdline_fixed_string_t udp_tunnel_port;
9161 cmdline_fixed_string_t action;
9162 cmdline_fixed_string_t tunnel_type;
9167 cmd_cfg_tunnel_udp_port_parsed(void *parsed_result,
9168 __rte_unused struct cmdline *cl,
9169 __rte_unused void *data)
9171 struct cmd_config_tunnel_udp_port *res = parsed_result;
9172 struct rte_eth_udp_tunnel tunnel_udp;
9175 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9178 tunnel_udp.udp_port = res->udp_port;
9180 if (!strcmp(res->tunnel_type, "vxlan")) {
9181 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN;
9182 } else if (!strcmp(res->tunnel_type, "geneve")) {
9183 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_GENEVE;
9184 } else if (!strcmp(res->tunnel_type, "vxlan-gpe")) {
9185 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN_GPE;
9186 } else if (!strcmp(res->tunnel_type, "ecpri")) {
9187 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_ECPRI;
9189 printf("Invalid tunnel type\n");
9193 if (!strcmp(res->action, "add"))
9194 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id,
9197 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id,
9201 printf("udp tunneling port add error: (%s)\n", strerror(-ret));
9204 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_port =
9205 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, port,
9207 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_config =
9208 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, config,
9210 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_port_id =
9211 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, port_id,
9213 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_port =
9214 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port,
9217 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_action =
9218 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, action,
9220 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_type =
9221 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, tunnel_type,
9222 "vxlan#geneve#vxlan-gpe#ecpri");
9223 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_value =
9224 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, udp_port,
9227 cmdline_parse_inst_t cmd_cfg_tunnel_udp_port = {
9228 .f = cmd_cfg_tunnel_udp_port_parsed,
9230 .help_str = "port config <port_id> udp_tunnel_port add|rm vxlan|"
9231 "geneve|vxlan-gpe|ecpri <udp_port>",
9233 (void *)&cmd_config_tunnel_udp_port_port,
9234 (void *)&cmd_config_tunnel_udp_port_config,
9235 (void *)&cmd_config_tunnel_udp_port_port_id,
9236 (void *)&cmd_config_tunnel_udp_port_tunnel_port,
9237 (void *)&cmd_config_tunnel_udp_port_action,
9238 (void *)&cmd_config_tunnel_udp_port_tunnel_type,
9239 (void *)&cmd_config_tunnel_udp_port_value,
9244 /* *** CONFIGURE VM MIRROR VLAN/POOL RULE *** */
9245 struct cmd_set_mirror_mask_result {
9246 cmdline_fixed_string_t set;
9247 cmdline_fixed_string_t port;
9249 cmdline_fixed_string_t mirror;
9251 cmdline_fixed_string_t what;
9252 cmdline_fixed_string_t value;
9253 cmdline_fixed_string_t dstpool;
9255 cmdline_fixed_string_t on;
9258 cmdline_parse_token_string_t cmd_mirror_mask_set =
9259 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9261 cmdline_parse_token_string_t cmd_mirror_mask_port =
9262 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9264 cmdline_parse_token_num_t cmd_mirror_mask_portid =
9265 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
9266 port_id, RTE_UINT16);
9267 cmdline_parse_token_string_t cmd_mirror_mask_mirror =
9268 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9269 mirror, "mirror-rule");
9270 cmdline_parse_token_num_t cmd_mirror_mask_ruleid =
9271 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
9272 rule_id, RTE_UINT8);
9273 cmdline_parse_token_string_t cmd_mirror_mask_what =
9274 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9275 what, "pool-mirror-up#pool-mirror-down"
9277 cmdline_parse_token_string_t cmd_mirror_mask_value =
9278 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9280 cmdline_parse_token_string_t cmd_mirror_mask_dstpool =
9281 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9282 dstpool, "dst-pool");
9283 cmdline_parse_token_num_t cmd_mirror_mask_poolid =
9284 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
9285 dstpool_id, RTE_UINT8);
9286 cmdline_parse_token_string_t cmd_mirror_mask_on =
9287 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9291 cmd_set_mirror_mask_parsed(void *parsed_result,
9292 __rte_unused struct cmdline *cl,
9293 __rte_unused void *data)
9296 struct cmd_set_mirror_mask_result *res = parsed_result;
9297 struct rte_eth_mirror_conf mr_conf;
9299 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
9301 unsigned int vlan_list[ETH_MIRROR_MAX_VLANS];
9303 mr_conf.dst_pool = res->dstpool_id;
9305 if (!strcmp(res->what, "pool-mirror-up")) {
9306 mr_conf.pool_mask = strtoull(res->value, NULL, 16);
9307 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_UP;
9308 } else if (!strcmp(res->what, "pool-mirror-down")) {
9309 mr_conf.pool_mask = strtoull(res->value, NULL, 16);
9310 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_DOWN;
9311 } else if (!strcmp(res->what, "vlan-mirror")) {
9312 mr_conf.rule_type = ETH_MIRROR_VLAN;
9313 nb_item = parse_item_list(res->value, "vlan",
9314 ETH_MIRROR_MAX_VLANS, vlan_list, 1);
9318 for (i = 0; i < nb_item; i++) {
9319 if (vlan_list[i] > RTE_ETHER_MAX_VLAN_ID) {
9320 printf("Invalid vlan_id: must be < 4096\n");
9324 mr_conf.vlan.vlan_id[i] = (uint16_t)vlan_list[i];
9325 mr_conf.vlan.vlan_mask |= 1ULL << i;
9329 if (!strcmp(res->on, "on"))
9330 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9333 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9336 printf("mirror rule add error: (%s)\n", strerror(-ret));
9339 cmdline_parse_inst_t cmd_set_mirror_mask = {
9340 .f = cmd_set_mirror_mask_parsed,
9342 .help_str = "set port <port_id> mirror-rule <rule_id> "
9343 "pool-mirror-up|pool-mirror-down|vlan-mirror "
9344 "<pool_mask|vlan_id[,vlan_id]*> dst-pool <pool_id> on|off",
9346 (void *)&cmd_mirror_mask_set,
9347 (void *)&cmd_mirror_mask_port,
9348 (void *)&cmd_mirror_mask_portid,
9349 (void *)&cmd_mirror_mask_mirror,
9350 (void *)&cmd_mirror_mask_ruleid,
9351 (void *)&cmd_mirror_mask_what,
9352 (void *)&cmd_mirror_mask_value,
9353 (void *)&cmd_mirror_mask_dstpool,
9354 (void *)&cmd_mirror_mask_poolid,
9355 (void *)&cmd_mirror_mask_on,
9360 /* *** CONFIGURE VM MIRROR UPLINK/DOWNLINK RULE *** */
9361 struct cmd_set_mirror_link_result {
9362 cmdline_fixed_string_t set;
9363 cmdline_fixed_string_t port;
9365 cmdline_fixed_string_t mirror;
9367 cmdline_fixed_string_t what;
9368 cmdline_fixed_string_t dstpool;
9370 cmdline_fixed_string_t on;
9373 cmdline_parse_token_string_t cmd_mirror_link_set =
9374 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9376 cmdline_parse_token_string_t cmd_mirror_link_port =
9377 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9379 cmdline_parse_token_num_t cmd_mirror_link_portid =
9380 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
9381 port_id, RTE_UINT16);
9382 cmdline_parse_token_string_t cmd_mirror_link_mirror =
9383 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9384 mirror, "mirror-rule");
9385 cmdline_parse_token_num_t cmd_mirror_link_ruleid =
9386 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
9387 rule_id, RTE_UINT8);
9388 cmdline_parse_token_string_t cmd_mirror_link_what =
9389 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9390 what, "uplink-mirror#downlink-mirror");
9391 cmdline_parse_token_string_t cmd_mirror_link_dstpool =
9392 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9393 dstpool, "dst-pool");
9394 cmdline_parse_token_num_t cmd_mirror_link_poolid =
9395 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
9396 dstpool_id, RTE_UINT8);
9397 cmdline_parse_token_string_t cmd_mirror_link_on =
9398 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9402 cmd_set_mirror_link_parsed(void *parsed_result,
9403 __rte_unused struct cmdline *cl,
9404 __rte_unused void *data)
9407 struct cmd_set_mirror_link_result *res = parsed_result;
9408 struct rte_eth_mirror_conf mr_conf;
9410 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
9411 if (!strcmp(res->what, "uplink-mirror"))
9412 mr_conf.rule_type = ETH_MIRROR_UPLINK_PORT;
9414 mr_conf.rule_type = ETH_MIRROR_DOWNLINK_PORT;
9416 mr_conf.dst_pool = res->dstpool_id;
9418 if (!strcmp(res->on, "on"))
9419 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9422 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9425 /* check the return value and print it if is < 0 */
9427 printf("mirror rule add error: (%s)\n", strerror(-ret));
9431 cmdline_parse_inst_t cmd_set_mirror_link = {
9432 .f = cmd_set_mirror_link_parsed,
9434 .help_str = "set port <port_id> mirror-rule <rule_id> "
9435 "uplink-mirror|downlink-mirror dst-pool <pool_id> on|off",
9437 (void *)&cmd_mirror_link_set,
9438 (void *)&cmd_mirror_link_port,
9439 (void *)&cmd_mirror_link_portid,
9440 (void *)&cmd_mirror_link_mirror,
9441 (void *)&cmd_mirror_link_ruleid,
9442 (void *)&cmd_mirror_link_what,
9443 (void *)&cmd_mirror_link_dstpool,
9444 (void *)&cmd_mirror_link_poolid,
9445 (void *)&cmd_mirror_link_on,
9450 /* *** RESET VM MIRROR RULE *** */
9451 struct cmd_rm_mirror_rule_result {
9452 cmdline_fixed_string_t reset;
9453 cmdline_fixed_string_t port;
9455 cmdline_fixed_string_t mirror;
9459 cmdline_parse_token_string_t cmd_rm_mirror_rule_reset =
9460 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
9462 cmdline_parse_token_string_t cmd_rm_mirror_rule_port =
9463 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
9465 cmdline_parse_token_num_t cmd_rm_mirror_rule_portid =
9466 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
9467 port_id, RTE_UINT16);
9468 cmdline_parse_token_string_t cmd_rm_mirror_rule_mirror =
9469 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
9470 mirror, "mirror-rule");
9471 cmdline_parse_token_num_t cmd_rm_mirror_rule_ruleid =
9472 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
9473 rule_id, RTE_UINT8);
9476 cmd_reset_mirror_rule_parsed(void *parsed_result,
9477 __rte_unused struct cmdline *cl,
9478 __rte_unused void *data)
9481 struct cmd_set_mirror_link_result *res = parsed_result;
9483 ret = rte_eth_mirror_rule_reset(res->port_id,res->rule_id);
9485 printf("mirror rule remove error: (%s)\n", strerror(-ret));
9488 cmdline_parse_inst_t cmd_reset_mirror_rule = {
9489 .f = cmd_reset_mirror_rule_parsed,
9491 .help_str = "reset port <port_id> mirror-rule <rule_id>",
9493 (void *)&cmd_rm_mirror_rule_reset,
9494 (void *)&cmd_rm_mirror_rule_port,
9495 (void *)&cmd_rm_mirror_rule_portid,
9496 (void *)&cmd_rm_mirror_rule_mirror,
9497 (void *)&cmd_rm_mirror_rule_ruleid,
9502 /* ******************************************************************************** */
9504 struct cmd_dump_result {
9505 cmdline_fixed_string_t dump;
9509 dump_struct_sizes(void)
9511 #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t));
9512 DUMP_SIZE(struct rte_mbuf);
9513 DUMP_SIZE(struct rte_mempool);
9514 DUMP_SIZE(struct rte_ring);
9519 /* Dump the socket memory statistics on console */
9521 dump_socket_mem(FILE *f)
9523 struct rte_malloc_socket_stats socket_stats;
9528 unsigned int n_alloc = 0;
9529 unsigned int n_free = 0;
9530 static size_t last_allocs;
9531 static size_t last_total;
9534 for (i = 0; i < RTE_MAX_NUMA_NODES; i++) {
9535 if (rte_malloc_get_socket_stats(i, &socket_stats) ||
9536 !socket_stats.heap_totalsz_bytes)
9538 total += socket_stats.heap_totalsz_bytes;
9539 alloc += socket_stats.heap_allocsz_bytes;
9540 free += socket_stats.heap_freesz_bytes;
9541 n_alloc += socket_stats.alloc_count;
9542 n_free += socket_stats.free_count;
9544 "Socket %u: size(M) total: %.6lf alloc: %.6lf(%.3lf%%) free: %.6lf \tcount alloc: %-4u free: %u\n",
9546 (double)socket_stats.heap_totalsz_bytes / (1024 * 1024),
9547 (double)socket_stats.heap_allocsz_bytes / (1024 * 1024),
9548 (double)socket_stats.heap_allocsz_bytes * 100 /
9549 (double)socket_stats.heap_totalsz_bytes,
9550 (double)socket_stats.heap_freesz_bytes / (1024 * 1024),
9551 socket_stats.alloc_count,
9552 socket_stats.free_count);
9555 "Total : size(M) total: %.6lf alloc: %.6lf(%.3lf%%) free: %.6lf \tcount alloc: %-4u free: %u\n",
9556 (double)total / (1024 * 1024), (double)alloc / (1024 * 1024),
9557 (double)alloc * 100 / (double)total,
9558 (double)free / (1024 * 1024),
9561 fprintf(stdout, "Memory total change: %.6lf(M), allocation change: %.6lf(M)\n",
9562 ((double)total - (double)last_total) / (1024 * 1024),
9563 (double)(alloc - (double)last_allocs) / 1024 / 1024);
9564 last_allocs = alloc;
9568 static void cmd_dump_parsed(void *parsed_result,
9569 __rte_unused struct cmdline *cl,
9570 __rte_unused void *data)
9572 struct cmd_dump_result *res = parsed_result;
9574 if (!strcmp(res->dump, "dump_physmem"))
9575 rte_dump_physmem_layout(stdout);
9576 else if (!strcmp(res->dump, "dump_socket_mem"))
9577 dump_socket_mem(stdout);
9578 else if (!strcmp(res->dump, "dump_memzone"))
9579 rte_memzone_dump(stdout);
9580 else if (!strcmp(res->dump, "dump_struct_sizes"))
9581 dump_struct_sizes();
9582 else if (!strcmp(res->dump, "dump_ring"))
9583 rte_ring_list_dump(stdout);
9584 else if (!strcmp(res->dump, "dump_mempool"))
9585 rte_mempool_list_dump(stdout);
9586 else if (!strcmp(res->dump, "dump_devargs"))
9587 rte_devargs_dump(stdout);
9588 else if (!strcmp(res->dump, "dump_log_types"))
9589 rte_log_dump(stdout);
9592 cmdline_parse_token_string_t cmd_dump_dump =
9593 TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump,
9597 "dump_struct_sizes#"
9603 cmdline_parse_inst_t cmd_dump = {
9604 .f = cmd_dump_parsed, /* function to call */
9605 .data = NULL, /* 2nd arg of func */
9606 .help_str = "Dump status",
9607 .tokens = { /* token list, NULL terminated */
9608 (void *)&cmd_dump_dump,
9613 /* ******************************************************************************** */
9615 struct cmd_dump_one_result {
9616 cmdline_fixed_string_t dump;
9617 cmdline_fixed_string_t name;
9620 static void cmd_dump_one_parsed(void *parsed_result, struct cmdline *cl,
9621 __rte_unused void *data)
9623 struct cmd_dump_one_result *res = parsed_result;
9625 if (!strcmp(res->dump, "dump_ring")) {
9627 r = rte_ring_lookup(res->name);
9629 cmdline_printf(cl, "Cannot find ring\n");
9632 rte_ring_dump(stdout, r);
9633 } else if (!strcmp(res->dump, "dump_mempool")) {
9634 struct rte_mempool *mp;
9635 mp = rte_mempool_lookup(res->name);
9637 cmdline_printf(cl, "Cannot find mempool\n");
9640 rte_mempool_dump(stdout, mp);
9644 cmdline_parse_token_string_t cmd_dump_one_dump =
9645 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, dump,
9646 "dump_ring#dump_mempool");
9648 cmdline_parse_token_string_t cmd_dump_one_name =
9649 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, name, NULL);
9651 cmdline_parse_inst_t cmd_dump_one = {
9652 .f = cmd_dump_one_parsed, /* function to call */
9653 .data = NULL, /* 2nd arg of func */
9654 .help_str = "dump_ring|dump_mempool <name>: Dump one ring/mempool",
9655 .tokens = { /* token list, NULL terminated */
9656 (void *)&cmd_dump_one_dump,
9657 (void *)&cmd_dump_one_name,
9662 /* *** queue region set *** */
9663 struct cmd_queue_region_result {
9664 cmdline_fixed_string_t set;
9665 cmdline_fixed_string_t port;
9667 cmdline_fixed_string_t cmd;
9668 cmdline_fixed_string_t region;
9670 cmdline_fixed_string_t queue_start_index;
9672 cmdline_fixed_string_t queue_num;
9673 uint8_t queue_num_value;
9677 cmd_queue_region_parsed(void *parsed_result,
9678 __rte_unused struct cmdline *cl,
9679 __rte_unused void *data)
9681 struct cmd_queue_region_result *res = parsed_result;
9684 struct rte_pmd_i40e_queue_region_conf region_conf;
9685 enum rte_pmd_i40e_queue_region_op op_type;
9688 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9692 memset(®ion_conf, 0, sizeof(region_conf));
9693 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_SET;
9694 region_conf.region_id = res->region_id;
9695 region_conf.queue_num = res->queue_num_value;
9696 region_conf.queue_start_index = res->queue_id;
9698 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9699 op_type, ®ion_conf);
9706 printf("function not implemented or supported\n");
9709 printf("queue region config error: (%s)\n", strerror(-ret));
9713 cmdline_parse_token_string_t cmd_queue_region_set =
9714 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9716 cmdline_parse_token_string_t cmd_queue_region_port =
9717 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, port, "port");
9718 cmdline_parse_token_num_t cmd_queue_region_port_id =
9719 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9720 port_id, RTE_UINT16);
9721 cmdline_parse_token_string_t cmd_queue_region_cmd =
9722 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9723 cmd, "queue-region");
9724 cmdline_parse_token_string_t cmd_queue_region_id =
9725 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9726 region, "region_id");
9727 cmdline_parse_token_num_t cmd_queue_region_index =
9728 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9729 region_id, RTE_UINT8);
9730 cmdline_parse_token_string_t cmd_queue_region_queue_start_index =
9731 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9732 queue_start_index, "queue_start_index");
9733 cmdline_parse_token_num_t cmd_queue_region_queue_id =
9734 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9735 queue_id, RTE_UINT8);
9736 cmdline_parse_token_string_t cmd_queue_region_queue_num =
9737 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9738 queue_num, "queue_num");
9739 cmdline_parse_token_num_t cmd_queue_region_queue_num_value =
9740 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9741 queue_num_value, RTE_UINT8);
9743 cmdline_parse_inst_t cmd_queue_region = {
9744 .f = cmd_queue_region_parsed,
9746 .help_str = "set port <port_id> queue-region region_id <value> "
9747 "queue_start_index <value> queue_num <value>: Set a queue region",
9749 (void *)&cmd_queue_region_set,
9750 (void *)&cmd_queue_region_port,
9751 (void *)&cmd_queue_region_port_id,
9752 (void *)&cmd_queue_region_cmd,
9753 (void *)&cmd_queue_region_id,
9754 (void *)&cmd_queue_region_index,
9755 (void *)&cmd_queue_region_queue_start_index,
9756 (void *)&cmd_queue_region_queue_id,
9757 (void *)&cmd_queue_region_queue_num,
9758 (void *)&cmd_queue_region_queue_num_value,
9763 /* *** queue region and flowtype set *** */
9764 struct cmd_region_flowtype_result {
9765 cmdline_fixed_string_t set;
9766 cmdline_fixed_string_t port;
9768 cmdline_fixed_string_t cmd;
9769 cmdline_fixed_string_t region;
9771 cmdline_fixed_string_t flowtype;
9772 uint8_t flowtype_id;
9776 cmd_region_flowtype_parsed(void *parsed_result,
9777 __rte_unused struct cmdline *cl,
9778 __rte_unused void *data)
9780 struct cmd_region_flowtype_result *res = parsed_result;
9783 struct rte_pmd_i40e_queue_region_conf region_conf;
9784 enum rte_pmd_i40e_queue_region_op op_type;
9787 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9791 memset(®ion_conf, 0, sizeof(region_conf));
9793 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_FLOWTYPE_SET;
9794 region_conf.region_id = res->region_id;
9795 region_conf.hw_flowtype = res->flowtype_id;
9797 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9798 op_type, ®ion_conf);
9805 printf("function not implemented or supported\n");
9808 printf("region flowtype config error: (%s)\n", strerror(-ret));
9812 cmdline_parse_token_string_t cmd_region_flowtype_set =
9813 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9815 cmdline_parse_token_string_t cmd_region_flowtype_port =
9816 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9818 cmdline_parse_token_num_t cmd_region_flowtype_port_index =
9819 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
9820 port_id, RTE_UINT16);
9821 cmdline_parse_token_string_t cmd_region_flowtype_cmd =
9822 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9823 cmd, "queue-region");
9824 cmdline_parse_token_string_t cmd_region_flowtype_index =
9825 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9826 region, "region_id");
9827 cmdline_parse_token_num_t cmd_region_flowtype_id =
9828 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
9829 region_id, RTE_UINT8);
9830 cmdline_parse_token_string_t cmd_region_flowtype_flow_index =
9831 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9832 flowtype, "flowtype");
9833 cmdline_parse_token_num_t cmd_region_flowtype_flow_id =
9834 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
9835 flowtype_id, RTE_UINT8);
9836 cmdline_parse_inst_t cmd_region_flowtype = {
9837 .f = cmd_region_flowtype_parsed,
9839 .help_str = "set port <port_id> queue-region region_id <value> "
9840 "flowtype <value>: Set a flowtype region index",
9842 (void *)&cmd_region_flowtype_set,
9843 (void *)&cmd_region_flowtype_port,
9844 (void *)&cmd_region_flowtype_port_index,
9845 (void *)&cmd_region_flowtype_cmd,
9846 (void *)&cmd_region_flowtype_index,
9847 (void *)&cmd_region_flowtype_id,
9848 (void *)&cmd_region_flowtype_flow_index,
9849 (void *)&cmd_region_flowtype_flow_id,
9854 /* *** User Priority (UP) to queue region (region_id) set *** */
9855 struct cmd_user_priority_region_result {
9856 cmdline_fixed_string_t set;
9857 cmdline_fixed_string_t port;
9859 cmdline_fixed_string_t cmd;
9860 cmdline_fixed_string_t user_priority;
9861 uint8_t user_priority_id;
9862 cmdline_fixed_string_t region;
9867 cmd_user_priority_region_parsed(void *parsed_result,
9868 __rte_unused struct cmdline *cl,
9869 __rte_unused void *data)
9871 struct cmd_user_priority_region_result *res = parsed_result;
9874 struct rte_pmd_i40e_queue_region_conf region_conf;
9875 enum rte_pmd_i40e_queue_region_op op_type;
9878 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9882 memset(®ion_conf, 0, sizeof(region_conf));
9883 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_USER_PRIORITY_SET;
9884 region_conf.user_priority = res->user_priority_id;
9885 region_conf.region_id = res->region_id;
9887 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9888 op_type, ®ion_conf);
9895 printf("function not implemented or supported\n");
9898 printf("user_priority region config error: (%s)\n",
9903 cmdline_parse_token_string_t cmd_user_priority_region_set =
9904 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9906 cmdline_parse_token_string_t cmd_user_priority_region_port =
9907 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9909 cmdline_parse_token_num_t cmd_user_priority_region_port_index =
9910 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
9911 port_id, RTE_UINT16);
9912 cmdline_parse_token_string_t cmd_user_priority_region_cmd =
9913 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9914 cmd, "queue-region");
9915 cmdline_parse_token_string_t cmd_user_priority_region_UP =
9916 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9917 user_priority, "UP");
9918 cmdline_parse_token_num_t cmd_user_priority_region_UP_id =
9919 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
9920 user_priority_id, RTE_UINT8);
9921 cmdline_parse_token_string_t cmd_user_priority_region_region =
9922 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9923 region, "region_id");
9924 cmdline_parse_token_num_t cmd_user_priority_region_region_id =
9925 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
9926 region_id, RTE_UINT8);
9928 cmdline_parse_inst_t cmd_user_priority_region = {
9929 .f = cmd_user_priority_region_parsed,
9931 .help_str = "set port <port_id> queue-region UP <value> "
9932 "region_id <value>: Set the mapping of User Priority (UP) "
9933 "to queue region (region_id) ",
9935 (void *)&cmd_user_priority_region_set,
9936 (void *)&cmd_user_priority_region_port,
9937 (void *)&cmd_user_priority_region_port_index,
9938 (void *)&cmd_user_priority_region_cmd,
9939 (void *)&cmd_user_priority_region_UP,
9940 (void *)&cmd_user_priority_region_UP_id,
9941 (void *)&cmd_user_priority_region_region,
9942 (void *)&cmd_user_priority_region_region_id,
9947 /* *** flush all queue region related configuration *** */
9948 struct cmd_flush_queue_region_result {
9949 cmdline_fixed_string_t set;
9950 cmdline_fixed_string_t port;
9952 cmdline_fixed_string_t cmd;
9953 cmdline_fixed_string_t flush;
9954 cmdline_fixed_string_t what;
9958 cmd_flush_queue_region_parsed(void *parsed_result,
9959 __rte_unused struct cmdline *cl,
9960 __rte_unused void *data)
9962 struct cmd_flush_queue_region_result *res = parsed_result;
9965 struct rte_pmd_i40e_queue_region_conf region_conf;
9966 enum rte_pmd_i40e_queue_region_op op_type;
9969 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9973 memset(®ion_conf, 0, sizeof(region_conf));
9975 if (strcmp(res->what, "on") == 0)
9976 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_ON;
9978 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_OFF;
9980 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9981 op_type, ®ion_conf);
9988 printf("function not implemented or supported\n");
9991 printf("queue region config flush error: (%s)\n",
9996 cmdline_parse_token_string_t cmd_flush_queue_region_set =
9997 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
9999 cmdline_parse_token_string_t cmd_flush_queue_region_port =
10000 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10002 cmdline_parse_token_num_t cmd_flush_queue_region_port_index =
10003 TOKEN_NUM_INITIALIZER(struct cmd_flush_queue_region_result,
10004 port_id, RTE_UINT16);
10005 cmdline_parse_token_string_t cmd_flush_queue_region_cmd =
10006 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10007 cmd, "queue-region");
10008 cmdline_parse_token_string_t cmd_flush_queue_region_flush =
10009 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10011 cmdline_parse_token_string_t cmd_flush_queue_region_what =
10012 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10015 cmdline_parse_inst_t cmd_flush_queue_region = {
10016 .f = cmd_flush_queue_region_parsed,
10018 .help_str = "set port <port_id> queue-region flush on|off"
10019 ": flush all queue region related configuration",
10021 (void *)&cmd_flush_queue_region_set,
10022 (void *)&cmd_flush_queue_region_port,
10023 (void *)&cmd_flush_queue_region_port_index,
10024 (void *)&cmd_flush_queue_region_cmd,
10025 (void *)&cmd_flush_queue_region_flush,
10026 (void *)&cmd_flush_queue_region_what,
10031 /* *** get all queue region related configuration info *** */
10032 struct cmd_show_queue_region_info {
10033 cmdline_fixed_string_t show;
10034 cmdline_fixed_string_t port;
10036 cmdline_fixed_string_t cmd;
10040 cmd_show_queue_region_info_parsed(void *parsed_result,
10041 __rte_unused struct cmdline *cl,
10042 __rte_unused void *data)
10044 struct cmd_show_queue_region_info *res = parsed_result;
10045 int ret = -ENOTSUP;
10046 #ifdef RTE_NET_I40E
10047 struct rte_pmd_i40e_queue_regions rte_pmd_regions;
10048 enum rte_pmd_i40e_queue_region_op op_type;
10051 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10054 #ifdef RTE_NET_I40E
10055 memset(&rte_pmd_regions, 0, sizeof(rte_pmd_regions));
10057 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_INFO_GET;
10059 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
10060 op_type, &rte_pmd_regions);
10062 port_queue_region_info_display(res->port_id, &rte_pmd_regions);
10069 printf("function not implemented or supported\n");
10072 printf("queue region config info show error: (%s)\n",
10077 cmdline_parse_token_string_t cmd_show_queue_region_info_get =
10078 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
10080 cmdline_parse_token_string_t cmd_show_queue_region_info_port =
10081 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
10083 cmdline_parse_token_num_t cmd_show_queue_region_info_port_index =
10084 TOKEN_NUM_INITIALIZER(struct cmd_show_queue_region_info,
10085 port_id, RTE_UINT16);
10086 cmdline_parse_token_string_t cmd_show_queue_region_info_cmd =
10087 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
10088 cmd, "queue-region");
10090 cmdline_parse_inst_t cmd_show_queue_region_info_all = {
10091 .f = cmd_show_queue_region_info_parsed,
10093 .help_str = "show port <port_id> queue-region"
10094 ": show all queue region related configuration info",
10096 (void *)&cmd_show_queue_region_info_get,
10097 (void *)&cmd_show_queue_region_info_port,
10098 (void *)&cmd_show_queue_region_info_port_index,
10099 (void *)&cmd_show_queue_region_info_cmd,
10104 /* *** Filters Control *** */
10106 #define IPV4_ADDR_TO_UINT(ip_addr, ip) \
10108 if ((ip_addr).family == AF_INET) \
10109 (ip) = (ip_addr).addr.ipv4.s_addr; \
10111 printf("invalid parameter.\n"); \
10116 #define IPV6_ADDR_TO_ARRAY(ip_addr, ip) \
10118 if ((ip_addr).family == AF_INET6) \
10119 rte_memcpy(&(ip), \
10120 &((ip_addr).addr.ipv6), \
10121 sizeof(struct in6_addr)); \
10123 printf("invalid parameter.\n"); \
10128 #ifdef RTE_NET_I40E
10131 str2flowtype(char *string)
10134 static const struct {
10137 } flowtype_str[] = {
10138 {"raw", RTE_ETH_FLOW_RAW},
10139 {"ipv4", RTE_ETH_FLOW_IPV4},
10140 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
10141 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
10142 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
10143 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
10144 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
10145 {"ipv6", RTE_ETH_FLOW_IPV6},
10146 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
10147 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
10148 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
10149 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
10150 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
10151 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
10154 for (i = 0; i < RTE_DIM(flowtype_str); i++) {
10155 if (!strcmp(flowtype_str[i].str, string))
10156 return flowtype_str[i].type;
10159 if (isdigit(string[0]) && atoi(string) > 0 && atoi(string) < 64)
10160 return (uint16_t)atoi(string);
10162 return RTE_ETH_FLOW_UNKNOWN;
10165 /* *** deal with flow director filter *** */
10166 struct cmd_flow_director_result {
10167 cmdline_fixed_string_t flow_director_filter;
10169 cmdline_fixed_string_t mode;
10170 cmdline_fixed_string_t mode_value;
10171 cmdline_fixed_string_t ops;
10172 cmdline_fixed_string_t flow;
10173 cmdline_fixed_string_t flow_type;
10174 cmdline_fixed_string_t drop;
10175 cmdline_fixed_string_t queue;
10177 cmdline_fixed_string_t fd_id;
10178 uint32_t fd_id_value;
10179 cmdline_fixed_string_t packet;
10184 cmd_flow_director_filter_parsed(void *parsed_result,
10185 __rte_unused struct cmdline *cl,
10186 __rte_unused void *data)
10188 struct cmd_flow_director_result *res = parsed_result;
10190 struct rte_pmd_i40e_flow_type_mapping
10191 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX];
10192 struct rte_pmd_i40e_pkt_template_conf conf;
10193 uint16_t flow_type = str2flowtype(res->flow_type);
10194 uint16_t i, port = res->port_id;
10197 memset(&conf, 0, sizeof(conf));
10199 if (flow_type == RTE_ETH_FLOW_UNKNOWN) {
10200 printf("Invalid flow type specified.\n");
10203 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id,
10207 if (mapping[flow_type].pctype == 0ULL) {
10208 printf("Invalid flow type specified.\n");
10211 for (i = 0; i < RTE_PMD_I40E_PCTYPE_MAX; i++) {
10212 if (mapping[flow_type].pctype & (1ULL << i)) {
10213 conf.input.pctype = i;
10218 conf.input.packet = open_file(res->filepath,
10219 &conf.input.length);
10220 if (!conf.input.packet)
10222 if (!strcmp(res->drop, "drop"))
10223 conf.action.behavior =
10224 RTE_PMD_I40E_PKT_TEMPLATE_REJECT;
10226 conf.action.behavior =
10227 RTE_PMD_I40E_PKT_TEMPLATE_ACCEPT;
10228 conf.action.report_status =
10229 RTE_PMD_I40E_PKT_TEMPLATE_REPORT_ID;
10230 conf.action.rx_queue = res->queue_id;
10231 conf.soft_id = res->fd_id_value;
10232 add = strcmp(res->ops, "del") ? 1 : 0;
10233 ret = rte_pmd_i40e_flow_add_del_packet_template(port,
10237 printf("flow director config error: (%s)\n",
10239 close_file(conf.input.packet);
10242 cmdline_parse_token_string_t cmd_flow_director_filter =
10243 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10244 flow_director_filter, "flow_director_filter");
10245 cmdline_parse_token_num_t cmd_flow_director_port_id =
10246 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10247 port_id, RTE_UINT16);
10248 cmdline_parse_token_string_t cmd_flow_director_ops =
10249 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10250 ops, "add#del#update");
10251 cmdline_parse_token_string_t cmd_flow_director_flow =
10252 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10254 cmdline_parse_token_string_t cmd_flow_director_flow_type =
10255 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10257 cmdline_parse_token_string_t cmd_flow_director_drop =
10258 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10260 cmdline_parse_token_string_t cmd_flow_director_queue =
10261 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10263 cmdline_parse_token_num_t cmd_flow_director_queue_id =
10264 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10265 queue_id, RTE_UINT16);
10266 cmdline_parse_token_string_t cmd_flow_director_fd_id =
10267 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10269 cmdline_parse_token_num_t cmd_flow_director_fd_id_value =
10270 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10271 fd_id_value, RTE_UINT32);
10273 cmdline_parse_token_string_t cmd_flow_director_mode =
10274 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10276 cmdline_parse_token_string_t cmd_flow_director_mode_raw =
10277 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10278 mode_value, "raw");
10279 cmdline_parse_token_string_t cmd_flow_director_packet =
10280 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10282 cmdline_parse_token_string_t cmd_flow_director_filepath =
10283 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10286 cmdline_parse_inst_t cmd_add_del_raw_flow_director = {
10287 .f = cmd_flow_director_filter_parsed,
10289 .help_str = "flow_director_filter ... : Add or delete a raw flow "
10290 "director entry on NIC",
10292 (void *)&cmd_flow_director_filter,
10293 (void *)&cmd_flow_director_port_id,
10294 (void *)&cmd_flow_director_mode,
10295 (void *)&cmd_flow_director_mode_raw,
10296 (void *)&cmd_flow_director_ops,
10297 (void *)&cmd_flow_director_flow,
10298 (void *)&cmd_flow_director_flow_type,
10299 (void *)&cmd_flow_director_drop,
10300 (void *)&cmd_flow_director_queue,
10301 (void *)&cmd_flow_director_queue_id,
10302 (void *)&cmd_flow_director_fd_id,
10303 (void *)&cmd_flow_director_fd_id_value,
10304 (void *)&cmd_flow_director_packet,
10305 (void *)&cmd_flow_director_filepath,
10310 #endif /* RTE_NET_I40E */
10312 /* *** deal with flow director mask *** */
10313 struct cmd_flow_director_mask_result {
10314 cmdline_fixed_string_t flow_director_mask;
10316 cmdline_fixed_string_t mode;
10317 cmdline_fixed_string_t mode_value;
10318 cmdline_fixed_string_t vlan;
10319 uint16_t vlan_mask;
10320 cmdline_fixed_string_t src_mask;
10321 cmdline_ipaddr_t ipv4_src;
10322 cmdline_ipaddr_t ipv6_src;
10324 cmdline_fixed_string_t dst_mask;
10325 cmdline_ipaddr_t ipv4_dst;
10326 cmdline_ipaddr_t ipv6_dst;
10328 cmdline_fixed_string_t mac;
10329 uint8_t mac_addr_byte_mask;
10330 cmdline_fixed_string_t tunnel_id;
10331 uint32_t tunnel_id_mask;
10332 cmdline_fixed_string_t tunnel_type;
10333 uint8_t tunnel_type_mask;
10337 cmd_flow_director_mask_parsed(void *parsed_result,
10338 __rte_unused struct cmdline *cl,
10339 __rte_unused void *data)
10341 struct cmd_flow_director_mask_result *res = parsed_result;
10342 struct rte_eth_fdir_masks *mask;
10343 struct rte_port *port;
10345 port = &ports[res->port_id];
10346 /** Check if the port is not started **/
10347 if (port->port_status != RTE_PORT_STOPPED) {
10348 printf("Please stop port %d first\n", res->port_id);
10352 mask = &port->dev_conf.fdir_conf.mask;
10354 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
10355 if (strcmp(res->mode_value, "MAC-VLAN")) {
10356 printf("Please set mode to MAC-VLAN.\n");
10360 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
10361 } else if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL) {
10362 if (strcmp(res->mode_value, "Tunnel")) {
10363 printf("Please set mode to Tunnel.\n");
10367 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
10368 mask->mac_addr_byte_mask = res->mac_addr_byte_mask;
10369 mask->tunnel_id_mask = rte_cpu_to_be_32(res->tunnel_id_mask);
10370 mask->tunnel_type_mask = res->tunnel_type_mask;
10372 if (strcmp(res->mode_value, "IP")) {
10373 printf("Please set mode to IP.\n");
10377 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
10378 IPV4_ADDR_TO_UINT(res->ipv4_src, mask->ipv4_mask.src_ip);
10379 IPV4_ADDR_TO_UINT(res->ipv4_dst, mask->ipv4_mask.dst_ip);
10380 IPV6_ADDR_TO_ARRAY(res->ipv6_src, mask->ipv6_mask.src_ip);
10381 IPV6_ADDR_TO_ARRAY(res->ipv6_dst, mask->ipv6_mask.dst_ip);
10382 mask->src_port_mask = rte_cpu_to_be_16(res->port_src);
10383 mask->dst_port_mask = rte_cpu_to_be_16(res->port_dst);
10386 cmd_reconfig_device_queue(res->port_id, 1, 1);
10389 cmdline_parse_token_string_t cmd_flow_director_mask =
10390 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10391 flow_director_mask, "flow_director_mask");
10392 cmdline_parse_token_num_t cmd_flow_director_mask_port_id =
10393 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10394 port_id, RTE_UINT16);
10395 cmdline_parse_token_string_t cmd_flow_director_mask_vlan =
10396 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10398 cmdline_parse_token_num_t cmd_flow_director_mask_vlan_value =
10399 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10400 vlan_mask, RTE_UINT16);
10401 cmdline_parse_token_string_t cmd_flow_director_mask_src =
10402 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10403 src_mask, "src_mask");
10404 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_src =
10405 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10407 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_src =
10408 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10410 cmdline_parse_token_num_t cmd_flow_director_mask_port_src =
10411 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10412 port_src, RTE_UINT16);
10413 cmdline_parse_token_string_t cmd_flow_director_mask_dst =
10414 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10415 dst_mask, "dst_mask");
10416 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_dst =
10417 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10419 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_dst =
10420 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10422 cmdline_parse_token_num_t cmd_flow_director_mask_port_dst =
10423 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10424 port_dst, RTE_UINT16);
10426 cmdline_parse_token_string_t cmd_flow_director_mask_mode =
10427 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10429 cmdline_parse_token_string_t cmd_flow_director_mask_mode_ip =
10430 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10432 cmdline_parse_token_string_t cmd_flow_director_mask_mode_mac_vlan =
10433 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10434 mode_value, "MAC-VLAN");
10435 cmdline_parse_token_string_t cmd_flow_director_mask_mode_tunnel =
10436 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10437 mode_value, "Tunnel");
10438 cmdline_parse_token_string_t cmd_flow_director_mask_mac =
10439 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10441 cmdline_parse_token_num_t cmd_flow_director_mask_mac_value =
10442 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10443 mac_addr_byte_mask, RTE_UINT8);
10444 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_type =
10445 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10446 tunnel_type, "tunnel-type");
10447 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_type_value =
10448 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10449 tunnel_type_mask, RTE_UINT8);
10450 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_id =
10451 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10452 tunnel_id, "tunnel-id");
10453 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_id_value =
10454 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10455 tunnel_id_mask, RTE_UINT32);
10457 cmdline_parse_inst_t cmd_set_flow_director_ip_mask = {
10458 .f = cmd_flow_director_mask_parsed,
10460 .help_str = "flow_director_mask ... : "
10461 "Set IP mode flow director's mask on NIC",
10463 (void *)&cmd_flow_director_mask,
10464 (void *)&cmd_flow_director_mask_port_id,
10465 (void *)&cmd_flow_director_mask_mode,
10466 (void *)&cmd_flow_director_mask_mode_ip,
10467 (void *)&cmd_flow_director_mask_vlan,
10468 (void *)&cmd_flow_director_mask_vlan_value,
10469 (void *)&cmd_flow_director_mask_src,
10470 (void *)&cmd_flow_director_mask_ipv4_src,
10471 (void *)&cmd_flow_director_mask_ipv6_src,
10472 (void *)&cmd_flow_director_mask_port_src,
10473 (void *)&cmd_flow_director_mask_dst,
10474 (void *)&cmd_flow_director_mask_ipv4_dst,
10475 (void *)&cmd_flow_director_mask_ipv6_dst,
10476 (void *)&cmd_flow_director_mask_port_dst,
10481 cmdline_parse_inst_t cmd_set_flow_director_mac_vlan_mask = {
10482 .f = cmd_flow_director_mask_parsed,
10484 .help_str = "flow_director_mask ... : Set MAC VLAN mode "
10485 "flow director's mask on NIC",
10487 (void *)&cmd_flow_director_mask,
10488 (void *)&cmd_flow_director_mask_port_id,
10489 (void *)&cmd_flow_director_mask_mode,
10490 (void *)&cmd_flow_director_mask_mode_mac_vlan,
10491 (void *)&cmd_flow_director_mask_vlan,
10492 (void *)&cmd_flow_director_mask_vlan_value,
10497 cmdline_parse_inst_t cmd_set_flow_director_tunnel_mask = {
10498 .f = cmd_flow_director_mask_parsed,
10500 .help_str = "flow_director_mask ... : Set tunnel mode "
10501 "flow director's mask on NIC",
10503 (void *)&cmd_flow_director_mask,
10504 (void *)&cmd_flow_director_mask_port_id,
10505 (void *)&cmd_flow_director_mask_mode,
10506 (void *)&cmd_flow_director_mask_mode_tunnel,
10507 (void *)&cmd_flow_director_mask_vlan,
10508 (void *)&cmd_flow_director_mask_vlan_value,
10509 (void *)&cmd_flow_director_mask_mac,
10510 (void *)&cmd_flow_director_mask_mac_value,
10511 (void *)&cmd_flow_director_mask_tunnel_type,
10512 (void *)&cmd_flow_director_mask_tunnel_type_value,
10513 (void *)&cmd_flow_director_mask_tunnel_id,
10514 (void *)&cmd_flow_director_mask_tunnel_id_value,
10519 /* *** deal with flow director flexible payload configuration *** */
10520 struct cmd_flow_director_flexpayload_result {
10521 cmdline_fixed_string_t flow_director_flexpayload;
10523 cmdline_fixed_string_t payload_layer;
10524 cmdline_fixed_string_t payload_cfg;
10528 parse_offsets(const char *q_arg, uint16_t *offsets, uint16_t max_num)
10531 const char *p, *p0 = q_arg;
10533 unsigned long int_fld;
10534 char *str_fld[max_num];
10539 p = strchr(p0, '(');
10543 p0 = strchr(p, ')');
10548 if (size >= sizeof(s))
10551 snprintf(s, sizeof(s), "%.*s", size, p);
10552 ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ',');
10553 if (ret < 0 || ret > max_num)
10555 for (i = 0; i < ret; i++) {
10557 int_fld = strtoul(str_fld[i], &end, 0);
10558 if (errno != 0 || *end != '\0' || int_fld > UINT16_MAX)
10560 offsets[i] = (uint16_t)int_fld;
10566 cmd_flow_director_flxpld_parsed(void *parsed_result,
10567 __rte_unused struct cmdline *cl,
10568 __rte_unused void *data)
10570 struct cmd_flow_director_flexpayload_result *res = parsed_result;
10571 struct rte_eth_flex_payload_cfg flex_cfg;
10572 struct rte_port *port;
10575 port = &ports[res->port_id];
10576 /** Check if the port is not started **/
10577 if (port->port_status != RTE_PORT_STOPPED) {
10578 printf("Please stop port %d first\n", res->port_id);
10582 memset(&flex_cfg, 0, sizeof(struct rte_eth_flex_payload_cfg));
10584 if (!strcmp(res->payload_layer, "raw"))
10585 flex_cfg.type = RTE_ETH_RAW_PAYLOAD;
10586 else if (!strcmp(res->payload_layer, "l2"))
10587 flex_cfg.type = RTE_ETH_L2_PAYLOAD;
10588 else if (!strcmp(res->payload_layer, "l3"))
10589 flex_cfg.type = RTE_ETH_L3_PAYLOAD;
10590 else if (!strcmp(res->payload_layer, "l4"))
10591 flex_cfg.type = RTE_ETH_L4_PAYLOAD;
10593 ret = parse_offsets(res->payload_cfg, flex_cfg.src_offset,
10594 RTE_ETH_FDIR_MAX_FLEXLEN);
10596 printf("error: Cannot parse flex payload input.\n");
10600 fdir_set_flex_payload(res->port_id, &flex_cfg);
10601 cmd_reconfig_device_queue(res->port_id, 1, 1);
10604 cmdline_parse_token_string_t cmd_flow_director_flexpayload =
10605 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10606 flow_director_flexpayload,
10607 "flow_director_flex_payload");
10608 cmdline_parse_token_num_t cmd_flow_director_flexpayload_port_id =
10609 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10610 port_id, RTE_UINT16);
10611 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_layer =
10612 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10613 payload_layer, "raw#l2#l3#l4");
10614 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_cfg =
10615 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10616 payload_cfg, NULL);
10618 cmdline_parse_inst_t cmd_set_flow_director_flex_payload = {
10619 .f = cmd_flow_director_flxpld_parsed,
10621 .help_str = "flow_director_flexpayload ... : "
10622 "Set flow director's flex payload on NIC",
10624 (void *)&cmd_flow_director_flexpayload,
10625 (void *)&cmd_flow_director_flexpayload_port_id,
10626 (void *)&cmd_flow_director_flexpayload_payload_layer,
10627 (void *)&cmd_flow_director_flexpayload_payload_cfg,
10632 /* Generic flow interface command. */
10633 extern cmdline_parse_inst_t cmd_flow;
10635 /* *** ADD/REMOVE A MULTICAST MAC ADDRESS TO/FROM A PORT *** */
10636 struct cmd_mcast_addr_result {
10637 cmdline_fixed_string_t mcast_addr_cmd;
10638 cmdline_fixed_string_t what;
10640 struct rte_ether_addr mc_addr;
10643 static void cmd_mcast_addr_parsed(void *parsed_result,
10644 __rte_unused struct cmdline *cl,
10645 __rte_unused void *data)
10647 struct cmd_mcast_addr_result *res = parsed_result;
10649 if (!rte_is_multicast_ether_addr(&res->mc_addr)) {
10650 printf("Invalid multicast addr %02X:%02X:%02X:%02X:%02X:%02X\n",
10651 res->mc_addr.addr_bytes[0], res->mc_addr.addr_bytes[1],
10652 res->mc_addr.addr_bytes[2], res->mc_addr.addr_bytes[3],
10653 res->mc_addr.addr_bytes[4], res->mc_addr.addr_bytes[5]);
10656 if (strcmp(res->what, "add") == 0)
10657 mcast_addr_add(res->port_num, &res->mc_addr);
10659 mcast_addr_remove(res->port_num, &res->mc_addr);
10662 cmdline_parse_token_string_t cmd_mcast_addr_cmd =
10663 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result,
10664 mcast_addr_cmd, "mcast_addr");
10665 cmdline_parse_token_string_t cmd_mcast_addr_what =
10666 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, what,
10668 cmdline_parse_token_num_t cmd_mcast_addr_portnum =
10669 TOKEN_NUM_INITIALIZER(struct cmd_mcast_addr_result, port_num,
10671 cmdline_parse_token_etheraddr_t cmd_mcast_addr_addr =
10672 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
10674 cmdline_parse_inst_t cmd_mcast_addr = {
10675 .f = cmd_mcast_addr_parsed,
10677 .help_str = "mcast_addr add|remove <port_id> <mcast_addr>: "
10678 "Add/Remove multicast MAC address on port_id",
10680 (void *)&cmd_mcast_addr_cmd,
10681 (void *)&cmd_mcast_addr_what,
10682 (void *)&cmd_mcast_addr_portnum,
10683 (void *)&cmd_mcast_addr_addr,
10688 /* vf vlan anti spoof configuration */
10690 /* Common result structure for vf vlan anti spoof */
10691 struct cmd_vf_vlan_anti_spoof_result {
10692 cmdline_fixed_string_t set;
10693 cmdline_fixed_string_t vf;
10694 cmdline_fixed_string_t vlan;
10695 cmdline_fixed_string_t antispoof;
10698 cmdline_fixed_string_t on_off;
10701 /* Common CLI fields for vf vlan anti spoof enable disable */
10702 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_set =
10703 TOKEN_STRING_INITIALIZER
10704 (struct cmd_vf_vlan_anti_spoof_result,
10706 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vf =
10707 TOKEN_STRING_INITIALIZER
10708 (struct cmd_vf_vlan_anti_spoof_result,
10710 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vlan =
10711 TOKEN_STRING_INITIALIZER
10712 (struct cmd_vf_vlan_anti_spoof_result,
10714 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_antispoof =
10715 TOKEN_STRING_INITIALIZER
10716 (struct cmd_vf_vlan_anti_spoof_result,
10717 antispoof, "antispoof");
10718 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_port_id =
10719 TOKEN_NUM_INITIALIZER
10720 (struct cmd_vf_vlan_anti_spoof_result,
10721 port_id, RTE_UINT16);
10722 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_vf_id =
10723 TOKEN_NUM_INITIALIZER
10724 (struct cmd_vf_vlan_anti_spoof_result,
10725 vf_id, RTE_UINT32);
10726 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_on_off =
10727 TOKEN_STRING_INITIALIZER
10728 (struct cmd_vf_vlan_anti_spoof_result,
10732 cmd_set_vf_vlan_anti_spoof_parsed(
10733 void *parsed_result,
10734 __rte_unused struct cmdline *cl,
10735 __rte_unused void *data)
10737 struct cmd_vf_vlan_anti_spoof_result *res = parsed_result;
10738 int ret = -ENOTSUP;
10740 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
10742 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10745 #ifdef RTE_NET_IXGBE
10746 if (ret == -ENOTSUP)
10747 ret = rte_pmd_ixgbe_set_vf_vlan_anti_spoof(res->port_id,
10748 res->vf_id, is_on);
10750 #ifdef RTE_NET_I40E
10751 if (ret == -ENOTSUP)
10752 ret = rte_pmd_i40e_set_vf_vlan_anti_spoof(res->port_id,
10753 res->vf_id, is_on);
10755 #ifdef RTE_NET_BNXT
10756 if (ret == -ENOTSUP)
10757 ret = rte_pmd_bnxt_set_vf_vlan_anti_spoof(res->port_id,
10758 res->vf_id, is_on);
10765 printf("invalid vf_id %d\n", res->vf_id);
10768 printf("invalid port_id %d\n", res->port_id);
10771 printf("function not implemented\n");
10774 printf("programming error: (%s)\n", strerror(-ret));
10778 cmdline_parse_inst_t cmd_set_vf_vlan_anti_spoof = {
10779 .f = cmd_set_vf_vlan_anti_spoof_parsed,
10781 .help_str = "set vf vlan antispoof <port_id> <vf_id> on|off",
10783 (void *)&cmd_vf_vlan_anti_spoof_set,
10784 (void *)&cmd_vf_vlan_anti_spoof_vf,
10785 (void *)&cmd_vf_vlan_anti_spoof_vlan,
10786 (void *)&cmd_vf_vlan_anti_spoof_antispoof,
10787 (void *)&cmd_vf_vlan_anti_spoof_port_id,
10788 (void *)&cmd_vf_vlan_anti_spoof_vf_id,
10789 (void *)&cmd_vf_vlan_anti_spoof_on_off,
10794 /* vf mac anti spoof configuration */
10796 /* Common result structure for vf mac anti spoof */
10797 struct cmd_vf_mac_anti_spoof_result {
10798 cmdline_fixed_string_t set;
10799 cmdline_fixed_string_t vf;
10800 cmdline_fixed_string_t mac;
10801 cmdline_fixed_string_t antispoof;
10804 cmdline_fixed_string_t on_off;
10807 /* Common CLI fields for vf mac anti spoof enable disable */
10808 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_set =
10809 TOKEN_STRING_INITIALIZER
10810 (struct cmd_vf_mac_anti_spoof_result,
10812 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_vf =
10813 TOKEN_STRING_INITIALIZER
10814 (struct cmd_vf_mac_anti_spoof_result,
10816 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_mac =
10817 TOKEN_STRING_INITIALIZER
10818 (struct cmd_vf_mac_anti_spoof_result,
10820 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_antispoof =
10821 TOKEN_STRING_INITIALIZER
10822 (struct cmd_vf_mac_anti_spoof_result,
10823 antispoof, "antispoof");
10824 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_port_id =
10825 TOKEN_NUM_INITIALIZER
10826 (struct cmd_vf_mac_anti_spoof_result,
10827 port_id, RTE_UINT16);
10828 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_vf_id =
10829 TOKEN_NUM_INITIALIZER
10830 (struct cmd_vf_mac_anti_spoof_result,
10831 vf_id, RTE_UINT32);
10832 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_on_off =
10833 TOKEN_STRING_INITIALIZER
10834 (struct cmd_vf_mac_anti_spoof_result,
10838 cmd_set_vf_mac_anti_spoof_parsed(
10839 void *parsed_result,
10840 __rte_unused struct cmdline *cl,
10841 __rte_unused void *data)
10843 struct cmd_vf_mac_anti_spoof_result *res = parsed_result;
10844 int ret = -ENOTSUP;
10846 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
10848 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10851 #ifdef RTE_NET_IXGBE
10852 if (ret == -ENOTSUP)
10853 ret = rte_pmd_ixgbe_set_vf_mac_anti_spoof(res->port_id,
10854 res->vf_id, is_on);
10856 #ifdef RTE_NET_I40E
10857 if (ret == -ENOTSUP)
10858 ret = rte_pmd_i40e_set_vf_mac_anti_spoof(res->port_id,
10859 res->vf_id, is_on);
10861 #ifdef RTE_NET_BNXT
10862 if (ret == -ENOTSUP)
10863 ret = rte_pmd_bnxt_set_vf_mac_anti_spoof(res->port_id,
10864 res->vf_id, is_on);
10871 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
10874 printf("invalid port_id %d\n", res->port_id);
10877 printf("function not implemented\n");
10880 printf("programming error: (%s)\n", strerror(-ret));
10884 cmdline_parse_inst_t cmd_set_vf_mac_anti_spoof = {
10885 .f = cmd_set_vf_mac_anti_spoof_parsed,
10887 .help_str = "set vf mac antispoof <port_id> <vf_id> on|off",
10889 (void *)&cmd_vf_mac_anti_spoof_set,
10890 (void *)&cmd_vf_mac_anti_spoof_vf,
10891 (void *)&cmd_vf_mac_anti_spoof_mac,
10892 (void *)&cmd_vf_mac_anti_spoof_antispoof,
10893 (void *)&cmd_vf_mac_anti_spoof_port_id,
10894 (void *)&cmd_vf_mac_anti_spoof_vf_id,
10895 (void *)&cmd_vf_mac_anti_spoof_on_off,
10900 /* vf vlan strip queue configuration */
10902 /* Common result structure for vf mac anti spoof */
10903 struct cmd_vf_vlan_stripq_result {
10904 cmdline_fixed_string_t set;
10905 cmdline_fixed_string_t vf;
10906 cmdline_fixed_string_t vlan;
10907 cmdline_fixed_string_t stripq;
10910 cmdline_fixed_string_t on_off;
10913 /* Common CLI fields for vf vlan strip enable disable */
10914 cmdline_parse_token_string_t cmd_vf_vlan_stripq_set =
10915 TOKEN_STRING_INITIALIZER
10916 (struct cmd_vf_vlan_stripq_result,
10918 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vf =
10919 TOKEN_STRING_INITIALIZER
10920 (struct cmd_vf_vlan_stripq_result,
10922 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vlan =
10923 TOKEN_STRING_INITIALIZER
10924 (struct cmd_vf_vlan_stripq_result,
10926 cmdline_parse_token_string_t cmd_vf_vlan_stripq_stripq =
10927 TOKEN_STRING_INITIALIZER
10928 (struct cmd_vf_vlan_stripq_result,
10930 cmdline_parse_token_num_t cmd_vf_vlan_stripq_port_id =
10931 TOKEN_NUM_INITIALIZER
10932 (struct cmd_vf_vlan_stripq_result,
10933 port_id, RTE_UINT16);
10934 cmdline_parse_token_num_t cmd_vf_vlan_stripq_vf_id =
10935 TOKEN_NUM_INITIALIZER
10936 (struct cmd_vf_vlan_stripq_result,
10937 vf_id, RTE_UINT16);
10938 cmdline_parse_token_string_t cmd_vf_vlan_stripq_on_off =
10939 TOKEN_STRING_INITIALIZER
10940 (struct cmd_vf_vlan_stripq_result,
10944 cmd_set_vf_vlan_stripq_parsed(
10945 void *parsed_result,
10946 __rte_unused struct cmdline *cl,
10947 __rte_unused void *data)
10949 struct cmd_vf_vlan_stripq_result *res = parsed_result;
10950 int ret = -ENOTSUP;
10952 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
10954 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10957 #ifdef RTE_NET_IXGBE
10958 if (ret == -ENOTSUP)
10959 ret = rte_pmd_ixgbe_set_vf_vlan_stripq(res->port_id,
10960 res->vf_id, is_on);
10962 #ifdef RTE_NET_I40E
10963 if (ret == -ENOTSUP)
10964 ret = rte_pmd_i40e_set_vf_vlan_stripq(res->port_id,
10965 res->vf_id, is_on);
10967 #ifdef RTE_NET_BNXT
10968 if (ret == -ENOTSUP)
10969 ret = rte_pmd_bnxt_set_vf_vlan_stripq(res->port_id,
10970 res->vf_id, is_on);
10977 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
10980 printf("invalid port_id %d\n", res->port_id);
10983 printf("function not implemented\n");
10986 printf("programming error: (%s)\n", strerror(-ret));
10990 cmdline_parse_inst_t cmd_set_vf_vlan_stripq = {
10991 .f = cmd_set_vf_vlan_stripq_parsed,
10993 .help_str = "set vf vlan stripq <port_id> <vf_id> on|off",
10995 (void *)&cmd_vf_vlan_stripq_set,
10996 (void *)&cmd_vf_vlan_stripq_vf,
10997 (void *)&cmd_vf_vlan_stripq_vlan,
10998 (void *)&cmd_vf_vlan_stripq_stripq,
10999 (void *)&cmd_vf_vlan_stripq_port_id,
11000 (void *)&cmd_vf_vlan_stripq_vf_id,
11001 (void *)&cmd_vf_vlan_stripq_on_off,
11006 /* vf vlan insert configuration */
11008 /* Common result structure for vf vlan insert */
11009 struct cmd_vf_vlan_insert_result {
11010 cmdline_fixed_string_t set;
11011 cmdline_fixed_string_t vf;
11012 cmdline_fixed_string_t vlan;
11013 cmdline_fixed_string_t insert;
11019 /* Common CLI fields for vf vlan insert enable disable */
11020 cmdline_parse_token_string_t cmd_vf_vlan_insert_set =
11021 TOKEN_STRING_INITIALIZER
11022 (struct cmd_vf_vlan_insert_result,
11024 cmdline_parse_token_string_t cmd_vf_vlan_insert_vf =
11025 TOKEN_STRING_INITIALIZER
11026 (struct cmd_vf_vlan_insert_result,
11028 cmdline_parse_token_string_t cmd_vf_vlan_insert_vlan =
11029 TOKEN_STRING_INITIALIZER
11030 (struct cmd_vf_vlan_insert_result,
11032 cmdline_parse_token_string_t cmd_vf_vlan_insert_insert =
11033 TOKEN_STRING_INITIALIZER
11034 (struct cmd_vf_vlan_insert_result,
11036 cmdline_parse_token_num_t cmd_vf_vlan_insert_port_id =
11037 TOKEN_NUM_INITIALIZER
11038 (struct cmd_vf_vlan_insert_result,
11039 port_id, RTE_UINT16);
11040 cmdline_parse_token_num_t cmd_vf_vlan_insert_vf_id =
11041 TOKEN_NUM_INITIALIZER
11042 (struct cmd_vf_vlan_insert_result,
11043 vf_id, RTE_UINT16);
11044 cmdline_parse_token_num_t cmd_vf_vlan_insert_vlan_id =
11045 TOKEN_NUM_INITIALIZER
11046 (struct cmd_vf_vlan_insert_result,
11047 vlan_id, RTE_UINT16);
11050 cmd_set_vf_vlan_insert_parsed(
11051 void *parsed_result,
11052 __rte_unused struct cmdline *cl,
11053 __rte_unused void *data)
11055 struct cmd_vf_vlan_insert_result *res = parsed_result;
11056 int ret = -ENOTSUP;
11058 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11061 #ifdef RTE_NET_IXGBE
11062 if (ret == -ENOTSUP)
11063 ret = rte_pmd_ixgbe_set_vf_vlan_insert(res->port_id, res->vf_id,
11066 #ifdef RTE_NET_I40E
11067 if (ret == -ENOTSUP)
11068 ret = rte_pmd_i40e_set_vf_vlan_insert(res->port_id, res->vf_id,
11071 #ifdef RTE_NET_BNXT
11072 if (ret == -ENOTSUP)
11073 ret = rte_pmd_bnxt_set_vf_vlan_insert(res->port_id, res->vf_id,
11081 printf("invalid vf_id %d or vlan_id %d\n", res->vf_id, res->vlan_id);
11084 printf("invalid port_id %d\n", res->port_id);
11087 printf("function not implemented\n");
11090 printf("programming error: (%s)\n", strerror(-ret));
11094 cmdline_parse_inst_t cmd_set_vf_vlan_insert = {
11095 .f = cmd_set_vf_vlan_insert_parsed,
11097 .help_str = "set vf vlan insert <port_id> <vf_id> <vlan_id>",
11099 (void *)&cmd_vf_vlan_insert_set,
11100 (void *)&cmd_vf_vlan_insert_vf,
11101 (void *)&cmd_vf_vlan_insert_vlan,
11102 (void *)&cmd_vf_vlan_insert_insert,
11103 (void *)&cmd_vf_vlan_insert_port_id,
11104 (void *)&cmd_vf_vlan_insert_vf_id,
11105 (void *)&cmd_vf_vlan_insert_vlan_id,
11110 /* tx loopback configuration */
11112 /* Common result structure for tx loopback */
11113 struct cmd_tx_loopback_result {
11114 cmdline_fixed_string_t set;
11115 cmdline_fixed_string_t tx;
11116 cmdline_fixed_string_t loopback;
11118 cmdline_fixed_string_t on_off;
11121 /* Common CLI fields for tx loopback enable disable */
11122 cmdline_parse_token_string_t cmd_tx_loopback_set =
11123 TOKEN_STRING_INITIALIZER
11124 (struct cmd_tx_loopback_result,
11126 cmdline_parse_token_string_t cmd_tx_loopback_tx =
11127 TOKEN_STRING_INITIALIZER
11128 (struct cmd_tx_loopback_result,
11130 cmdline_parse_token_string_t cmd_tx_loopback_loopback =
11131 TOKEN_STRING_INITIALIZER
11132 (struct cmd_tx_loopback_result,
11133 loopback, "loopback");
11134 cmdline_parse_token_num_t cmd_tx_loopback_port_id =
11135 TOKEN_NUM_INITIALIZER
11136 (struct cmd_tx_loopback_result,
11137 port_id, RTE_UINT16);
11138 cmdline_parse_token_string_t cmd_tx_loopback_on_off =
11139 TOKEN_STRING_INITIALIZER
11140 (struct cmd_tx_loopback_result,
11144 cmd_set_tx_loopback_parsed(
11145 void *parsed_result,
11146 __rte_unused struct cmdline *cl,
11147 __rte_unused void *data)
11149 struct cmd_tx_loopback_result *res = parsed_result;
11150 int ret = -ENOTSUP;
11152 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11154 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11157 #ifdef RTE_NET_IXGBE
11158 if (ret == -ENOTSUP)
11159 ret = rte_pmd_ixgbe_set_tx_loopback(res->port_id, is_on);
11161 #ifdef RTE_NET_I40E
11162 if (ret == -ENOTSUP)
11163 ret = rte_pmd_i40e_set_tx_loopback(res->port_id, is_on);
11165 #ifdef RTE_NET_BNXT
11166 if (ret == -ENOTSUP)
11167 ret = rte_pmd_bnxt_set_tx_loopback(res->port_id, is_on);
11169 #if defined RTE_BUS_DPAA && defined RTE_NET_DPAA
11170 if (ret == -ENOTSUP)
11171 ret = rte_pmd_dpaa_set_tx_loopback(res->port_id, is_on);
11178 printf("invalid is_on %d\n", is_on);
11181 printf("invalid port_id %d\n", res->port_id);
11184 printf("function not implemented\n");
11187 printf("programming error: (%s)\n", strerror(-ret));
11191 cmdline_parse_inst_t cmd_set_tx_loopback = {
11192 .f = cmd_set_tx_loopback_parsed,
11194 .help_str = "set tx loopback <port_id> on|off",
11196 (void *)&cmd_tx_loopback_set,
11197 (void *)&cmd_tx_loopback_tx,
11198 (void *)&cmd_tx_loopback_loopback,
11199 (void *)&cmd_tx_loopback_port_id,
11200 (void *)&cmd_tx_loopback_on_off,
11205 /* all queues drop enable configuration */
11207 /* Common result structure for all queues drop enable */
11208 struct cmd_all_queues_drop_en_result {
11209 cmdline_fixed_string_t set;
11210 cmdline_fixed_string_t all;
11211 cmdline_fixed_string_t queues;
11212 cmdline_fixed_string_t drop;
11214 cmdline_fixed_string_t on_off;
11217 /* Common CLI fields for tx loopback enable disable */
11218 cmdline_parse_token_string_t cmd_all_queues_drop_en_set =
11219 TOKEN_STRING_INITIALIZER
11220 (struct cmd_all_queues_drop_en_result,
11222 cmdline_parse_token_string_t cmd_all_queues_drop_en_all =
11223 TOKEN_STRING_INITIALIZER
11224 (struct cmd_all_queues_drop_en_result,
11226 cmdline_parse_token_string_t cmd_all_queues_drop_en_queues =
11227 TOKEN_STRING_INITIALIZER
11228 (struct cmd_all_queues_drop_en_result,
11230 cmdline_parse_token_string_t cmd_all_queues_drop_en_drop =
11231 TOKEN_STRING_INITIALIZER
11232 (struct cmd_all_queues_drop_en_result,
11234 cmdline_parse_token_num_t cmd_all_queues_drop_en_port_id =
11235 TOKEN_NUM_INITIALIZER
11236 (struct cmd_all_queues_drop_en_result,
11237 port_id, RTE_UINT16);
11238 cmdline_parse_token_string_t cmd_all_queues_drop_en_on_off =
11239 TOKEN_STRING_INITIALIZER
11240 (struct cmd_all_queues_drop_en_result,
11244 cmd_set_all_queues_drop_en_parsed(
11245 void *parsed_result,
11246 __rte_unused struct cmdline *cl,
11247 __rte_unused void *data)
11249 struct cmd_all_queues_drop_en_result *res = parsed_result;
11250 int ret = -ENOTSUP;
11251 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11253 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11256 #ifdef RTE_NET_IXGBE
11257 if (ret == -ENOTSUP)
11258 ret = rte_pmd_ixgbe_set_all_queues_drop_en(res->port_id, is_on);
11260 #ifdef RTE_NET_BNXT
11261 if (ret == -ENOTSUP)
11262 ret = rte_pmd_bnxt_set_all_queues_drop_en(res->port_id, is_on);
11268 printf("invalid is_on %d\n", is_on);
11271 printf("invalid port_id %d\n", res->port_id);
11274 printf("function not implemented\n");
11277 printf("programming error: (%s)\n", strerror(-ret));
11281 cmdline_parse_inst_t cmd_set_all_queues_drop_en = {
11282 .f = cmd_set_all_queues_drop_en_parsed,
11284 .help_str = "set all queues drop <port_id> on|off",
11286 (void *)&cmd_all_queues_drop_en_set,
11287 (void *)&cmd_all_queues_drop_en_all,
11288 (void *)&cmd_all_queues_drop_en_queues,
11289 (void *)&cmd_all_queues_drop_en_drop,
11290 (void *)&cmd_all_queues_drop_en_port_id,
11291 (void *)&cmd_all_queues_drop_en_on_off,
11296 /* vf split drop enable configuration */
11298 /* Common result structure for vf split drop enable */
11299 struct cmd_vf_split_drop_en_result {
11300 cmdline_fixed_string_t set;
11301 cmdline_fixed_string_t vf;
11302 cmdline_fixed_string_t split;
11303 cmdline_fixed_string_t drop;
11306 cmdline_fixed_string_t on_off;
11309 /* Common CLI fields for vf split drop enable disable */
11310 cmdline_parse_token_string_t cmd_vf_split_drop_en_set =
11311 TOKEN_STRING_INITIALIZER
11312 (struct cmd_vf_split_drop_en_result,
11314 cmdline_parse_token_string_t cmd_vf_split_drop_en_vf =
11315 TOKEN_STRING_INITIALIZER
11316 (struct cmd_vf_split_drop_en_result,
11318 cmdline_parse_token_string_t cmd_vf_split_drop_en_split =
11319 TOKEN_STRING_INITIALIZER
11320 (struct cmd_vf_split_drop_en_result,
11322 cmdline_parse_token_string_t cmd_vf_split_drop_en_drop =
11323 TOKEN_STRING_INITIALIZER
11324 (struct cmd_vf_split_drop_en_result,
11326 cmdline_parse_token_num_t cmd_vf_split_drop_en_port_id =
11327 TOKEN_NUM_INITIALIZER
11328 (struct cmd_vf_split_drop_en_result,
11329 port_id, RTE_UINT16);
11330 cmdline_parse_token_num_t cmd_vf_split_drop_en_vf_id =
11331 TOKEN_NUM_INITIALIZER
11332 (struct cmd_vf_split_drop_en_result,
11333 vf_id, RTE_UINT16);
11334 cmdline_parse_token_string_t cmd_vf_split_drop_en_on_off =
11335 TOKEN_STRING_INITIALIZER
11336 (struct cmd_vf_split_drop_en_result,
11340 cmd_set_vf_split_drop_en_parsed(
11341 void *parsed_result,
11342 __rte_unused struct cmdline *cl,
11343 __rte_unused void *data)
11345 struct cmd_vf_split_drop_en_result *res = parsed_result;
11346 int ret = -ENOTSUP;
11347 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11349 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11352 #ifdef RTE_NET_IXGBE
11353 ret = rte_pmd_ixgbe_set_vf_split_drop_en(res->port_id, res->vf_id,
11360 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
11363 printf("invalid port_id %d\n", res->port_id);
11366 printf("not supported on port %d\n", res->port_id);
11369 printf("programming error: (%s)\n", strerror(-ret));
11373 cmdline_parse_inst_t cmd_set_vf_split_drop_en = {
11374 .f = cmd_set_vf_split_drop_en_parsed,
11376 .help_str = "set vf split drop <port_id> <vf_id> on|off",
11378 (void *)&cmd_vf_split_drop_en_set,
11379 (void *)&cmd_vf_split_drop_en_vf,
11380 (void *)&cmd_vf_split_drop_en_split,
11381 (void *)&cmd_vf_split_drop_en_drop,
11382 (void *)&cmd_vf_split_drop_en_port_id,
11383 (void *)&cmd_vf_split_drop_en_vf_id,
11384 (void *)&cmd_vf_split_drop_en_on_off,
11389 /* vf mac address configuration */
11391 /* Common result structure for vf mac address */
11392 struct cmd_set_vf_mac_addr_result {
11393 cmdline_fixed_string_t set;
11394 cmdline_fixed_string_t vf;
11395 cmdline_fixed_string_t mac;
11396 cmdline_fixed_string_t addr;
11399 struct rte_ether_addr mac_addr;
11403 /* Common CLI fields for vf split drop enable disable */
11404 cmdline_parse_token_string_t cmd_set_vf_mac_addr_set =
11405 TOKEN_STRING_INITIALIZER
11406 (struct cmd_set_vf_mac_addr_result,
11408 cmdline_parse_token_string_t cmd_set_vf_mac_addr_vf =
11409 TOKEN_STRING_INITIALIZER
11410 (struct cmd_set_vf_mac_addr_result,
11412 cmdline_parse_token_string_t cmd_set_vf_mac_addr_mac =
11413 TOKEN_STRING_INITIALIZER
11414 (struct cmd_set_vf_mac_addr_result,
11416 cmdline_parse_token_string_t cmd_set_vf_mac_addr_addr =
11417 TOKEN_STRING_INITIALIZER
11418 (struct cmd_set_vf_mac_addr_result,
11420 cmdline_parse_token_num_t cmd_set_vf_mac_addr_port_id =
11421 TOKEN_NUM_INITIALIZER
11422 (struct cmd_set_vf_mac_addr_result,
11423 port_id, RTE_UINT16);
11424 cmdline_parse_token_num_t cmd_set_vf_mac_addr_vf_id =
11425 TOKEN_NUM_INITIALIZER
11426 (struct cmd_set_vf_mac_addr_result,
11427 vf_id, RTE_UINT16);
11428 cmdline_parse_token_etheraddr_t cmd_set_vf_mac_addr_mac_addr =
11429 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_mac_addr_result,
11433 cmd_set_vf_mac_addr_parsed(
11434 void *parsed_result,
11435 __rte_unused struct cmdline *cl,
11436 __rte_unused void *data)
11438 struct cmd_set_vf_mac_addr_result *res = parsed_result;
11439 int ret = -ENOTSUP;
11441 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11444 #ifdef RTE_NET_IXGBE
11445 if (ret == -ENOTSUP)
11446 ret = rte_pmd_ixgbe_set_vf_mac_addr(res->port_id, res->vf_id,
11449 #ifdef RTE_NET_I40E
11450 if (ret == -ENOTSUP)
11451 ret = rte_pmd_i40e_set_vf_mac_addr(res->port_id, res->vf_id,
11454 #ifdef RTE_NET_BNXT
11455 if (ret == -ENOTSUP)
11456 ret = rte_pmd_bnxt_set_vf_mac_addr(res->port_id, res->vf_id,
11464 printf("invalid vf_id %d or mac_addr\n", res->vf_id);
11467 printf("invalid port_id %d\n", res->port_id);
11470 printf("function not implemented\n");
11473 printf("programming error: (%s)\n", strerror(-ret));
11477 cmdline_parse_inst_t cmd_set_vf_mac_addr = {
11478 .f = cmd_set_vf_mac_addr_parsed,
11480 .help_str = "set vf mac addr <port_id> <vf_id> <mac_addr>",
11482 (void *)&cmd_set_vf_mac_addr_set,
11483 (void *)&cmd_set_vf_mac_addr_vf,
11484 (void *)&cmd_set_vf_mac_addr_mac,
11485 (void *)&cmd_set_vf_mac_addr_addr,
11486 (void *)&cmd_set_vf_mac_addr_port_id,
11487 (void *)&cmd_set_vf_mac_addr_vf_id,
11488 (void *)&cmd_set_vf_mac_addr_mac_addr,
11493 /* MACsec configuration */
11495 /* Common result structure for MACsec offload enable */
11496 struct cmd_macsec_offload_on_result {
11497 cmdline_fixed_string_t set;
11498 cmdline_fixed_string_t macsec;
11499 cmdline_fixed_string_t offload;
11501 cmdline_fixed_string_t on;
11502 cmdline_fixed_string_t encrypt;
11503 cmdline_fixed_string_t en_on_off;
11504 cmdline_fixed_string_t replay_protect;
11505 cmdline_fixed_string_t rp_on_off;
11508 /* Common CLI fields for MACsec offload disable */
11509 cmdline_parse_token_string_t cmd_macsec_offload_on_set =
11510 TOKEN_STRING_INITIALIZER
11511 (struct cmd_macsec_offload_on_result,
11513 cmdline_parse_token_string_t cmd_macsec_offload_on_macsec =
11514 TOKEN_STRING_INITIALIZER
11515 (struct cmd_macsec_offload_on_result,
11517 cmdline_parse_token_string_t cmd_macsec_offload_on_offload =
11518 TOKEN_STRING_INITIALIZER
11519 (struct cmd_macsec_offload_on_result,
11520 offload, "offload");
11521 cmdline_parse_token_num_t cmd_macsec_offload_on_port_id =
11522 TOKEN_NUM_INITIALIZER
11523 (struct cmd_macsec_offload_on_result,
11524 port_id, RTE_UINT16);
11525 cmdline_parse_token_string_t cmd_macsec_offload_on_on =
11526 TOKEN_STRING_INITIALIZER
11527 (struct cmd_macsec_offload_on_result,
11529 cmdline_parse_token_string_t cmd_macsec_offload_on_encrypt =
11530 TOKEN_STRING_INITIALIZER
11531 (struct cmd_macsec_offload_on_result,
11532 encrypt, "encrypt");
11533 cmdline_parse_token_string_t cmd_macsec_offload_on_en_on_off =
11534 TOKEN_STRING_INITIALIZER
11535 (struct cmd_macsec_offload_on_result,
11536 en_on_off, "on#off");
11537 cmdline_parse_token_string_t cmd_macsec_offload_on_replay_protect =
11538 TOKEN_STRING_INITIALIZER
11539 (struct cmd_macsec_offload_on_result,
11540 replay_protect, "replay-protect");
11541 cmdline_parse_token_string_t cmd_macsec_offload_on_rp_on_off =
11542 TOKEN_STRING_INITIALIZER
11543 (struct cmd_macsec_offload_on_result,
11544 rp_on_off, "on#off");
11547 cmd_set_macsec_offload_on_parsed(
11548 void *parsed_result,
11549 __rte_unused struct cmdline *cl,
11550 __rte_unused void *data)
11552 struct cmd_macsec_offload_on_result *res = parsed_result;
11553 int ret = -ENOTSUP;
11554 portid_t port_id = res->port_id;
11555 int en = (strcmp(res->en_on_off, "on") == 0) ? 1 : 0;
11556 int rp = (strcmp(res->rp_on_off, "on") == 0) ? 1 : 0;
11557 struct rte_eth_dev_info dev_info;
11559 if (port_id_is_invalid(port_id, ENABLED_WARN))
11561 if (!port_is_stopped(port_id)) {
11562 printf("Please stop port %d first\n", port_id);
11566 ret = eth_dev_info_get_print_err(port_id, &dev_info);
11570 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) {
11571 #ifdef RTE_NET_IXGBE
11572 ret = rte_pmd_ixgbe_macsec_enable(port_id, en, rp);
11580 ports[port_id].dev_conf.txmode.offloads |=
11581 DEV_TX_OFFLOAD_MACSEC_INSERT;
11582 cmd_reconfig_device_queue(port_id, 1, 1);
11585 printf("invalid port_id %d\n", port_id);
11588 printf("not supported on port %d\n", port_id);
11591 printf("programming error: (%s)\n", strerror(-ret));
11595 cmdline_parse_inst_t cmd_set_macsec_offload_on = {
11596 .f = cmd_set_macsec_offload_on_parsed,
11598 .help_str = "set macsec offload <port_id> on "
11599 "encrypt on|off replay-protect on|off",
11601 (void *)&cmd_macsec_offload_on_set,
11602 (void *)&cmd_macsec_offload_on_macsec,
11603 (void *)&cmd_macsec_offload_on_offload,
11604 (void *)&cmd_macsec_offload_on_port_id,
11605 (void *)&cmd_macsec_offload_on_on,
11606 (void *)&cmd_macsec_offload_on_encrypt,
11607 (void *)&cmd_macsec_offload_on_en_on_off,
11608 (void *)&cmd_macsec_offload_on_replay_protect,
11609 (void *)&cmd_macsec_offload_on_rp_on_off,
11614 /* Common result structure for MACsec offload disable */
11615 struct cmd_macsec_offload_off_result {
11616 cmdline_fixed_string_t set;
11617 cmdline_fixed_string_t macsec;
11618 cmdline_fixed_string_t offload;
11620 cmdline_fixed_string_t off;
11623 /* Common CLI fields for MACsec offload disable */
11624 cmdline_parse_token_string_t cmd_macsec_offload_off_set =
11625 TOKEN_STRING_INITIALIZER
11626 (struct cmd_macsec_offload_off_result,
11628 cmdline_parse_token_string_t cmd_macsec_offload_off_macsec =
11629 TOKEN_STRING_INITIALIZER
11630 (struct cmd_macsec_offload_off_result,
11632 cmdline_parse_token_string_t cmd_macsec_offload_off_offload =
11633 TOKEN_STRING_INITIALIZER
11634 (struct cmd_macsec_offload_off_result,
11635 offload, "offload");
11636 cmdline_parse_token_num_t cmd_macsec_offload_off_port_id =
11637 TOKEN_NUM_INITIALIZER
11638 (struct cmd_macsec_offload_off_result,
11639 port_id, RTE_UINT16);
11640 cmdline_parse_token_string_t cmd_macsec_offload_off_off =
11641 TOKEN_STRING_INITIALIZER
11642 (struct cmd_macsec_offload_off_result,
11646 cmd_set_macsec_offload_off_parsed(
11647 void *parsed_result,
11648 __rte_unused struct cmdline *cl,
11649 __rte_unused void *data)
11651 struct cmd_macsec_offload_off_result *res = parsed_result;
11652 int ret = -ENOTSUP;
11653 struct rte_eth_dev_info dev_info;
11654 portid_t port_id = res->port_id;
11656 if (port_id_is_invalid(port_id, ENABLED_WARN))
11658 if (!port_is_stopped(port_id)) {
11659 printf("Please stop port %d first\n", port_id);
11663 ret = eth_dev_info_get_print_err(port_id, &dev_info);
11667 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) {
11668 #ifdef RTE_NET_IXGBE
11669 ret = rte_pmd_ixgbe_macsec_disable(port_id);
11674 ports[port_id].dev_conf.txmode.offloads &=
11675 ~DEV_TX_OFFLOAD_MACSEC_INSERT;
11676 cmd_reconfig_device_queue(port_id, 1, 1);
11679 printf("invalid port_id %d\n", port_id);
11682 printf("not supported on port %d\n", port_id);
11685 printf("programming error: (%s)\n", strerror(-ret));
11689 cmdline_parse_inst_t cmd_set_macsec_offload_off = {
11690 .f = cmd_set_macsec_offload_off_parsed,
11692 .help_str = "set macsec offload <port_id> off",
11694 (void *)&cmd_macsec_offload_off_set,
11695 (void *)&cmd_macsec_offload_off_macsec,
11696 (void *)&cmd_macsec_offload_off_offload,
11697 (void *)&cmd_macsec_offload_off_port_id,
11698 (void *)&cmd_macsec_offload_off_off,
11703 /* Common result structure for MACsec secure connection configure */
11704 struct cmd_macsec_sc_result {
11705 cmdline_fixed_string_t set;
11706 cmdline_fixed_string_t macsec;
11707 cmdline_fixed_string_t sc;
11708 cmdline_fixed_string_t tx_rx;
11710 struct rte_ether_addr mac;
11714 /* Common CLI fields for MACsec secure connection configure */
11715 cmdline_parse_token_string_t cmd_macsec_sc_set =
11716 TOKEN_STRING_INITIALIZER
11717 (struct cmd_macsec_sc_result,
11719 cmdline_parse_token_string_t cmd_macsec_sc_macsec =
11720 TOKEN_STRING_INITIALIZER
11721 (struct cmd_macsec_sc_result,
11723 cmdline_parse_token_string_t cmd_macsec_sc_sc =
11724 TOKEN_STRING_INITIALIZER
11725 (struct cmd_macsec_sc_result,
11727 cmdline_parse_token_string_t cmd_macsec_sc_tx_rx =
11728 TOKEN_STRING_INITIALIZER
11729 (struct cmd_macsec_sc_result,
11731 cmdline_parse_token_num_t cmd_macsec_sc_port_id =
11732 TOKEN_NUM_INITIALIZER
11733 (struct cmd_macsec_sc_result,
11734 port_id, RTE_UINT16);
11735 cmdline_parse_token_etheraddr_t cmd_macsec_sc_mac =
11736 TOKEN_ETHERADDR_INITIALIZER
11737 (struct cmd_macsec_sc_result,
11739 cmdline_parse_token_num_t cmd_macsec_sc_pi =
11740 TOKEN_NUM_INITIALIZER
11741 (struct cmd_macsec_sc_result,
11745 cmd_set_macsec_sc_parsed(
11746 void *parsed_result,
11747 __rte_unused struct cmdline *cl,
11748 __rte_unused void *data)
11750 struct cmd_macsec_sc_result *res = parsed_result;
11751 int ret = -ENOTSUP;
11752 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0;
11754 #ifdef RTE_NET_IXGBE
11756 rte_pmd_ixgbe_macsec_config_txsc(res->port_id,
11757 res->mac.addr_bytes) :
11758 rte_pmd_ixgbe_macsec_config_rxsc(res->port_id,
11759 res->mac.addr_bytes, res->pi);
11761 RTE_SET_USED(is_tx);
11767 printf("invalid port_id %d\n", res->port_id);
11770 printf("not supported on port %d\n", res->port_id);
11773 printf("programming error: (%s)\n", strerror(-ret));
11777 cmdline_parse_inst_t cmd_set_macsec_sc = {
11778 .f = cmd_set_macsec_sc_parsed,
11780 .help_str = "set macsec sc tx|rx <port_id> <mac> <pi>",
11782 (void *)&cmd_macsec_sc_set,
11783 (void *)&cmd_macsec_sc_macsec,
11784 (void *)&cmd_macsec_sc_sc,
11785 (void *)&cmd_macsec_sc_tx_rx,
11786 (void *)&cmd_macsec_sc_port_id,
11787 (void *)&cmd_macsec_sc_mac,
11788 (void *)&cmd_macsec_sc_pi,
11793 /* Common result structure for MACsec secure connection configure */
11794 struct cmd_macsec_sa_result {
11795 cmdline_fixed_string_t set;
11796 cmdline_fixed_string_t macsec;
11797 cmdline_fixed_string_t sa;
11798 cmdline_fixed_string_t tx_rx;
11803 cmdline_fixed_string_t key;
11806 /* Common CLI fields for MACsec secure connection configure */
11807 cmdline_parse_token_string_t cmd_macsec_sa_set =
11808 TOKEN_STRING_INITIALIZER
11809 (struct cmd_macsec_sa_result,
11811 cmdline_parse_token_string_t cmd_macsec_sa_macsec =
11812 TOKEN_STRING_INITIALIZER
11813 (struct cmd_macsec_sa_result,
11815 cmdline_parse_token_string_t cmd_macsec_sa_sa =
11816 TOKEN_STRING_INITIALIZER
11817 (struct cmd_macsec_sa_result,
11819 cmdline_parse_token_string_t cmd_macsec_sa_tx_rx =
11820 TOKEN_STRING_INITIALIZER
11821 (struct cmd_macsec_sa_result,
11823 cmdline_parse_token_num_t cmd_macsec_sa_port_id =
11824 TOKEN_NUM_INITIALIZER
11825 (struct cmd_macsec_sa_result,
11826 port_id, RTE_UINT16);
11827 cmdline_parse_token_num_t cmd_macsec_sa_idx =
11828 TOKEN_NUM_INITIALIZER
11829 (struct cmd_macsec_sa_result,
11831 cmdline_parse_token_num_t cmd_macsec_sa_an =
11832 TOKEN_NUM_INITIALIZER
11833 (struct cmd_macsec_sa_result,
11835 cmdline_parse_token_num_t cmd_macsec_sa_pn =
11836 TOKEN_NUM_INITIALIZER
11837 (struct cmd_macsec_sa_result,
11839 cmdline_parse_token_string_t cmd_macsec_sa_key =
11840 TOKEN_STRING_INITIALIZER
11841 (struct cmd_macsec_sa_result,
11845 cmd_set_macsec_sa_parsed(
11846 void *parsed_result,
11847 __rte_unused struct cmdline *cl,
11848 __rte_unused void *data)
11850 struct cmd_macsec_sa_result *res = parsed_result;
11851 int ret = -ENOTSUP;
11852 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0;
11853 uint8_t key[16] = { 0 };
11859 key_len = strlen(res->key) / 2;
11863 for (i = 0; i < key_len; i++) {
11864 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
11867 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
11870 key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
11873 #ifdef RTE_NET_IXGBE
11875 rte_pmd_ixgbe_macsec_select_txsa(res->port_id,
11876 res->idx, res->an, res->pn, key) :
11877 rte_pmd_ixgbe_macsec_select_rxsa(res->port_id,
11878 res->idx, res->an, res->pn, key);
11880 RTE_SET_USED(is_tx);
11887 printf("invalid idx %d or an %d\n", res->idx, res->an);
11890 printf("invalid port_id %d\n", res->port_id);
11893 printf("not supported on port %d\n", res->port_id);
11896 printf("programming error: (%s)\n", strerror(-ret));
11900 cmdline_parse_inst_t cmd_set_macsec_sa = {
11901 .f = cmd_set_macsec_sa_parsed,
11903 .help_str = "set macsec sa tx|rx <port_id> <idx> <an> <pn> <key>",
11905 (void *)&cmd_macsec_sa_set,
11906 (void *)&cmd_macsec_sa_macsec,
11907 (void *)&cmd_macsec_sa_sa,
11908 (void *)&cmd_macsec_sa_tx_rx,
11909 (void *)&cmd_macsec_sa_port_id,
11910 (void *)&cmd_macsec_sa_idx,
11911 (void *)&cmd_macsec_sa_an,
11912 (void *)&cmd_macsec_sa_pn,
11913 (void *)&cmd_macsec_sa_key,
11918 /* VF unicast promiscuous mode configuration */
11920 /* Common result structure for VF unicast promiscuous mode */
11921 struct cmd_vf_promisc_result {
11922 cmdline_fixed_string_t set;
11923 cmdline_fixed_string_t vf;
11924 cmdline_fixed_string_t promisc;
11927 cmdline_fixed_string_t on_off;
11930 /* Common CLI fields for VF unicast promiscuous mode enable disable */
11931 cmdline_parse_token_string_t cmd_vf_promisc_set =
11932 TOKEN_STRING_INITIALIZER
11933 (struct cmd_vf_promisc_result,
11935 cmdline_parse_token_string_t cmd_vf_promisc_vf =
11936 TOKEN_STRING_INITIALIZER
11937 (struct cmd_vf_promisc_result,
11939 cmdline_parse_token_string_t cmd_vf_promisc_promisc =
11940 TOKEN_STRING_INITIALIZER
11941 (struct cmd_vf_promisc_result,
11942 promisc, "promisc");
11943 cmdline_parse_token_num_t cmd_vf_promisc_port_id =
11944 TOKEN_NUM_INITIALIZER
11945 (struct cmd_vf_promisc_result,
11946 port_id, RTE_UINT16);
11947 cmdline_parse_token_num_t cmd_vf_promisc_vf_id =
11948 TOKEN_NUM_INITIALIZER
11949 (struct cmd_vf_promisc_result,
11950 vf_id, RTE_UINT32);
11951 cmdline_parse_token_string_t cmd_vf_promisc_on_off =
11952 TOKEN_STRING_INITIALIZER
11953 (struct cmd_vf_promisc_result,
11957 cmd_set_vf_promisc_parsed(
11958 void *parsed_result,
11959 __rte_unused struct cmdline *cl,
11960 __rte_unused void *data)
11962 struct cmd_vf_promisc_result *res = parsed_result;
11963 int ret = -ENOTSUP;
11965 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11967 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11970 #ifdef RTE_NET_I40E
11971 ret = rte_pmd_i40e_set_vf_unicast_promisc(res->port_id,
11972 res->vf_id, is_on);
11979 printf("invalid vf_id %d\n", res->vf_id);
11982 printf("invalid port_id %d\n", res->port_id);
11985 printf("function not implemented\n");
11988 printf("programming error: (%s)\n", strerror(-ret));
11992 cmdline_parse_inst_t cmd_set_vf_promisc = {
11993 .f = cmd_set_vf_promisc_parsed,
11995 .help_str = "set vf promisc <port_id> <vf_id> on|off: "
11996 "Set unicast promiscuous mode for a VF from the PF",
11998 (void *)&cmd_vf_promisc_set,
11999 (void *)&cmd_vf_promisc_vf,
12000 (void *)&cmd_vf_promisc_promisc,
12001 (void *)&cmd_vf_promisc_port_id,
12002 (void *)&cmd_vf_promisc_vf_id,
12003 (void *)&cmd_vf_promisc_on_off,
12008 /* VF multicast promiscuous mode configuration */
12010 /* Common result structure for VF multicast promiscuous mode */
12011 struct cmd_vf_allmulti_result {
12012 cmdline_fixed_string_t set;
12013 cmdline_fixed_string_t vf;
12014 cmdline_fixed_string_t allmulti;
12017 cmdline_fixed_string_t on_off;
12020 /* Common CLI fields for VF multicast promiscuous mode enable disable */
12021 cmdline_parse_token_string_t cmd_vf_allmulti_set =
12022 TOKEN_STRING_INITIALIZER
12023 (struct cmd_vf_allmulti_result,
12025 cmdline_parse_token_string_t cmd_vf_allmulti_vf =
12026 TOKEN_STRING_INITIALIZER
12027 (struct cmd_vf_allmulti_result,
12029 cmdline_parse_token_string_t cmd_vf_allmulti_allmulti =
12030 TOKEN_STRING_INITIALIZER
12031 (struct cmd_vf_allmulti_result,
12032 allmulti, "allmulti");
12033 cmdline_parse_token_num_t cmd_vf_allmulti_port_id =
12034 TOKEN_NUM_INITIALIZER
12035 (struct cmd_vf_allmulti_result,
12036 port_id, RTE_UINT16);
12037 cmdline_parse_token_num_t cmd_vf_allmulti_vf_id =
12038 TOKEN_NUM_INITIALIZER
12039 (struct cmd_vf_allmulti_result,
12040 vf_id, RTE_UINT32);
12041 cmdline_parse_token_string_t cmd_vf_allmulti_on_off =
12042 TOKEN_STRING_INITIALIZER
12043 (struct cmd_vf_allmulti_result,
12047 cmd_set_vf_allmulti_parsed(
12048 void *parsed_result,
12049 __rte_unused struct cmdline *cl,
12050 __rte_unused void *data)
12052 struct cmd_vf_allmulti_result *res = parsed_result;
12053 int ret = -ENOTSUP;
12055 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12057 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12060 #ifdef RTE_NET_I40E
12061 ret = rte_pmd_i40e_set_vf_multicast_promisc(res->port_id,
12062 res->vf_id, is_on);
12069 printf("invalid vf_id %d\n", res->vf_id);
12072 printf("invalid port_id %d\n", res->port_id);
12075 printf("function not implemented\n");
12078 printf("programming error: (%s)\n", strerror(-ret));
12082 cmdline_parse_inst_t cmd_set_vf_allmulti = {
12083 .f = cmd_set_vf_allmulti_parsed,
12085 .help_str = "set vf allmulti <port_id> <vf_id> on|off: "
12086 "Set multicast promiscuous mode for a VF from the PF",
12088 (void *)&cmd_vf_allmulti_set,
12089 (void *)&cmd_vf_allmulti_vf,
12090 (void *)&cmd_vf_allmulti_allmulti,
12091 (void *)&cmd_vf_allmulti_port_id,
12092 (void *)&cmd_vf_allmulti_vf_id,
12093 (void *)&cmd_vf_allmulti_on_off,
12098 /* vf broadcast mode configuration */
12100 /* Common result structure for vf broadcast */
12101 struct cmd_set_vf_broadcast_result {
12102 cmdline_fixed_string_t set;
12103 cmdline_fixed_string_t vf;
12104 cmdline_fixed_string_t broadcast;
12107 cmdline_fixed_string_t on_off;
12110 /* Common CLI fields for vf broadcast enable disable */
12111 cmdline_parse_token_string_t cmd_set_vf_broadcast_set =
12112 TOKEN_STRING_INITIALIZER
12113 (struct cmd_set_vf_broadcast_result,
12115 cmdline_parse_token_string_t cmd_set_vf_broadcast_vf =
12116 TOKEN_STRING_INITIALIZER
12117 (struct cmd_set_vf_broadcast_result,
12119 cmdline_parse_token_string_t cmd_set_vf_broadcast_broadcast =
12120 TOKEN_STRING_INITIALIZER
12121 (struct cmd_set_vf_broadcast_result,
12122 broadcast, "broadcast");
12123 cmdline_parse_token_num_t cmd_set_vf_broadcast_port_id =
12124 TOKEN_NUM_INITIALIZER
12125 (struct cmd_set_vf_broadcast_result,
12126 port_id, RTE_UINT16);
12127 cmdline_parse_token_num_t cmd_set_vf_broadcast_vf_id =
12128 TOKEN_NUM_INITIALIZER
12129 (struct cmd_set_vf_broadcast_result,
12130 vf_id, RTE_UINT16);
12131 cmdline_parse_token_string_t cmd_set_vf_broadcast_on_off =
12132 TOKEN_STRING_INITIALIZER
12133 (struct cmd_set_vf_broadcast_result,
12137 cmd_set_vf_broadcast_parsed(
12138 void *parsed_result,
12139 __rte_unused struct cmdline *cl,
12140 __rte_unused void *data)
12142 struct cmd_set_vf_broadcast_result *res = parsed_result;
12143 int ret = -ENOTSUP;
12145 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12147 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12150 #ifdef RTE_NET_I40E
12151 ret = rte_pmd_i40e_set_vf_broadcast(res->port_id,
12152 res->vf_id, is_on);
12159 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
12162 printf("invalid port_id %d\n", res->port_id);
12165 printf("function not implemented\n");
12168 printf("programming error: (%s)\n", strerror(-ret));
12172 cmdline_parse_inst_t cmd_set_vf_broadcast = {
12173 .f = cmd_set_vf_broadcast_parsed,
12175 .help_str = "set vf broadcast <port_id> <vf_id> on|off",
12177 (void *)&cmd_set_vf_broadcast_set,
12178 (void *)&cmd_set_vf_broadcast_vf,
12179 (void *)&cmd_set_vf_broadcast_broadcast,
12180 (void *)&cmd_set_vf_broadcast_port_id,
12181 (void *)&cmd_set_vf_broadcast_vf_id,
12182 (void *)&cmd_set_vf_broadcast_on_off,
12187 /* vf vlan tag configuration */
12189 /* Common result structure for vf vlan tag */
12190 struct cmd_set_vf_vlan_tag_result {
12191 cmdline_fixed_string_t set;
12192 cmdline_fixed_string_t vf;
12193 cmdline_fixed_string_t vlan;
12194 cmdline_fixed_string_t tag;
12197 cmdline_fixed_string_t on_off;
12200 /* Common CLI fields for vf vlan tag enable disable */
12201 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_set =
12202 TOKEN_STRING_INITIALIZER
12203 (struct cmd_set_vf_vlan_tag_result,
12205 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vf =
12206 TOKEN_STRING_INITIALIZER
12207 (struct cmd_set_vf_vlan_tag_result,
12209 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vlan =
12210 TOKEN_STRING_INITIALIZER
12211 (struct cmd_set_vf_vlan_tag_result,
12213 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_tag =
12214 TOKEN_STRING_INITIALIZER
12215 (struct cmd_set_vf_vlan_tag_result,
12217 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_port_id =
12218 TOKEN_NUM_INITIALIZER
12219 (struct cmd_set_vf_vlan_tag_result,
12220 port_id, RTE_UINT16);
12221 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_vf_id =
12222 TOKEN_NUM_INITIALIZER
12223 (struct cmd_set_vf_vlan_tag_result,
12224 vf_id, RTE_UINT16);
12225 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_on_off =
12226 TOKEN_STRING_INITIALIZER
12227 (struct cmd_set_vf_vlan_tag_result,
12231 cmd_set_vf_vlan_tag_parsed(
12232 void *parsed_result,
12233 __rte_unused struct cmdline *cl,
12234 __rte_unused void *data)
12236 struct cmd_set_vf_vlan_tag_result *res = parsed_result;
12237 int ret = -ENOTSUP;
12239 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12241 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12244 #ifdef RTE_NET_I40E
12245 ret = rte_pmd_i40e_set_vf_vlan_tag(res->port_id,
12246 res->vf_id, is_on);
12253 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
12256 printf("invalid port_id %d\n", res->port_id);
12259 printf("function not implemented\n");
12262 printf("programming error: (%s)\n", strerror(-ret));
12266 cmdline_parse_inst_t cmd_set_vf_vlan_tag = {
12267 .f = cmd_set_vf_vlan_tag_parsed,
12269 .help_str = "set vf vlan tag <port_id> <vf_id> on|off",
12271 (void *)&cmd_set_vf_vlan_tag_set,
12272 (void *)&cmd_set_vf_vlan_tag_vf,
12273 (void *)&cmd_set_vf_vlan_tag_vlan,
12274 (void *)&cmd_set_vf_vlan_tag_tag,
12275 (void *)&cmd_set_vf_vlan_tag_port_id,
12276 (void *)&cmd_set_vf_vlan_tag_vf_id,
12277 (void *)&cmd_set_vf_vlan_tag_on_off,
12282 /* Common definition of VF and TC TX bandwidth configuration */
12283 struct cmd_vf_tc_bw_result {
12284 cmdline_fixed_string_t set;
12285 cmdline_fixed_string_t vf;
12286 cmdline_fixed_string_t tc;
12287 cmdline_fixed_string_t tx;
12288 cmdline_fixed_string_t min_bw;
12289 cmdline_fixed_string_t max_bw;
12290 cmdline_fixed_string_t strict_link_prio;
12295 cmdline_fixed_string_t bw_list;
12299 cmdline_parse_token_string_t cmd_vf_tc_bw_set =
12300 TOKEN_STRING_INITIALIZER
12301 (struct cmd_vf_tc_bw_result,
12303 cmdline_parse_token_string_t cmd_vf_tc_bw_vf =
12304 TOKEN_STRING_INITIALIZER
12305 (struct cmd_vf_tc_bw_result,
12307 cmdline_parse_token_string_t cmd_vf_tc_bw_tc =
12308 TOKEN_STRING_INITIALIZER
12309 (struct cmd_vf_tc_bw_result,
12311 cmdline_parse_token_string_t cmd_vf_tc_bw_tx =
12312 TOKEN_STRING_INITIALIZER
12313 (struct cmd_vf_tc_bw_result,
12315 cmdline_parse_token_string_t cmd_vf_tc_bw_strict_link_prio =
12316 TOKEN_STRING_INITIALIZER
12317 (struct cmd_vf_tc_bw_result,
12318 strict_link_prio, "strict-link-priority");
12319 cmdline_parse_token_string_t cmd_vf_tc_bw_min_bw =
12320 TOKEN_STRING_INITIALIZER
12321 (struct cmd_vf_tc_bw_result,
12322 min_bw, "min-bandwidth");
12323 cmdline_parse_token_string_t cmd_vf_tc_bw_max_bw =
12324 TOKEN_STRING_INITIALIZER
12325 (struct cmd_vf_tc_bw_result,
12326 max_bw, "max-bandwidth");
12327 cmdline_parse_token_num_t cmd_vf_tc_bw_port_id =
12328 TOKEN_NUM_INITIALIZER
12329 (struct cmd_vf_tc_bw_result,
12330 port_id, RTE_UINT16);
12331 cmdline_parse_token_num_t cmd_vf_tc_bw_vf_id =
12332 TOKEN_NUM_INITIALIZER
12333 (struct cmd_vf_tc_bw_result,
12334 vf_id, RTE_UINT16);
12335 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_no =
12336 TOKEN_NUM_INITIALIZER
12337 (struct cmd_vf_tc_bw_result,
12339 cmdline_parse_token_num_t cmd_vf_tc_bw_bw =
12340 TOKEN_NUM_INITIALIZER
12341 (struct cmd_vf_tc_bw_result,
12343 cmdline_parse_token_string_t cmd_vf_tc_bw_bw_list =
12344 TOKEN_STRING_INITIALIZER
12345 (struct cmd_vf_tc_bw_result,
12347 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_map =
12348 TOKEN_NUM_INITIALIZER
12349 (struct cmd_vf_tc_bw_result,
12350 tc_map, RTE_UINT8);
12352 /* VF max bandwidth setting */
12354 cmd_vf_max_bw_parsed(
12355 void *parsed_result,
12356 __rte_unused struct cmdline *cl,
12357 __rte_unused void *data)
12359 struct cmd_vf_tc_bw_result *res = parsed_result;
12360 int ret = -ENOTSUP;
12362 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12365 #ifdef RTE_NET_I40E
12366 ret = rte_pmd_i40e_set_vf_max_bw(res->port_id,
12367 res->vf_id, res->bw);
12374 printf("invalid vf_id %d or bandwidth %d\n",
12375 res->vf_id, res->bw);
12378 printf("invalid port_id %d\n", res->port_id);
12381 printf("function not implemented\n");
12384 printf("programming error: (%s)\n", strerror(-ret));
12388 cmdline_parse_inst_t cmd_vf_max_bw = {
12389 .f = cmd_vf_max_bw_parsed,
12391 .help_str = "set vf tx max-bandwidth <port_id> <vf_id> <bandwidth>",
12393 (void *)&cmd_vf_tc_bw_set,
12394 (void *)&cmd_vf_tc_bw_vf,
12395 (void *)&cmd_vf_tc_bw_tx,
12396 (void *)&cmd_vf_tc_bw_max_bw,
12397 (void *)&cmd_vf_tc_bw_port_id,
12398 (void *)&cmd_vf_tc_bw_vf_id,
12399 (void *)&cmd_vf_tc_bw_bw,
12405 vf_tc_min_bw_parse_bw_list(uint8_t *bw_list,
12410 const char *p, *p0 = str;
12417 p = strchr(p0, '(');
12419 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
12423 p0 = strchr(p, ')');
12425 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
12429 if (size >= sizeof(s)) {
12430 printf("The string size exceeds the internal buffer size\n");
12433 snprintf(s, sizeof(s), "%.*s", size, p);
12434 ret = rte_strsplit(s, sizeof(s), str_fld, 16, ',');
12436 printf("Failed to get the bandwidth list. ");
12440 for (i = 0; i < ret; i++)
12441 bw_list[i] = (uint8_t)strtoul(str_fld[i], &end, 0);
12446 /* TC min bandwidth setting */
12448 cmd_vf_tc_min_bw_parsed(
12449 void *parsed_result,
12450 __rte_unused struct cmdline *cl,
12451 __rte_unused void *data)
12453 struct cmd_vf_tc_bw_result *res = parsed_result;
12456 int ret = -ENOTSUP;
12458 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12461 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list);
12465 #ifdef RTE_NET_I40E
12466 ret = rte_pmd_i40e_set_vf_tc_bw_alloc(res->port_id, res->vf_id,
12474 printf("invalid vf_id %d or bandwidth\n", res->vf_id);
12477 printf("invalid port_id %d\n", res->port_id);
12480 printf("function not implemented\n");
12483 printf("programming error: (%s)\n", strerror(-ret));
12487 cmdline_parse_inst_t cmd_vf_tc_min_bw = {
12488 .f = cmd_vf_tc_min_bw_parsed,
12490 .help_str = "set vf tc tx min-bandwidth <port_id> <vf_id>"
12491 " <bw1, bw2, ...>",
12493 (void *)&cmd_vf_tc_bw_set,
12494 (void *)&cmd_vf_tc_bw_vf,
12495 (void *)&cmd_vf_tc_bw_tc,
12496 (void *)&cmd_vf_tc_bw_tx,
12497 (void *)&cmd_vf_tc_bw_min_bw,
12498 (void *)&cmd_vf_tc_bw_port_id,
12499 (void *)&cmd_vf_tc_bw_vf_id,
12500 (void *)&cmd_vf_tc_bw_bw_list,
12506 cmd_tc_min_bw_parsed(
12507 void *parsed_result,
12508 __rte_unused struct cmdline *cl,
12509 __rte_unused void *data)
12511 struct cmd_vf_tc_bw_result *res = parsed_result;
12512 struct rte_port *port;
12515 int ret = -ENOTSUP;
12517 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12520 port = &ports[res->port_id];
12521 /** Check if the port is not started **/
12522 if (port->port_status != RTE_PORT_STOPPED) {
12523 printf("Please stop port %d first\n", res->port_id);
12527 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list);
12531 #ifdef RTE_NET_IXGBE
12532 ret = rte_pmd_ixgbe_set_tc_bw_alloc(res->port_id, tc_num, bw);
12539 printf("invalid bandwidth\n");
12542 printf("invalid port_id %d\n", res->port_id);
12545 printf("function not implemented\n");
12548 printf("programming error: (%s)\n", strerror(-ret));
12552 cmdline_parse_inst_t cmd_tc_min_bw = {
12553 .f = cmd_tc_min_bw_parsed,
12555 .help_str = "set tc tx min-bandwidth <port_id> <bw1, bw2, ...>",
12557 (void *)&cmd_vf_tc_bw_set,
12558 (void *)&cmd_vf_tc_bw_tc,
12559 (void *)&cmd_vf_tc_bw_tx,
12560 (void *)&cmd_vf_tc_bw_min_bw,
12561 (void *)&cmd_vf_tc_bw_port_id,
12562 (void *)&cmd_vf_tc_bw_bw_list,
12567 /* TC max bandwidth setting */
12569 cmd_vf_tc_max_bw_parsed(
12570 void *parsed_result,
12571 __rte_unused struct cmdline *cl,
12572 __rte_unused void *data)
12574 struct cmd_vf_tc_bw_result *res = parsed_result;
12575 int ret = -ENOTSUP;
12577 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12580 #ifdef RTE_NET_I40E
12581 ret = rte_pmd_i40e_set_vf_tc_max_bw(res->port_id, res->vf_id,
12582 res->tc_no, res->bw);
12589 printf("invalid vf_id %d, tc_no %d or bandwidth %d\n",
12590 res->vf_id, res->tc_no, res->bw);
12593 printf("invalid port_id %d\n", res->port_id);
12596 printf("function not implemented\n");
12599 printf("programming error: (%s)\n", strerror(-ret));
12603 cmdline_parse_inst_t cmd_vf_tc_max_bw = {
12604 .f = cmd_vf_tc_max_bw_parsed,
12606 .help_str = "set vf tc tx max-bandwidth <port_id> <vf_id> <tc_no>"
12609 (void *)&cmd_vf_tc_bw_set,
12610 (void *)&cmd_vf_tc_bw_vf,
12611 (void *)&cmd_vf_tc_bw_tc,
12612 (void *)&cmd_vf_tc_bw_tx,
12613 (void *)&cmd_vf_tc_bw_max_bw,
12614 (void *)&cmd_vf_tc_bw_port_id,
12615 (void *)&cmd_vf_tc_bw_vf_id,
12616 (void *)&cmd_vf_tc_bw_tc_no,
12617 (void *)&cmd_vf_tc_bw_bw,
12622 /** Set VXLAN encapsulation details */
12623 struct cmd_set_vxlan_result {
12624 cmdline_fixed_string_t set;
12625 cmdline_fixed_string_t vxlan;
12626 cmdline_fixed_string_t pos_token;
12627 cmdline_fixed_string_t ip_version;
12628 uint32_t vlan_present:1;
12632 cmdline_ipaddr_t ip_src;
12633 cmdline_ipaddr_t ip_dst;
12637 struct rte_ether_addr eth_src;
12638 struct rte_ether_addr eth_dst;
12641 cmdline_parse_token_string_t cmd_set_vxlan_set =
12642 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, set, "set");
12643 cmdline_parse_token_string_t cmd_set_vxlan_vxlan =
12644 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan, "vxlan");
12645 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_tos_ttl =
12646 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan,
12648 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_with_vlan =
12649 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan,
12650 "vxlan-with-vlan");
12651 cmdline_parse_token_string_t cmd_set_vxlan_ip_version =
12652 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12654 cmdline_parse_token_string_t cmd_set_vxlan_ip_version_value =
12655 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, ip_version,
12657 cmdline_parse_token_string_t cmd_set_vxlan_vni =
12658 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12660 cmdline_parse_token_num_t cmd_set_vxlan_vni_value =
12661 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, vni, RTE_UINT32);
12662 cmdline_parse_token_string_t cmd_set_vxlan_udp_src =
12663 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12665 cmdline_parse_token_num_t cmd_set_vxlan_udp_src_value =
12666 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_src, RTE_UINT16);
12667 cmdline_parse_token_string_t cmd_set_vxlan_udp_dst =
12668 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12670 cmdline_parse_token_num_t cmd_set_vxlan_udp_dst_value =
12671 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_dst, RTE_UINT16);
12672 cmdline_parse_token_string_t cmd_set_vxlan_ip_tos =
12673 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12675 cmdline_parse_token_num_t cmd_set_vxlan_ip_tos_value =
12676 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tos, RTE_UINT8);
12677 cmdline_parse_token_string_t cmd_set_vxlan_ip_ttl =
12678 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12680 cmdline_parse_token_num_t cmd_set_vxlan_ip_ttl_value =
12681 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, ttl, RTE_UINT8);
12682 cmdline_parse_token_string_t cmd_set_vxlan_ip_src =
12683 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12685 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_src_value =
12686 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_src);
12687 cmdline_parse_token_string_t cmd_set_vxlan_ip_dst =
12688 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12690 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_dst_value =
12691 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_dst);
12692 cmdline_parse_token_string_t cmd_set_vxlan_vlan =
12693 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12695 cmdline_parse_token_num_t cmd_set_vxlan_vlan_value =
12696 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tci, RTE_UINT16);
12697 cmdline_parse_token_string_t cmd_set_vxlan_eth_src =
12698 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12700 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_src_value =
12701 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_src);
12702 cmdline_parse_token_string_t cmd_set_vxlan_eth_dst =
12703 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12705 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_dst_value =
12706 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_dst);
12708 static void cmd_set_vxlan_parsed(void *parsed_result,
12709 __rte_unused struct cmdline *cl,
12710 __rte_unused void *data)
12712 struct cmd_set_vxlan_result *res = parsed_result;
12717 .vxlan_id = rte_cpu_to_be_32(res->vni) & RTE_BE32(0x00ffffff),
12720 vxlan_encap_conf.select_tos_ttl = 0;
12721 if (strcmp(res->vxlan, "vxlan") == 0)
12722 vxlan_encap_conf.select_vlan = 0;
12723 else if (strcmp(res->vxlan, "vxlan-with-vlan") == 0)
12724 vxlan_encap_conf.select_vlan = 1;
12725 else if (strcmp(res->vxlan, "vxlan-tos-ttl") == 0) {
12726 vxlan_encap_conf.select_vlan = 0;
12727 vxlan_encap_conf.select_tos_ttl = 1;
12729 if (strcmp(res->ip_version, "ipv4") == 0)
12730 vxlan_encap_conf.select_ipv4 = 1;
12731 else if (strcmp(res->ip_version, "ipv6") == 0)
12732 vxlan_encap_conf.select_ipv4 = 0;
12735 rte_memcpy(vxlan_encap_conf.vni, &id.vni[1], 3);
12736 vxlan_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src);
12737 vxlan_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst);
12738 vxlan_encap_conf.ip_tos = res->tos;
12739 vxlan_encap_conf.ip_ttl = res->ttl;
12740 if (vxlan_encap_conf.select_ipv4) {
12741 IPV4_ADDR_TO_UINT(res->ip_src, vxlan_encap_conf.ipv4_src);
12742 IPV4_ADDR_TO_UINT(res->ip_dst, vxlan_encap_conf.ipv4_dst);
12744 IPV6_ADDR_TO_ARRAY(res->ip_src, vxlan_encap_conf.ipv6_src);
12745 IPV6_ADDR_TO_ARRAY(res->ip_dst, vxlan_encap_conf.ipv6_dst);
12747 if (vxlan_encap_conf.select_vlan)
12748 vxlan_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
12749 rte_memcpy(vxlan_encap_conf.eth_src, res->eth_src.addr_bytes,
12750 RTE_ETHER_ADDR_LEN);
12751 rte_memcpy(vxlan_encap_conf.eth_dst, res->eth_dst.addr_bytes,
12752 RTE_ETHER_ADDR_LEN);
12755 cmdline_parse_inst_t cmd_set_vxlan = {
12756 .f = cmd_set_vxlan_parsed,
12758 .help_str = "set vxlan ip-version ipv4|ipv6 vni <vni> udp-src"
12759 " <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst <ip-dst>"
12760 " eth-src <eth-src> eth-dst <eth-dst>",
12762 (void *)&cmd_set_vxlan_set,
12763 (void *)&cmd_set_vxlan_vxlan,
12764 (void *)&cmd_set_vxlan_ip_version,
12765 (void *)&cmd_set_vxlan_ip_version_value,
12766 (void *)&cmd_set_vxlan_vni,
12767 (void *)&cmd_set_vxlan_vni_value,
12768 (void *)&cmd_set_vxlan_udp_src,
12769 (void *)&cmd_set_vxlan_udp_src_value,
12770 (void *)&cmd_set_vxlan_udp_dst,
12771 (void *)&cmd_set_vxlan_udp_dst_value,
12772 (void *)&cmd_set_vxlan_ip_src,
12773 (void *)&cmd_set_vxlan_ip_src_value,
12774 (void *)&cmd_set_vxlan_ip_dst,
12775 (void *)&cmd_set_vxlan_ip_dst_value,
12776 (void *)&cmd_set_vxlan_eth_src,
12777 (void *)&cmd_set_vxlan_eth_src_value,
12778 (void *)&cmd_set_vxlan_eth_dst,
12779 (void *)&cmd_set_vxlan_eth_dst_value,
12784 cmdline_parse_inst_t cmd_set_vxlan_tos_ttl = {
12785 .f = cmd_set_vxlan_parsed,
12787 .help_str = "set vxlan-tos-ttl ip-version ipv4|ipv6 vni <vni> udp-src"
12788 " <udp-src> udp-dst <udp-dst> ip-tos <ip-tos> ip-ttl <ip-ttl>"
12789 " ip-src <ip-src> ip-dst <ip-dst> eth-src <eth-src>"
12790 " eth-dst <eth-dst>",
12792 (void *)&cmd_set_vxlan_set,
12793 (void *)&cmd_set_vxlan_vxlan_tos_ttl,
12794 (void *)&cmd_set_vxlan_ip_version,
12795 (void *)&cmd_set_vxlan_ip_version_value,
12796 (void *)&cmd_set_vxlan_vni,
12797 (void *)&cmd_set_vxlan_vni_value,
12798 (void *)&cmd_set_vxlan_udp_src,
12799 (void *)&cmd_set_vxlan_udp_src_value,
12800 (void *)&cmd_set_vxlan_udp_dst,
12801 (void *)&cmd_set_vxlan_udp_dst_value,
12802 (void *)&cmd_set_vxlan_ip_tos,
12803 (void *)&cmd_set_vxlan_ip_tos_value,
12804 (void *)&cmd_set_vxlan_ip_ttl,
12805 (void *)&cmd_set_vxlan_ip_ttl_value,
12806 (void *)&cmd_set_vxlan_ip_src,
12807 (void *)&cmd_set_vxlan_ip_src_value,
12808 (void *)&cmd_set_vxlan_ip_dst,
12809 (void *)&cmd_set_vxlan_ip_dst_value,
12810 (void *)&cmd_set_vxlan_eth_src,
12811 (void *)&cmd_set_vxlan_eth_src_value,
12812 (void *)&cmd_set_vxlan_eth_dst,
12813 (void *)&cmd_set_vxlan_eth_dst_value,
12818 cmdline_parse_inst_t cmd_set_vxlan_with_vlan = {
12819 .f = cmd_set_vxlan_parsed,
12821 .help_str = "set vxlan-with-vlan ip-version ipv4|ipv6 vni <vni>"
12822 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst"
12823 " <ip-dst> vlan-tci <vlan-tci> eth-src <eth-src> eth-dst"
12826 (void *)&cmd_set_vxlan_set,
12827 (void *)&cmd_set_vxlan_vxlan_with_vlan,
12828 (void *)&cmd_set_vxlan_ip_version,
12829 (void *)&cmd_set_vxlan_ip_version_value,
12830 (void *)&cmd_set_vxlan_vni,
12831 (void *)&cmd_set_vxlan_vni_value,
12832 (void *)&cmd_set_vxlan_udp_src,
12833 (void *)&cmd_set_vxlan_udp_src_value,
12834 (void *)&cmd_set_vxlan_udp_dst,
12835 (void *)&cmd_set_vxlan_udp_dst_value,
12836 (void *)&cmd_set_vxlan_ip_src,
12837 (void *)&cmd_set_vxlan_ip_src_value,
12838 (void *)&cmd_set_vxlan_ip_dst,
12839 (void *)&cmd_set_vxlan_ip_dst_value,
12840 (void *)&cmd_set_vxlan_vlan,
12841 (void *)&cmd_set_vxlan_vlan_value,
12842 (void *)&cmd_set_vxlan_eth_src,
12843 (void *)&cmd_set_vxlan_eth_src_value,
12844 (void *)&cmd_set_vxlan_eth_dst,
12845 (void *)&cmd_set_vxlan_eth_dst_value,
12850 /** Set NVGRE encapsulation details */
12851 struct cmd_set_nvgre_result {
12852 cmdline_fixed_string_t set;
12853 cmdline_fixed_string_t nvgre;
12854 cmdline_fixed_string_t pos_token;
12855 cmdline_fixed_string_t ip_version;
12857 cmdline_ipaddr_t ip_src;
12858 cmdline_ipaddr_t ip_dst;
12860 struct rte_ether_addr eth_src;
12861 struct rte_ether_addr eth_dst;
12864 cmdline_parse_token_string_t cmd_set_nvgre_set =
12865 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, set, "set");
12866 cmdline_parse_token_string_t cmd_set_nvgre_nvgre =
12867 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre, "nvgre");
12868 cmdline_parse_token_string_t cmd_set_nvgre_nvgre_with_vlan =
12869 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre,
12870 "nvgre-with-vlan");
12871 cmdline_parse_token_string_t cmd_set_nvgre_ip_version =
12872 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12874 cmdline_parse_token_string_t cmd_set_nvgre_ip_version_value =
12875 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, ip_version,
12877 cmdline_parse_token_string_t cmd_set_nvgre_tni =
12878 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12880 cmdline_parse_token_num_t cmd_set_nvgre_tni_value =
12881 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tni, RTE_UINT32);
12882 cmdline_parse_token_string_t cmd_set_nvgre_ip_src =
12883 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12885 cmdline_parse_token_num_t cmd_set_nvgre_ip_src_value =
12886 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_src);
12887 cmdline_parse_token_string_t cmd_set_nvgre_ip_dst =
12888 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12890 cmdline_parse_token_ipaddr_t cmd_set_nvgre_ip_dst_value =
12891 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_dst);
12892 cmdline_parse_token_string_t cmd_set_nvgre_vlan =
12893 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12895 cmdline_parse_token_num_t cmd_set_nvgre_vlan_value =
12896 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tci, RTE_UINT16);
12897 cmdline_parse_token_string_t cmd_set_nvgre_eth_src =
12898 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12900 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_src_value =
12901 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_src);
12902 cmdline_parse_token_string_t cmd_set_nvgre_eth_dst =
12903 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12905 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_dst_value =
12906 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_dst);
12908 static void cmd_set_nvgre_parsed(void *parsed_result,
12909 __rte_unused struct cmdline *cl,
12910 __rte_unused void *data)
12912 struct cmd_set_nvgre_result *res = parsed_result;
12914 uint32_t nvgre_tni;
12917 .nvgre_tni = rte_cpu_to_be_32(res->tni) & RTE_BE32(0x00ffffff),
12920 if (strcmp(res->nvgre, "nvgre") == 0)
12921 nvgre_encap_conf.select_vlan = 0;
12922 else if (strcmp(res->nvgre, "nvgre-with-vlan") == 0)
12923 nvgre_encap_conf.select_vlan = 1;
12924 if (strcmp(res->ip_version, "ipv4") == 0)
12925 nvgre_encap_conf.select_ipv4 = 1;
12926 else if (strcmp(res->ip_version, "ipv6") == 0)
12927 nvgre_encap_conf.select_ipv4 = 0;
12930 rte_memcpy(nvgre_encap_conf.tni, &id.tni[1], 3);
12931 if (nvgre_encap_conf.select_ipv4) {
12932 IPV4_ADDR_TO_UINT(res->ip_src, nvgre_encap_conf.ipv4_src);
12933 IPV4_ADDR_TO_UINT(res->ip_dst, nvgre_encap_conf.ipv4_dst);
12935 IPV6_ADDR_TO_ARRAY(res->ip_src, nvgre_encap_conf.ipv6_src);
12936 IPV6_ADDR_TO_ARRAY(res->ip_dst, nvgre_encap_conf.ipv6_dst);
12938 if (nvgre_encap_conf.select_vlan)
12939 nvgre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
12940 rte_memcpy(nvgre_encap_conf.eth_src, res->eth_src.addr_bytes,
12941 RTE_ETHER_ADDR_LEN);
12942 rte_memcpy(nvgre_encap_conf.eth_dst, res->eth_dst.addr_bytes,
12943 RTE_ETHER_ADDR_LEN);
12946 cmdline_parse_inst_t cmd_set_nvgre = {
12947 .f = cmd_set_nvgre_parsed,
12949 .help_str = "set nvgre ip-version <ipv4|ipv6> tni <tni> ip-src"
12950 " <ip-src> ip-dst <ip-dst> eth-src <eth-src>"
12951 " eth-dst <eth-dst>",
12953 (void *)&cmd_set_nvgre_set,
12954 (void *)&cmd_set_nvgre_nvgre,
12955 (void *)&cmd_set_nvgre_ip_version,
12956 (void *)&cmd_set_nvgre_ip_version_value,
12957 (void *)&cmd_set_nvgre_tni,
12958 (void *)&cmd_set_nvgre_tni_value,
12959 (void *)&cmd_set_nvgre_ip_src,
12960 (void *)&cmd_set_nvgre_ip_src_value,
12961 (void *)&cmd_set_nvgre_ip_dst,
12962 (void *)&cmd_set_nvgre_ip_dst_value,
12963 (void *)&cmd_set_nvgre_eth_src,
12964 (void *)&cmd_set_nvgre_eth_src_value,
12965 (void *)&cmd_set_nvgre_eth_dst,
12966 (void *)&cmd_set_nvgre_eth_dst_value,
12971 cmdline_parse_inst_t cmd_set_nvgre_with_vlan = {
12972 .f = cmd_set_nvgre_parsed,
12974 .help_str = "set nvgre-with-vlan ip-version <ipv4|ipv6> tni <tni>"
12975 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>"
12976 " eth-src <eth-src> eth-dst <eth-dst>",
12978 (void *)&cmd_set_nvgre_set,
12979 (void *)&cmd_set_nvgre_nvgre_with_vlan,
12980 (void *)&cmd_set_nvgre_ip_version,
12981 (void *)&cmd_set_nvgre_ip_version_value,
12982 (void *)&cmd_set_nvgre_tni,
12983 (void *)&cmd_set_nvgre_tni_value,
12984 (void *)&cmd_set_nvgre_ip_src,
12985 (void *)&cmd_set_nvgre_ip_src_value,
12986 (void *)&cmd_set_nvgre_ip_dst,
12987 (void *)&cmd_set_nvgre_ip_dst_value,
12988 (void *)&cmd_set_nvgre_vlan,
12989 (void *)&cmd_set_nvgre_vlan_value,
12990 (void *)&cmd_set_nvgre_eth_src,
12991 (void *)&cmd_set_nvgre_eth_src_value,
12992 (void *)&cmd_set_nvgre_eth_dst,
12993 (void *)&cmd_set_nvgre_eth_dst_value,
12998 /** Set L2 encapsulation details */
12999 struct cmd_set_l2_encap_result {
13000 cmdline_fixed_string_t set;
13001 cmdline_fixed_string_t l2_encap;
13002 cmdline_fixed_string_t pos_token;
13003 cmdline_fixed_string_t ip_version;
13004 uint32_t vlan_present:1;
13006 struct rte_ether_addr eth_src;
13007 struct rte_ether_addr eth_dst;
13010 cmdline_parse_token_string_t cmd_set_l2_encap_set =
13011 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, set, "set");
13012 cmdline_parse_token_string_t cmd_set_l2_encap_l2_encap =
13013 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, l2_encap, "l2_encap");
13014 cmdline_parse_token_string_t cmd_set_l2_encap_l2_encap_with_vlan =
13015 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, l2_encap,
13016 "l2_encap-with-vlan");
13017 cmdline_parse_token_string_t cmd_set_l2_encap_ip_version =
13018 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
13020 cmdline_parse_token_string_t cmd_set_l2_encap_ip_version_value =
13021 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, ip_version,
13023 cmdline_parse_token_string_t cmd_set_l2_encap_vlan =
13024 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
13026 cmdline_parse_token_num_t cmd_set_l2_encap_vlan_value =
13027 TOKEN_NUM_INITIALIZER(struct cmd_set_l2_encap_result, tci, RTE_UINT16);
13028 cmdline_parse_token_string_t cmd_set_l2_encap_eth_src =
13029 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
13031 cmdline_parse_token_etheraddr_t cmd_set_l2_encap_eth_src_value =
13032 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_l2_encap_result, eth_src);
13033 cmdline_parse_token_string_t cmd_set_l2_encap_eth_dst =
13034 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
13036 cmdline_parse_token_etheraddr_t cmd_set_l2_encap_eth_dst_value =
13037 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_l2_encap_result, eth_dst);
13039 static void cmd_set_l2_encap_parsed(void *parsed_result,
13040 __rte_unused struct cmdline *cl,
13041 __rte_unused void *data)
13043 struct cmd_set_l2_encap_result *res = parsed_result;
13045 if (strcmp(res->l2_encap, "l2_encap") == 0)
13046 l2_encap_conf.select_vlan = 0;
13047 else if (strcmp(res->l2_encap, "l2_encap-with-vlan") == 0)
13048 l2_encap_conf.select_vlan = 1;
13049 if (strcmp(res->ip_version, "ipv4") == 0)
13050 l2_encap_conf.select_ipv4 = 1;
13051 else if (strcmp(res->ip_version, "ipv6") == 0)
13052 l2_encap_conf.select_ipv4 = 0;
13055 if (l2_encap_conf.select_vlan)
13056 l2_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
13057 rte_memcpy(l2_encap_conf.eth_src, res->eth_src.addr_bytes,
13058 RTE_ETHER_ADDR_LEN);
13059 rte_memcpy(l2_encap_conf.eth_dst, res->eth_dst.addr_bytes,
13060 RTE_ETHER_ADDR_LEN);
13063 cmdline_parse_inst_t cmd_set_l2_encap = {
13064 .f = cmd_set_l2_encap_parsed,
13066 .help_str = "set l2_encap ip-version ipv4|ipv6"
13067 " eth-src <eth-src> eth-dst <eth-dst>",
13069 (void *)&cmd_set_l2_encap_set,
13070 (void *)&cmd_set_l2_encap_l2_encap,
13071 (void *)&cmd_set_l2_encap_ip_version,
13072 (void *)&cmd_set_l2_encap_ip_version_value,
13073 (void *)&cmd_set_l2_encap_eth_src,
13074 (void *)&cmd_set_l2_encap_eth_src_value,
13075 (void *)&cmd_set_l2_encap_eth_dst,
13076 (void *)&cmd_set_l2_encap_eth_dst_value,
13081 cmdline_parse_inst_t cmd_set_l2_encap_with_vlan = {
13082 .f = cmd_set_l2_encap_parsed,
13084 .help_str = "set l2_encap-with-vlan ip-version ipv4|ipv6"
13085 " vlan-tci <vlan-tci> eth-src <eth-src> eth-dst <eth-dst>",
13087 (void *)&cmd_set_l2_encap_set,
13088 (void *)&cmd_set_l2_encap_l2_encap_with_vlan,
13089 (void *)&cmd_set_l2_encap_ip_version,
13090 (void *)&cmd_set_l2_encap_ip_version_value,
13091 (void *)&cmd_set_l2_encap_vlan,
13092 (void *)&cmd_set_l2_encap_vlan_value,
13093 (void *)&cmd_set_l2_encap_eth_src,
13094 (void *)&cmd_set_l2_encap_eth_src_value,
13095 (void *)&cmd_set_l2_encap_eth_dst,
13096 (void *)&cmd_set_l2_encap_eth_dst_value,
13101 /** Set L2 decapsulation details */
13102 struct cmd_set_l2_decap_result {
13103 cmdline_fixed_string_t set;
13104 cmdline_fixed_string_t l2_decap;
13105 cmdline_fixed_string_t pos_token;
13106 uint32_t vlan_present:1;
13109 cmdline_parse_token_string_t cmd_set_l2_decap_set =
13110 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, set, "set");
13111 cmdline_parse_token_string_t cmd_set_l2_decap_l2_decap =
13112 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, l2_decap,
13114 cmdline_parse_token_string_t cmd_set_l2_decap_l2_decap_with_vlan =
13115 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, l2_decap,
13116 "l2_decap-with-vlan");
13118 static void cmd_set_l2_decap_parsed(void *parsed_result,
13119 __rte_unused struct cmdline *cl,
13120 __rte_unused void *data)
13122 struct cmd_set_l2_decap_result *res = parsed_result;
13124 if (strcmp(res->l2_decap, "l2_decap") == 0)
13125 l2_decap_conf.select_vlan = 0;
13126 else if (strcmp(res->l2_decap, "l2_decap-with-vlan") == 0)
13127 l2_decap_conf.select_vlan = 1;
13130 cmdline_parse_inst_t cmd_set_l2_decap = {
13131 .f = cmd_set_l2_decap_parsed,
13133 .help_str = "set l2_decap",
13135 (void *)&cmd_set_l2_decap_set,
13136 (void *)&cmd_set_l2_decap_l2_decap,
13141 cmdline_parse_inst_t cmd_set_l2_decap_with_vlan = {
13142 .f = cmd_set_l2_decap_parsed,
13144 .help_str = "set l2_decap-with-vlan",
13146 (void *)&cmd_set_l2_decap_set,
13147 (void *)&cmd_set_l2_decap_l2_decap_with_vlan,
13152 /** Set MPLSoGRE encapsulation details */
13153 struct cmd_set_mplsogre_encap_result {
13154 cmdline_fixed_string_t set;
13155 cmdline_fixed_string_t mplsogre;
13156 cmdline_fixed_string_t pos_token;
13157 cmdline_fixed_string_t ip_version;
13158 uint32_t vlan_present:1;
13160 cmdline_ipaddr_t ip_src;
13161 cmdline_ipaddr_t ip_dst;
13163 struct rte_ether_addr eth_src;
13164 struct rte_ether_addr eth_dst;
13167 cmdline_parse_token_string_t cmd_set_mplsogre_encap_set =
13168 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, set,
13170 cmdline_parse_token_string_t cmd_set_mplsogre_encap_mplsogre_encap =
13171 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, mplsogre,
13173 cmdline_parse_token_string_t cmd_set_mplsogre_encap_mplsogre_encap_with_vlan =
13174 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13175 mplsogre, "mplsogre_encap-with-vlan");
13176 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_version =
13177 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13178 pos_token, "ip-version");
13179 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_version_value =
13180 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13181 ip_version, "ipv4#ipv6");
13182 cmdline_parse_token_string_t cmd_set_mplsogre_encap_label =
13183 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13184 pos_token, "label");
13185 cmdline_parse_token_num_t cmd_set_mplsogre_encap_label_value =
13186 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsogre_encap_result, label,
13188 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_src =
13189 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13190 pos_token, "ip-src");
13191 cmdline_parse_token_ipaddr_t cmd_set_mplsogre_encap_ip_src_value =
13192 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, ip_src);
13193 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_dst =
13194 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13195 pos_token, "ip-dst");
13196 cmdline_parse_token_ipaddr_t cmd_set_mplsogre_encap_ip_dst_value =
13197 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, ip_dst);
13198 cmdline_parse_token_string_t cmd_set_mplsogre_encap_vlan =
13199 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13200 pos_token, "vlan-tci");
13201 cmdline_parse_token_num_t cmd_set_mplsogre_encap_vlan_value =
13202 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsogre_encap_result, tci,
13204 cmdline_parse_token_string_t cmd_set_mplsogre_encap_eth_src =
13205 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13206 pos_token, "eth-src");
13207 cmdline_parse_token_etheraddr_t cmd_set_mplsogre_encap_eth_src_value =
13208 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13210 cmdline_parse_token_string_t cmd_set_mplsogre_encap_eth_dst =
13211 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13212 pos_token, "eth-dst");
13213 cmdline_parse_token_etheraddr_t cmd_set_mplsogre_encap_eth_dst_value =
13214 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13217 static void cmd_set_mplsogre_encap_parsed(void *parsed_result,
13218 __rte_unused struct cmdline *cl,
13219 __rte_unused void *data)
13221 struct cmd_set_mplsogre_encap_result *res = parsed_result;
13223 uint32_t mplsogre_label;
13226 .mplsogre_label = rte_cpu_to_be_32(res->label<<12),
13229 if (strcmp(res->mplsogre, "mplsogre_encap") == 0)
13230 mplsogre_encap_conf.select_vlan = 0;
13231 else if (strcmp(res->mplsogre, "mplsogre_encap-with-vlan") == 0)
13232 mplsogre_encap_conf.select_vlan = 1;
13233 if (strcmp(res->ip_version, "ipv4") == 0)
13234 mplsogre_encap_conf.select_ipv4 = 1;
13235 else if (strcmp(res->ip_version, "ipv6") == 0)
13236 mplsogre_encap_conf.select_ipv4 = 0;
13239 rte_memcpy(mplsogre_encap_conf.label, &id.label, 3);
13240 if (mplsogre_encap_conf.select_ipv4) {
13241 IPV4_ADDR_TO_UINT(res->ip_src, mplsogre_encap_conf.ipv4_src);
13242 IPV4_ADDR_TO_UINT(res->ip_dst, mplsogre_encap_conf.ipv4_dst);
13244 IPV6_ADDR_TO_ARRAY(res->ip_src, mplsogre_encap_conf.ipv6_src);
13245 IPV6_ADDR_TO_ARRAY(res->ip_dst, mplsogre_encap_conf.ipv6_dst);
13247 if (mplsogre_encap_conf.select_vlan)
13248 mplsogre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
13249 rte_memcpy(mplsogre_encap_conf.eth_src, res->eth_src.addr_bytes,
13250 RTE_ETHER_ADDR_LEN);
13251 rte_memcpy(mplsogre_encap_conf.eth_dst, res->eth_dst.addr_bytes,
13252 RTE_ETHER_ADDR_LEN);
13255 cmdline_parse_inst_t cmd_set_mplsogre_encap = {
13256 .f = cmd_set_mplsogre_encap_parsed,
13258 .help_str = "set mplsogre_encap ip-version ipv4|ipv6 label <label>"
13259 " ip-src <ip-src> ip-dst <ip-dst> eth-src <eth-src>"
13260 " eth-dst <eth-dst>",
13262 (void *)&cmd_set_mplsogre_encap_set,
13263 (void *)&cmd_set_mplsogre_encap_mplsogre_encap,
13264 (void *)&cmd_set_mplsogre_encap_ip_version,
13265 (void *)&cmd_set_mplsogre_encap_ip_version_value,
13266 (void *)&cmd_set_mplsogre_encap_label,
13267 (void *)&cmd_set_mplsogre_encap_label_value,
13268 (void *)&cmd_set_mplsogre_encap_ip_src,
13269 (void *)&cmd_set_mplsogre_encap_ip_src_value,
13270 (void *)&cmd_set_mplsogre_encap_ip_dst,
13271 (void *)&cmd_set_mplsogre_encap_ip_dst_value,
13272 (void *)&cmd_set_mplsogre_encap_eth_src,
13273 (void *)&cmd_set_mplsogre_encap_eth_src_value,
13274 (void *)&cmd_set_mplsogre_encap_eth_dst,
13275 (void *)&cmd_set_mplsogre_encap_eth_dst_value,
13280 cmdline_parse_inst_t cmd_set_mplsogre_encap_with_vlan = {
13281 .f = cmd_set_mplsogre_encap_parsed,
13283 .help_str = "set mplsogre_encap-with-vlan ip-version ipv4|ipv6"
13284 " label <label> ip-src <ip-src> ip-dst <ip-dst>"
13285 " vlan-tci <vlan-tci> eth-src <eth-src> eth-dst <eth-dst>",
13287 (void *)&cmd_set_mplsogre_encap_set,
13288 (void *)&cmd_set_mplsogre_encap_mplsogre_encap_with_vlan,
13289 (void *)&cmd_set_mplsogre_encap_ip_version,
13290 (void *)&cmd_set_mplsogre_encap_ip_version_value,
13291 (void *)&cmd_set_mplsogre_encap_label,
13292 (void *)&cmd_set_mplsogre_encap_label_value,
13293 (void *)&cmd_set_mplsogre_encap_ip_src,
13294 (void *)&cmd_set_mplsogre_encap_ip_src_value,
13295 (void *)&cmd_set_mplsogre_encap_ip_dst,
13296 (void *)&cmd_set_mplsogre_encap_ip_dst_value,
13297 (void *)&cmd_set_mplsogre_encap_vlan,
13298 (void *)&cmd_set_mplsogre_encap_vlan_value,
13299 (void *)&cmd_set_mplsogre_encap_eth_src,
13300 (void *)&cmd_set_mplsogre_encap_eth_src_value,
13301 (void *)&cmd_set_mplsogre_encap_eth_dst,
13302 (void *)&cmd_set_mplsogre_encap_eth_dst_value,
13307 /** Set MPLSoGRE decapsulation details */
13308 struct cmd_set_mplsogre_decap_result {
13309 cmdline_fixed_string_t set;
13310 cmdline_fixed_string_t mplsogre;
13311 cmdline_fixed_string_t pos_token;
13312 cmdline_fixed_string_t ip_version;
13313 uint32_t vlan_present:1;
13316 cmdline_parse_token_string_t cmd_set_mplsogre_decap_set =
13317 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, set,
13319 cmdline_parse_token_string_t cmd_set_mplsogre_decap_mplsogre_decap =
13320 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, mplsogre,
13322 cmdline_parse_token_string_t cmd_set_mplsogre_decap_mplsogre_decap_with_vlan =
13323 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result,
13324 mplsogre, "mplsogre_decap-with-vlan");
13325 cmdline_parse_token_string_t cmd_set_mplsogre_decap_ip_version =
13326 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result,
13327 pos_token, "ip-version");
13328 cmdline_parse_token_string_t cmd_set_mplsogre_decap_ip_version_value =
13329 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result,
13330 ip_version, "ipv4#ipv6");
13332 static void cmd_set_mplsogre_decap_parsed(void *parsed_result,
13333 __rte_unused struct cmdline *cl,
13334 __rte_unused void *data)
13336 struct cmd_set_mplsogre_decap_result *res = parsed_result;
13338 if (strcmp(res->mplsogre, "mplsogre_decap") == 0)
13339 mplsogre_decap_conf.select_vlan = 0;
13340 else if (strcmp(res->mplsogre, "mplsogre_decap-with-vlan") == 0)
13341 mplsogre_decap_conf.select_vlan = 1;
13342 if (strcmp(res->ip_version, "ipv4") == 0)
13343 mplsogre_decap_conf.select_ipv4 = 1;
13344 else if (strcmp(res->ip_version, "ipv6") == 0)
13345 mplsogre_decap_conf.select_ipv4 = 0;
13348 cmdline_parse_inst_t cmd_set_mplsogre_decap = {
13349 .f = cmd_set_mplsogre_decap_parsed,
13351 .help_str = "set mplsogre_decap ip-version ipv4|ipv6",
13353 (void *)&cmd_set_mplsogre_decap_set,
13354 (void *)&cmd_set_mplsogre_decap_mplsogre_decap,
13355 (void *)&cmd_set_mplsogre_decap_ip_version,
13356 (void *)&cmd_set_mplsogre_decap_ip_version_value,
13361 cmdline_parse_inst_t cmd_set_mplsogre_decap_with_vlan = {
13362 .f = cmd_set_mplsogre_decap_parsed,
13364 .help_str = "set mplsogre_decap-with-vlan ip-version ipv4|ipv6",
13366 (void *)&cmd_set_mplsogre_decap_set,
13367 (void *)&cmd_set_mplsogre_decap_mplsogre_decap_with_vlan,
13368 (void *)&cmd_set_mplsogre_decap_ip_version,
13369 (void *)&cmd_set_mplsogre_decap_ip_version_value,
13374 /** Set MPLSoUDP encapsulation details */
13375 struct cmd_set_mplsoudp_encap_result {
13376 cmdline_fixed_string_t set;
13377 cmdline_fixed_string_t mplsoudp;
13378 cmdline_fixed_string_t pos_token;
13379 cmdline_fixed_string_t ip_version;
13380 uint32_t vlan_present:1;
13384 cmdline_ipaddr_t ip_src;
13385 cmdline_ipaddr_t ip_dst;
13387 struct rte_ether_addr eth_src;
13388 struct rte_ether_addr eth_dst;
13391 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_set =
13392 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, set,
13394 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_mplsoudp_encap =
13395 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, mplsoudp,
13397 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_mplsoudp_encap_with_vlan =
13398 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13399 mplsoudp, "mplsoudp_encap-with-vlan");
13400 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_version =
13401 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13402 pos_token, "ip-version");
13403 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_version_value =
13404 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13405 ip_version, "ipv4#ipv6");
13406 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_label =
13407 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13408 pos_token, "label");
13409 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_label_value =
13410 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, label,
13412 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_udp_src =
13413 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13414 pos_token, "udp-src");
13415 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_udp_src_value =
13416 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, udp_src,
13418 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_udp_dst =
13419 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13420 pos_token, "udp-dst");
13421 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_udp_dst_value =
13422 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, udp_dst,
13424 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_src =
13425 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13426 pos_token, "ip-src");
13427 cmdline_parse_token_ipaddr_t cmd_set_mplsoudp_encap_ip_src_value =
13428 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, ip_src);
13429 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_dst =
13430 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13431 pos_token, "ip-dst");
13432 cmdline_parse_token_ipaddr_t cmd_set_mplsoudp_encap_ip_dst_value =
13433 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, ip_dst);
13434 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_vlan =
13435 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13436 pos_token, "vlan-tci");
13437 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_vlan_value =
13438 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, tci,
13440 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_eth_src =
13441 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13442 pos_token, "eth-src");
13443 cmdline_parse_token_etheraddr_t cmd_set_mplsoudp_encap_eth_src_value =
13444 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13446 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_eth_dst =
13447 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13448 pos_token, "eth-dst");
13449 cmdline_parse_token_etheraddr_t cmd_set_mplsoudp_encap_eth_dst_value =
13450 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13453 static void cmd_set_mplsoudp_encap_parsed(void *parsed_result,
13454 __rte_unused struct cmdline *cl,
13455 __rte_unused void *data)
13457 struct cmd_set_mplsoudp_encap_result *res = parsed_result;
13459 uint32_t mplsoudp_label;
13462 .mplsoudp_label = rte_cpu_to_be_32(res->label<<12),
13465 if (strcmp(res->mplsoudp, "mplsoudp_encap") == 0)
13466 mplsoudp_encap_conf.select_vlan = 0;
13467 else if (strcmp(res->mplsoudp, "mplsoudp_encap-with-vlan") == 0)
13468 mplsoudp_encap_conf.select_vlan = 1;
13469 if (strcmp(res->ip_version, "ipv4") == 0)
13470 mplsoudp_encap_conf.select_ipv4 = 1;
13471 else if (strcmp(res->ip_version, "ipv6") == 0)
13472 mplsoudp_encap_conf.select_ipv4 = 0;
13475 rte_memcpy(mplsoudp_encap_conf.label, &id.label, 3);
13476 mplsoudp_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src);
13477 mplsoudp_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst);
13478 if (mplsoudp_encap_conf.select_ipv4) {
13479 IPV4_ADDR_TO_UINT(res->ip_src, mplsoudp_encap_conf.ipv4_src);
13480 IPV4_ADDR_TO_UINT(res->ip_dst, mplsoudp_encap_conf.ipv4_dst);
13482 IPV6_ADDR_TO_ARRAY(res->ip_src, mplsoudp_encap_conf.ipv6_src);
13483 IPV6_ADDR_TO_ARRAY(res->ip_dst, mplsoudp_encap_conf.ipv6_dst);
13485 if (mplsoudp_encap_conf.select_vlan)
13486 mplsoudp_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
13487 rte_memcpy(mplsoudp_encap_conf.eth_src, res->eth_src.addr_bytes,
13488 RTE_ETHER_ADDR_LEN);
13489 rte_memcpy(mplsoudp_encap_conf.eth_dst, res->eth_dst.addr_bytes,
13490 RTE_ETHER_ADDR_LEN);
13493 cmdline_parse_inst_t cmd_set_mplsoudp_encap = {
13494 .f = cmd_set_mplsoudp_encap_parsed,
13496 .help_str = "set mplsoudp_encap ip-version ipv4|ipv6 label <label>"
13497 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src>"
13498 " ip-dst <ip-dst> eth-src <eth-src> eth-dst <eth-dst>",
13500 (void *)&cmd_set_mplsoudp_encap_set,
13501 (void *)&cmd_set_mplsoudp_encap_mplsoudp_encap,
13502 (void *)&cmd_set_mplsoudp_encap_ip_version,
13503 (void *)&cmd_set_mplsoudp_encap_ip_version_value,
13504 (void *)&cmd_set_mplsoudp_encap_label,
13505 (void *)&cmd_set_mplsoudp_encap_label_value,
13506 (void *)&cmd_set_mplsoudp_encap_udp_src,
13507 (void *)&cmd_set_mplsoudp_encap_udp_src_value,
13508 (void *)&cmd_set_mplsoudp_encap_udp_dst,
13509 (void *)&cmd_set_mplsoudp_encap_udp_dst_value,
13510 (void *)&cmd_set_mplsoudp_encap_ip_src,
13511 (void *)&cmd_set_mplsoudp_encap_ip_src_value,
13512 (void *)&cmd_set_mplsoudp_encap_ip_dst,
13513 (void *)&cmd_set_mplsoudp_encap_ip_dst_value,
13514 (void *)&cmd_set_mplsoudp_encap_eth_src,
13515 (void *)&cmd_set_mplsoudp_encap_eth_src_value,
13516 (void *)&cmd_set_mplsoudp_encap_eth_dst,
13517 (void *)&cmd_set_mplsoudp_encap_eth_dst_value,
13522 cmdline_parse_inst_t cmd_set_mplsoudp_encap_with_vlan = {
13523 .f = cmd_set_mplsoudp_encap_parsed,
13525 .help_str = "set mplsoudp_encap-with-vlan ip-version ipv4|ipv6"
13526 " label <label> udp-src <udp-src> udp-dst <udp-dst>"
13527 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>"
13528 " eth-src <eth-src> eth-dst <eth-dst>",
13530 (void *)&cmd_set_mplsoudp_encap_set,
13531 (void *)&cmd_set_mplsoudp_encap_mplsoudp_encap_with_vlan,
13532 (void *)&cmd_set_mplsoudp_encap_ip_version,
13533 (void *)&cmd_set_mplsoudp_encap_ip_version_value,
13534 (void *)&cmd_set_mplsoudp_encap_label,
13535 (void *)&cmd_set_mplsoudp_encap_label_value,
13536 (void *)&cmd_set_mplsoudp_encap_udp_src,
13537 (void *)&cmd_set_mplsoudp_encap_udp_src_value,
13538 (void *)&cmd_set_mplsoudp_encap_udp_dst,
13539 (void *)&cmd_set_mplsoudp_encap_udp_dst_value,
13540 (void *)&cmd_set_mplsoudp_encap_ip_src,
13541 (void *)&cmd_set_mplsoudp_encap_ip_src_value,
13542 (void *)&cmd_set_mplsoudp_encap_ip_dst,
13543 (void *)&cmd_set_mplsoudp_encap_ip_dst_value,
13544 (void *)&cmd_set_mplsoudp_encap_vlan,
13545 (void *)&cmd_set_mplsoudp_encap_vlan_value,
13546 (void *)&cmd_set_mplsoudp_encap_eth_src,
13547 (void *)&cmd_set_mplsoudp_encap_eth_src_value,
13548 (void *)&cmd_set_mplsoudp_encap_eth_dst,
13549 (void *)&cmd_set_mplsoudp_encap_eth_dst_value,
13554 /** Set MPLSoUDP decapsulation details */
13555 struct cmd_set_mplsoudp_decap_result {
13556 cmdline_fixed_string_t set;
13557 cmdline_fixed_string_t mplsoudp;
13558 cmdline_fixed_string_t pos_token;
13559 cmdline_fixed_string_t ip_version;
13560 uint32_t vlan_present:1;
13563 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_set =
13564 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, set,
13566 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_mplsoudp_decap =
13567 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, mplsoudp,
13569 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_mplsoudp_decap_with_vlan =
13570 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result,
13571 mplsoudp, "mplsoudp_decap-with-vlan");
13572 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_ip_version =
13573 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result,
13574 pos_token, "ip-version");
13575 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_ip_version_value =
13576 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result,
13577 ip_version, "ipv4#ipv6");
13579 static void cmd_set_mplsoudp_decap_parsed(void *parsed_result,
13580 __rte_unused struct cmdline *cl,
13581 __rte_unused void *data)
13583 struct cmd_set_mplsoudp_decap_result *res = parsed_result;
13585 if (strcmp(res->mplsoudp, "mplsoudp_decap") == 0)
13586 mplsoudp_decap_conf.select_vlan = 0;
13587 else if (strcmp(res->mplsoudp, "mplsoudp_decap-with-vlan") == 0)
13588 mplsoudp_decap_conf.select_vlan = 1;
13589 if (strcmp(res->ip_version, "ipv4") == 0)
13590 mplsoudp_decap_conf.select_ipv4 = 1;
13591 else if (strcmp(res->ip_version, "ipv6") == 0)
13592 mplsoudp_decap_conf.select_ipv4 = 0;
13595 cmdline_parse_inst_t cmd_set_mplsoudp_decap = {
13596 .f = cmd_set_mplsoudp_decap_parsed,
13598 .help_str = "set mplsoudp_decap ip-version ipv4|ipv6",
13600 (void *)&cmd_set_mplsoudp_decap_set,
13601 (void *)&cmd_set_mplsoudp_decap_mplsoudp_decap,
13602 (void *)&cmd_set_mplsoudp_decap_ip_version,
13603 (void *)&cmd_set_mplsoudp_decap_ip_version_value,
13608 cmdline_parse_inst_t cmd_set_mplsoudp_decap_with_vlan = {
13609 .f = cmd_set_mplsoudp_decap_parsed,
13611 .help_str = "set mplsoudp_decap-with-vlan ip-version ipv4|ipv6",
13613 (void *)&cmd_set_mplsoudp_decap_set,
13614 (void *)&cmd_set_mplsoudp_decap_mplsoudp_decap_with_vlan,
13615 (void *)&cmd_set_mplsoudp_decap_ip_version,
13616 (void *)&cmd_set_mplsoudp_decap_ip_version_value,
13621 /* Strict link priority scheduling mode setting */
13623 cmd_strict_link_prio_parsed(
13624 void *parsed_result,
13625 __rte_unused struct cmdline *cl,
13626 __rte_unused void *data)
13628 struct cmd_vf_tc_bw_result *res = parsed_result;
13629 int ret = -ENOTSUP;
13631 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13634 #ifdef RTE_NET_I40E
13635 ret = rte_pmd_i40e_set_tc_strict_prio(res->port_id, res->tc_map);
13642 printf("invalid tc_bitmap 0x%x\n", res->tc_map);
13645 printf("invalid port_id %d\n", res->port_id);
13648 printf("function not implemented\n");
13651 printf("programming error: (%s)\n", strerror(-ret));
13655 cmdline_parse_inst_t cmd_strict_link_prio = {
13656 .f = cmd_strict_link_prio_parsed,
13658 .help_str = "set tx strict-link-priority <port_id> <tc_bitmap>",
13660 (void *)&cmd_vf_tc_bw_set,
13661 (void *)&cmd_vf_tc_bw_tx,
13662 (void *)&cmd_vf_tc_bw_strict_link_prio,
13663 (void *)&cmd_vf_tc_bw_port_id,
13664 (void *)&cmd_vf_tc_bw_tc_map,
13669 /* Load dynamic device personalization*/
13670 struct cmd_ddp_add_result {
13671 cmdline_fixed_string_t ddp;
13672 cmdline_fixed_string_t add;
13677 cmdline_parse_token_string_t cmd_ddp_add_ddp =
13678 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, ddp, "ddp");
13679 cmdline_parse_token_string_t cmd_ddp_add_add =
13680 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, add, "add");
13681 cmdline_parse_token_num_t cmd_ddp_add_port_id =
13682 TOKEN_NUM_INITIALIZER(struct cmd_ddp_add_result, port_id,
13684 cmdline_parse_token_string_t cmd_ddp_add_filepath =
13685 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, filepath, NULL);
13688 cmd_ddp_add_parsed(
13689 void *parsed_result,
13690 __rte_unused struct cmdline *cl,
13691 __rte_unused void *data)
13693 struct cmd_ddp_add_result *res = parsed_result;
13699 int ret = -ENOTSUP;
13701 if (!all_ports_stopped()) {
13702 printf("Please stop all ports first\n");
13706 filepath = strdup(res->filepath);
13707 if (filepath == NULL) {
13708 printf("Failed to allocate memory\n");
13711 file_num = rte_strsplit(filepath, strlen(filepath), file_fld, 2, ',');
13713 buff = open_file(file_fld[0], &size);
13715 free((void *)filepath);
13719 #ifdef RTE_NET_I40E
13720 if (ret == -ENOTSUP)
13721 ret = rte_pmd_i40e_process_ddp_package(res->port_id,
13723 RTE_PMD_I40E_PKG_OP_WR_ADD);
13726 if (ret == -EEXIST)
13727 printf("Profile has already existed.\n");
13729 printf("Failed to load profile.\n");
13730 else if (file_num == 2)
13731 save_file(file_fld[1], buff, size);
13734 free((void *)filepath);
13737 cmdline_parse_inst_t cmd_ddp_add = {
13738 .f = cmd_ddp_add_parsed,
13740 .help_str = "ddp add <port_id> <profile_path[,backup_profile_path]>",
13742 (void *)&cmd_ddp_add_ddp,
13743 (void *)&cmd_ddp_add_add,
13744 (void *)&cmd_ddp_add_port_id,
13745 (void *)&cmd_ddp_add_filepath,
13750 /* Delete dynamic device personalization*/
13751 struct cmd_ddp_del_result {
13752 cmdline_fixed_string_t ddp;
13753 cmdline_fixed_string_t del;
13758 cmdline_parse_token_string_t cmd_ddp_del_ddp =
13759 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, ddp, "ddp");
13760 cmdline_parse_token_string_t cmd_ddp_del_del =
13761 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, del, "del");
13762 cmdline_parse_token_num_t cmd_ddp_del_port_id =
13763 TOKEN_NUM_INITIALIZER(struct cmd_ddp_del_result, port_id, RTE_UINT16);
13764 cmdline_parse_token_string_t cmd_ddp_del_filepath =
13765 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, filepath, NULL);
13768 cmd_ddp_del_parsed(
13769 void *parsed_result,
13770 __rte_unused struct cmdline *cl,
13771 __rte_unused void *data)
13773 struct cmd_ddp_del_result *res = parsed_result;
13776 int ret = -ENOTSUP;
13778 if (!all_ports_stopped()) {
13779 printf("Please stop all ports first\n");
13783 buff = open_file(res->filepath, &size);
13787 #ifdef RTE_NET_I40E
13788 if (ret == -ENOTSUP)
13789 ret = rte_pmd_i40e_process_ddp_package(res->port_id,
13791 RTE_PMD_I40E_PKG_OP_WR_DEL);
13794 if (ret == -EACCES)
13795 printf("Profile does not exist.\n");
13797 printf("Failed to delete profile.\n");
13802 cmdline_parse_inst_t cmd_ddp_del = {
13803 .f = cmd_ddp_del_parsed,
13805 .help_str = "ddp del <port_id> <backup_profile_path>",
13807 (void *)&cmd_ddp_del_ddp,
13808 (void *)&cmd_ddp_del_del,
13809 (void *)&cmd_ddp_del_port_id,
13810 (void *)&cmd_ddp_del_filepath,
13815 /* Get dynamic device personalization profile info */
13816 struct cmd_ddp_info_result {
13817 cmdline_fixed_string_t ddp;
13818 cmdline_fixed_string_t get;
13819 cmdline_fixed_string_t info;
13823 cmdline_parse_token_string_t cmd_ddp_info_ddp =
13824 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, ddp, "ddp");
13825 cmdline_parse_token_string_t cmd_ddp_info_get =
13826 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, get, "get");
13827 cmdline_parse_token_string_t cmd_ddp_info_info =
13828 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, info, "info");
13829 cmdline_parse_token_string_t cmd_ddp_info_filepath =
13830 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, filepath, NULL);
13833 cmd_ddp_info_parsed(
13834 void *parsed_result,
13835 __rte_unused struct cmdline *cl,
13836 __rte_unused void *data)
13838 struct cmd_ddp_info_result *res = parsed_result;
13841 int ret = -ENOTSUP;
13842 #ifdef RTE_NET_I40E
13845 uint32_t buff_size = 0;
13846 struct rte_pmd_i40e_profile_info info;
13847 uint32_t dev_num = 0;
13848 struct rte_pmd_i40e_ddp_device_id *devs;
13849 uint32_t proto_num = 0;
13850 struct rte_pmd_i40e_proto_info *proto = NULL;
13851 uint32_t pctype_num = 0;
13852 struct rte_pmd_i40e_ptype_info *pctype;
13853 uint32_t ptype_num = 0;
13854 struct rte_pmd_i40e_ptype_info *ptype;
13859 pkg = open_file(res->filepath, &pkg_size);
13863 #ifdef RTE_NET_I40E
13864 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13865 (uint8_t *)&info, sizeof(info),
13866 RTE_PMD_I40E_PKG_INFO_GLOBAL_HEADER);
13868 printf("Global Track id: 0x%x\n", info.track_id);
13869 printf("Global Version: %d.%d.%d.%d\n",
13870 info.version.major,
13871 info.version.minor,
13872 info.version.update,
13873 info.version.draft);
13874 printf("Global Package name: %s\n\n", info.name);
13877 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13878 (uint8_t *)&info, sizeof(info),
13879 RTE_PMD_I40E_PKG_INFO_HEADER);
13881 printf("i40e Profile Track id: 0x%x\n", info.track_id);
13882 printf("i40e Profile Version: %d.%d.%d.%d\n",
13883 info.version.major,
13884 info.version.minor,
13885 info.version.update,
13886 info.version.draft);
13887 printf("i40e Profile name: %s\n\n", info.name);
13890 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13891 (uint8_t *)&buff_size, sizeof(buff_size),
13892 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES_SIZE);
13893 if (!ret && buff_size) {
13894 buff = (uint8_t *)malloc(buff_size);
13896 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13898 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES);
13900 printf("Package Notes:\n%s\n\n", buff);
13905 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13906 (uint8_t *)&dev_num, sizeof(dev_num),
13907 RTE_PMD_I40E_PKG_INFO_DEVID_NUM);
13908 if (!ret && dev_num) {
13909 buff_size = dev_num * sizeof(struct rte_pmd_i40e_ddp_device_id);
13910 devs = (struct rte_pmd_i40e_ddp_device_id *)malloc(buff_size);
13912 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13913 (uint8_t *)devs, buff_size,
13914 RTE_PMD_I40E_PKG_INFO_DEVID_LIST);
13916 printf("List of supported devices:\n");
13917 for (i = 0; i < dev_num; i++) {
13918 printf(" %04X:%04X %04X:%04X\n",
13919 devs[i].vendor_dev_id >> 16,
13920 devs[i].vendor_dev_id & 0xFFFF,
13921 devs[i].sub_vendor_dev_id >> 16,
13922 devs[i].sub_vendor_dev_id & 0xFFFF);
13930 /* get information about protocols and packet types */
13931 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13932 (uint8_t *)&proto_num, sizeof(proto_num),
13933 RTE_PMD_I40E_PKG_INFO_PROTOCOL_NUM);
13934 if (ret || !proto_num)
13935 goto no_print_return;
13937 buff_size = proto_num * sizeof(struct rte_pmd_i40e_proto_info);
13938 proto = (struct rte_pmd_i40e_proto_info *)malloc(buff_size);
13940 goto no_print_return;
13942 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)proto,
13944 RTE_PMD_I40E_PKG_INFO_PROTOCOL_LIST);
13946 printf("List of used protocols:\n");
13947 for (i = 0; i < proto_num; i++)
13948 printf(" %2u: %s\n", proto[i].proto_id,
13952 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13953 (uint8_t *)&pctype_num, sizeof(pctype_num),
13954 RTE_PMD_I40E_PKG_INFO_PCTYPE_NUM);
13955 if (ret || !pctype_num)
13956 goto no_print_pctypes;
13958 buff_size = pctype_num * sizeof(struct rte_pmd_i40e_ptype_info);
13959 pctype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size);
13961 goto no_print_pctypes;
13963 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)pctype,
13965 RTE_PMD_I40E_PKG_INFO_PCTYPE_LIST);
13968 goto no_print_pctypes;
13971 printf("List of defined packet classification types:\n");
13972 for (i = 0; i < pctype_num; i++) {
13973 printf(" %2u:", pctype[i].ptype_id);
13974 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) {
13975 proto_id = pctype[i].protocols[j];
13976 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) {
13977 for (n = 0; n < proto_num; n++) {
13978 if (proto[n].proto_id == proto_id) {
13979 printf(" %s", proto[n].name);
13992 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)&ptype_num,
13994 RTE_PMD_I40E_PKG_INFO_PTYPE_NUM);
13995 if (ret || !ptype_num)
13996 goto no_print_return;
13998 buff_size = ptype_num * sizeof(struct rte_pmd_i40e_ptype_info);
13999 ptype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size);
14001 goto no_print_return;
14003 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)ptype,
14005 RTE_PMD_I40E_PKG_INFO_PTYPE_LIST);
14008 goto no_print_return;
14010 printf("List of defined packet types:\n");
14011 for (i = 0; i < ptype_num; i++) {
14012 printf(" %2u:", ptype[i].ptype_id);
14013 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) {
14014 proto_id = ptype[i].protocols[j];
14015 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) {
14016 for (n = 0; n < proto_num; n++) {
14017 if (proto[n].proto_id == proto_id) {
14018 printf(" %s", proto[n].name);
14034 if (ret == -ENOTSUP)
14035 printf("Function not supported in PMD driver\n");
14039 cmdline_parse_inst_t cmd_ddp_get_info = {
14040 .f = cmd_ddp_info_parsed,
14042 .help_str = "ddp get info <profile_path>",
14044 (void *)&cmd_ddp_info_ddp,
14045 (void *)&cmd_ddp_info_get,
14046 (void *)&cmd_ddp_info_info,
14047 (void *)&cmd_ddp_info_filepath,
14052 /* Get dynamic device personalization profile info list*/
14053 #define PROFILE_INFO_SIZE 48
14054 #define MAX_PROFILE_NUM 16
14056 struct cmd_ddp_get_list_result {
14057 cmdline_fixed_string_t ddp;
14058 cmdline_fixed_string_t get;
14059 cmdline_fixed_string_t list;
14063 cmdline_parse_token_string_t cmd_ddp_get_list_ddp =
14064 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, ddp, "ddp");
14065 cmdline_parse_token_string_t cmd_ddp_get_list_get =
14066 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, get, "get");
14067 cmdline_parse_token_string_t cmd_ddp_get_list_list =
14068 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, list, "list");
14069 cmdline_parse_token_num_t cmd_ddp_get_list_port_id =
14070 TOKEN_NUM_INITIALIZER(struct cmd_ddp_get_list_result, port_id,
14074 cmd_ddp_get_list_parsed(
14075 __rte_unused void *parsed_result,
14076 __rte_unused struct cmdline *cl,
14077 __rte_unused void *data)
14079 #ifdef RTE_NET_I40E
14080 struct cmd_ddp_get_list_result *res = parsed_result;
14081 struct rte_pmd_i40e_profile_list *p_list;
14082 struct rte_pmd_i40e_profile_info *p_info;
14087 int ret = -ENOTSUP;
14089 #ifdef RTE_NET_I40E
14090 size = PROFILE_INFO_SIZE * MAX_PROFILE_NUM + 4;
14091 p_list = (struct rte_pmd_i40e_profile_list *)malloc(size);
14093 printf("%s: Failed to malloc buffer\n", __func__);
14097 if (ret == -ENOTSUP)
14098 ret = rte_pmd_i40e_get_ddp_list(res->port_id,
14099 (uint8_t *)p_list, size);
14102 p_num = p_list->p_count;
14103 printf("Profile number is: %d\n\n", p_num);
14105 for (i = 0; i < p_num; i++) {
14106 p_info = &p_list->p_info[i];
14107 printf("Profile %d:\n", i);
14108 printf("Track id: 0x%x\n", p_info->track_id);
14109 printf("Version: %d.%d.%d.%d\n",
14110 p_info->version.major,
14111 p_info->version.minor,
14112 p_info->version.update,
14113 p_info->version.draft);
14114 printf("Profile name: %s\n\n", p_info->name);
14122 printf("Failed to get ddp list\n");
14125 cmdline_parse_inst_t cmd_ddp_get_list = {
14126 .f = cmd_ddp_get_list_parsed,
14128 .help_str = "ddp get list <port_id>",
14130 (void *)&cmd_ddp_get_list_ddp,
14131 (void *)&cmd_ddp_get_list_get,
14132 (void *)&cmd_ddp_get_list_list,
14133 (void *)&cmd_ddp_get_list_port_id,
14138 /* Configure input set */
14139 struct cmd_cfg_input_set_result {
14140 cmdline_fixed_string_t port;
14141 cmdline_fixed_string_t cfg;
14143 cmdline_fixed_string_t pctype;
14145 cmdline_fixed_string_t inset_type;
14146 cmdline_fixed_string_t opt;
14147 cmdline_fixed_string_t field;
14152 cmd_cfg_input_set_parsed(
14153 __rte_unused void *parsed_result,
14154 __rte_unused struct cmdline *cl,
14155 __rte_unused void *data)
14157 #ifdef RTE_NET_I40E
14158 struct cmd_cfg_input_set_result *res = parsed_result;
14159 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE;
14160 struct rte_pmd_i40e_inset inset;
14162 int ret = -ENOTSUP;
14164 if (!all_ports_stopped()) {
14165 printf("Please stop all ports first\n");
14169 #ifdef RTE_NET_I40E
14170 if (!strcmp(res->inset_type, "hash_inset"))
14171 inset_type = INSET_HASH;
14172 else if (!strcmp(res->inset_type, "fdir_inset"))
14173 inset_type = INSET_FDIR;
14174 else if (!strcmp(res->inset_type, "fdir_flx_inset"))
14175 inset_type = INSET_FDIR_FLX;
14176 ret = rte_pmd_i40e_inset_get(res->port_id, res->pctype_id,
14177 &inset, inset_type);
14179 printf("Failed to get input set.\n");
14183 if (!strcmp(res->opt, "get")) {
14184 ret = rte_pmd_i40e_inset_field_get(inset.inset,
14187 printf("Field index %d is enabled.\n", res->field_idx);
14189 printf("Field index %d is disabled.\n", res->field_idx);
14191 } else if (!strcmp(res->opt, "set"))
14192 ret = rte_pmd_i40e_inset_field_set(&inset.inset,
14194 else if (!strcmp(res->opt, "clear"))
14195 ret = rte_pmd_i40e_inset_field_clear(&inset.inset,
14198 printf("Failed to configure input set field.\n");
14202 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id,
14203 &inset, inset_type);
14205 printf("Failed to set input set.\n");
14210 if (ret == -ENOTSUP)
14211 printf("Function not supported\n");
14214 cmdline_parse_token_string_t cmd_cfg_input_set_port =
14215 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14217 cmdline_parse_token_string_t cmd_cfg_input_set_cfg =
14218 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14220 cmdline_parse_token_num_t cmd_cfg_input_set_port_id =
14221 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result,
14222 port_id, RTE_UINT16);
14223 cmdline_parse_token_string_t cmd_cfg_input_set_pctype =
14224 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14226 cmdline_parse_token_num_t cmd_cfg_input_set_pctype_id =
14227 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result,
14228 pctype_id, RTE_UINT8);
14229 cmdline_parse_token_string_t cmd_cfg_input_set_inset_type =
14230 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14232 "hash_inset#fdir_inset#fdir_flx_inset");
14233 cmdline_parse_token_string_t cmd_cfg_input_set_opt =
14234 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14235 opt, "get#set#clear");
14236 cmdline_parse_token_string_t cmd_cfg_input_set_field =
14237 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14239 cmdline_parse_token_num_t cmd_cfg_input_set_field_idx =
14240 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result,
14241 field_idx, RTE_UINT8);
14243 cmdline_parse_inst_t cmd_cfg_input_set = {
14244 .f = cmd_cfg_input_set_parsed,
14246 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|"
14247 "fdir_inset|fdir_flx_inset get|set|clear field <field_idx>",
14249 (void *)&cmd_cfg_input_set_port,
14250 (void *)&cmd_cfg_input_set_cfg,
14251 (void *)&cmd_cfg_input_set_port_id,
14252 (void *)&cmd_cfg_input_set_pctype,
14253 (void *)&cmd_cfg_input_set_pctype_id,
14254 (void *)&cmd_cfg_input_set_inset_type,
14255 (void *)&cmd_cfg_input_set_opt,
14256 (void *)&cmd_cfg_input_set_field,
14257 (void *)&cmd_cfg_input_set_field_idx,
14262 /* Clear input set */
14263 struct cmd_clear_input_set_result {
14264 cmdline_fixed_string_t port;
14265 cmdline_fixed_string_t cfg;
14267 cmdline_fixed_string_t pctype;
14269 cmdline_fixed_string_t inset_type;
14270 cmdline_fixed_string_t clear;
14271 cmdline_fixed_string_t all;
14275 cmd_clear_input_set_parsed(
14276 __rte_unused void *parsed_result,
14277 __rte_unused struct cmdline *cl,
14278 __rte_unused void *data)
14280 #ifdef RTE_NET_I40E
14281 struct cmd_clear_input_set_result *res = parsed_result;
14282 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE;
14283 struct rte_pmd_i40e_inset inset;
14285 int ret = -ENOTSUP;
14287 if (!all_ports_stopped()) {
14288 printf("Please stop all ports first\n");
14292 #ifdef RTE_NET_I40E
14293 if (!strcmp(res->inset_type, "hash_inset"))
14294 inset_type = INSET_HASH;
14295 else if (!strcmp(res->inset_type, "fdir_inset"))
14296 inset_type = INSET_FDIR;
14297 else if (!strcmp(res->inset_type, "fdir_flx_inset"))
14298 inset_type = INSET_FDIR_FLX;
14300 memset(&inset, 0, sizeof(inset));
14302 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id,
14303 &inset, inset_type);
14305 printf("Failed to clear input set.\n");
14311 if (ret == -ENOTSUP)
14312 printf("Function not supported\n");
14315 cmdline_parse_token_string_t cmd_clear_input_set_port =
14316 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14318 cmdline_parse_token_string_t cmd_clear_input_set_cfg =
14319 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14321 cmdline_parse_token_num_t cmd_clear_input_set_port_id =
14322 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result,
14323 port_id, RTE_UINT16);
14324 cmdline_parse_token_string_t cmd_clear_input_set_pctype =
14325 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14327 cmdline_parse_token_num_t cmd_clear_input_set_pctype_id =
14328 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result,
14329 pctype_id, RTE_UINT8);
14330 cmdline_parse_token_string_t cmd_clear_input_set_inset_type =
14331 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14333 "hash_inset#fdir_inset#fdir_flx_inset");
14334 cmdline_parse_token_string_t cmd_clear_input_set_clear =
14335 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14337 cmdline_parse_token_string_t cmd_clear_input_set_all =
14338 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14341 cmdline_parse_inst_t cmd_clear_input_set = {
14342 .f = cmd_clear_input_set_parsed,
14344 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|"
14345 "fdir_inset|fdir_flx_inset clear all",
14347 (void *)&cmd_clear_input_set_port,
14348 (void *)&cmd_clear_input_set_cfg,
14349 (void *)&cmd_clear_input_set_port_id,
14350 (void *)&cmd_clear_input_set_pctype,
14351 (void *)&cmd_clear_input_set_pctype_id,
14352 (void *)&cmd_clear_input_set_inset_type,
14353 (void *)&cmd_clear_input_set_clear,
14354 (void *)&cmd_clear_input_set_all,
14359 /* show vf stats */
14361 /* Common result structure for show vf stats */
14362 struct cmd_show_vf_stats_result {
14363 cmdline_fixed_string_t show;
14364 cmdline_fixed_string_t vf;
14365 cmdline_fixed_string_t stats;
14370 /* Common CLI fields show vf stats*/
14371 cmdline_parse_token_string_t cmd_show_vf_stats_show =
14372 TOKEN_STRING_INITIALIZER
14373 (struct cmd_show_vf_stats_result,
14375 cmdline_parse_token_string_t cmd_show_vf_stats_vf =
14376 TOKEN_STRING_INITIALIZER
14377 (struct cmd_show_vf_stats_result,
14379 cmdline_parse_token_string_t cmd_show_vf_stats_stats =
14380 TOKEN_STRING_INITIALIZER
14381 (struct cmd_show_vf_stats_result,
14383 cmdline_parse_token_num_t cmd_show_vf_stats_port_id =
14384 TOKEN_NUM_INITIALIZER
14385 (struct cmd_show_vf_stats_result,
14386 port_id, RTE_UINT16);
14387 cmdline_parse_token_num_t cmd_show_vf_stats_vf_id =
14388 TOKEN_NUM_INITIALIZER
14389 (struct cmd_show_vf_stats_result,
14390 vf_id, RTE_UINT16);
14393 cmd_show_vf_stats_parsed(
14394 void *parsed_result,
14395 __rte_unused struct cmdline *cl,
14396 __rte_unused void *data)
14398 struct cmd_show_vf_stats_result *res = parsed_result;
14399 struct rte_eth_stats stats;
14400 int ret = -ENOTSUP;
14401 static const char *nic_stats_border = "########################";
14403 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14406 memset(&stats, 0, sizeof(stats));
14408 #ifdef RTE_NET_I40E
14409 if (ret == -ENOTSUP)
14410 ret = rte_pmd_i40e_get_vf_stats(res->port_id,
14414 #ifdef RTE_NET_BNXT
14415 if (ret == -ENOTSUP)
14416 ret = rte_pmd_bnxt_get_vf_stats(res->port_id,
14425 printf("invalid vf_id %d\n", res->vf_id);
14428 printf("invalid port_id %d\n", res->port_id);
14431 printf("function not implemented\n");
14434 printf("programming error: (%s)\n", strerror(-ret));
14437 printf("\n %s NIC statistics for port %-2d vf %-2d %s\n",
14438 nic_stats_border, res->port_id, res->vf_id, nic_stats_border);
14440 printf(" RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes: "
14442 stats.ipackets, stats.imissed, stats.ibytes);
14443 printf(" RX-errors: %-"PRIu64"\n", stats.ierrors);
14444 printf(" RX-nombuf: %-10"PRIu64"\n",
14446 printf(" TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes: "
14448 stats.opackets, stats.oerrors, stats.obytes);
14450 printf(" %s############################%s\n",
14451 nic_stats_border, nic_stats_border);
14454 cmdline_parse_inst_t cmd_show_vf_stats = {
14455 .f = cmd_show_vf_stats_parsed,
14457 .help_str = "show vf stats <port_id> <vf_id>",
14459 (void *)&cmd_show_vf_stats_show,
14460 (void *)&cmd_show_vf_stats_vf,
14461 (void *)&cmd_show_vf_stats_stats,
14462 (void *)&cmd_show_vf_stats_port_id,
14463 (void *)&cmd_show_vf_stats_vf_id,
14468 /* clear vf stats */
14470 /* Common result structure for clear vf stats */
14471 struct cmd_clear_vf_stats_result {
14472 cmdline_fixed_string_t clear;
14473 cmdline_fixed_string_t vf;
14474 cmdline_fixed_string_t stats;
14479 /* Common CLI fields clear vf stats*/
14480 cmdline_parse_token_string_t cmd_clear_vf_stats_clear =
14481 TOKEN_STRING_INITIALIZER
14482 (struct cmd_clear_vf_stats_result,
14484 cmdline_parse_token_string_t cmd_clear_vf_stats_vf =
14485 TOKEN_STRING_INITIALIZER
14486 (struct cmd_clear_vf_stats_result,
14488 cmdline_parse_token_string_t cmd_clear_vf_stats_stats =
14489 TOKEN_STRING_INITIALIZER
14490 (struct cmd_clear_vf_stats_result,
14492 cmdline_parse_token_num_t cmd_clear_vf_stats_port_id =
14493 TOKEN_NUM_INITIALIZER
14494 (struct cmd_clear_vf_stats_result,
14495 port_id, RTE_UINT16);
14496 cmdline_parse_token_num_t cmd_clear_vf_stats_vf_id =
14497 TOKEN_NUM_INITIALIZER
14498 (struct cmd_clear_vf_stats_result,
14499 vf_id, RTE_UINT16);
14502 cmd_clear_vf_stats_parsed(
14503 void *parsed_result,
14504 __rte_unused struct cmdline *cl,
14505 __rte_unused void *data)
14507 struct cmd_clear_vf_stats_result *res = parsed_result;
14508 int ret = -ENOTSUP;
14510 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14513 #ifdef RTE_NET_I40E
14514 if (ret == -ENOTSUP)
14515 ret = rte_pmd_i40e_reset_vf_stats(res->port_id,
14518 #ifdef RTE_NET_BNXT
14519 if (ret == -ENOTSUP)
14520 ret = rte_pmd_bnxt_reset_vf_stats(res->port_id,
14528 printf("invalid vf_id %d\n", res->vf_id);
14531 printf("invalid port_id %d\n", res->port_id);
14534 printf("function not implemented\n");
14537 printf("programming error: (%s)\n", strerror(-ret));
14541 cmdline_parse_inst_t cmd_clear_vf_stats = {
14542 .f = cmd_clear_vf_stats_parsed,
14544 .help_str = "clear vf stats <port_id> <vf_id>",
14546 (void *)&cmd_clear_vf_stats_clear,
14547 (void *)&cmd_clear_vf_stats_vf,
14548 (void *)&cmd_clear_vf_stats_stats,
14549 (void *)&cmd_clear_vf_stats_port_id,
14550 (void *)&cmd_clear_vf_stats_vf_id,
14555 /* port config pctype mapping reset */
14557 /* Common result structure for port config pctype mapping reset */
14558 struct cmd_pctype_mapping_reset_result {
14559 cmdline_fixed_string_t port;
14560 cmdline_fixed_string_t config;
14562 cmdline_fixed_string_t pctype;
14563 cmdline_fixed_string_t mapping;
14564 cmdline_fixed_string_t reset;
14567 /* Common CLI fields for port config pctype mapping reset*/
14568 cmdline_parse_token_string_t cmd_pctype_mapping_reset_port =
14569 TOKEN_STRING_INITIALIZER
14570 (struct cmd_pctype_mapping_reset_result,
14572 cmdline_parse_token_string_t cmd_pctype_mapping_reset_config =
14573 TOKEN_STRING_INITIALIZER
14574 (struct cmd_pctype_mapping_reset_result,
14576 cmdline_parse_token_num_t cmd_pctype_mapping_reset_port_id =
14577 TOKEN_NUM_INITIALIZER
14578 (struct cmd_pctype_mapping_reset_result,
14579 port_id, RTE_UINT16);
14580 cmdline_parse_token_string_t cmd_pctype_mapping_reset_pctype =
14581 TOKEN_STRING_INITIALIZER
14582 (struct cmd_pctype_mapping_reset_result,
14584 cmdline_parse_token_string_t cmd_pctype_mapping_reset_mapping =
14585 TOKEN_STRING_INITIALIZER
14586 (struct cmd_pctype_mapping_reset_result,
14587 mapping, "mapping");
14588 cmdline_parse_token_string_t cmd_pctype_mapping_reset_reset =
14589 TOKEN_STRING_INITIALIZER
14590 (struct cmd_pctype_mapping_reset_result,
14594 cmd_pctype_mapping_reset_parsed(
14595 void *parsed_result,
14596 __rte_unused struct cmdline *cl,
14597 __rte_unused void *data)
14599 struct cmd_pctype_mapping_reset_result *res = parsed_result;
14600 int ret = -ENOTSUP;
14602 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14605 #ifdef RTE_NET_I40E
14606 ret = rte_pmd_i40e_flow_type_mapping_reset(res->port_id);
14613 printf("invalid port_id %d\n", res->port_id);
14616 printf("function not implemented\n");
14619 printf("programming error: (%s)\n", strerror(-ret));
14623 cmdline_parse_inst_t cmd_pctype_mapping_reset = {
14624 .f = cmd_pctype_mapping_reset_parsed,
14626 .help_str = "port config <port_id> pctype mapping reset",
14628 (void *)&cmd_pctype_mapping_reset_port,
14629 (void *)&cmd_pctype_mapping_reset_config,
14630 (void *)&cmd_pctype_mapping_reset_port_id,
14631 (void *)&cmd_pctype_mapping_reset_pctype,
14632 (void *)&cmd_pctype_mapping_reset_mapping,
14633 (void *)&cmd_pctype_mapping_reset_reset,
14638 /* show port pctype mapping */
14640 /* Common result structure for show port pctype mapping */
14641 struct cmd_pctype_mapping_get_result {
14642 cmdline_fixed_string_t show;
14643 cmdline_fixed_string_t port;
14645 cmdline_fixed_string_t pctype;
14646 cmdline_fixed_string_t mapping;
14649 /* Common CLI fields for pctype mapping get */
14650 cmdline_parse_token_string_t cmd_pctype_mapping_get_show =
14651 TOKEN_STRING_INITIALIZER
14652 (struct cmd_pctype_mapping_get_result,
14654 cmdline_parse_token_string_t cmd_pctype_mapping_get_port =
14655 TOKEN_STRING_INITIALIZER
14656 (struct cmd_pctype_mapping_get_result,
14658 cmdline_parse_token_num_t cmd_pctype_mapping_get_port_id =
14659 TOKEN_NUM_INITIALIZER
14660 (struct cmd_pctype_mapping_get_result,
14661 port_id, RTE_UINT16);
14662 cmdline_parse_token_string_t cmd_pctype_mapping_get_pctype =
14663 TOKEN_STRING_INITIALIZER
14664 (struct cmd_pctype_mapping_get_result,
14666 cmdline_parse_token_string_t cmd_pctype_mapping_get_mapping =
14667 TOKEN_STRING_INITIALIZER
14668 (struct cmd_pctype_mapping_get_result,
14669 mapping, "mapping");
14672 cmd_pctype_mapping_get_parsed(
14673 void *parsed_result,
14674 __rte_unused struct cmdline *cl,
14675 __rte_unused void *data)
14677 struct cmd_pctype_mapping_get_result *res = parsed_result;
14678 int ret = -ENOTSUP;
14679 #ifdef RTE_NET_I40E
14680 struct rte_pmd_i40e_flow_type_mapping
14681 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX];
14682 int i, j, first_pctype;
14685 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14688 #ifdef RTE_NET_I40E
14689 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id, mapping);
14696 printf("invalid port_id %d\n", res->port_id);
14699 printf("function not implemented\n");
14702 printf("programming error: (%s)\n", strerror(-ret));
14706 #ifdef RTE_NET_I40E
14707 for (i = 0; i < RTE_PMD_I40E_FLOW_TYPE_MAX; i++) {
14708 if (mapping[i].pctype != 0ULL) {
14711 printf("pctype: ");
14712 for (j = 0; j < RTE_PMD_I40E_PCTYPE_MAX; j++) {
14713 if (mapping[i].pctype & (1ULL << j)) {
14714 printf(first_pctype ?
14715 "%02d" : ",%02d", j);
14719 printf(" -> flowtype: %02d\n", mapping[i].flow_type);
14725 cmdline_parse_inst_t cmd_pctype_mapping_get = {
14726 .f = cmd_pctype_mapping_get_parsed,
14728 .help_str = "show port <port_id> pctype mapping",
14730 (void *)&cmd_pctype_mapping_get_show,
14731 (void *)&cmd_pctype_mapping_get_port,
14732 (void *)&cmd_pctype_mapping_get_port_id,
14733 (void *)&cmd_pctype_mapping_get_pctype,
14734 (void *)&cmd_pctype_mapping_get_mapping,
14739 /* port config pctype mapping update */
14741 /* Common result structure for port config pctype mapping update */
14742 struct cmd_pctype_mapping_update_result {
14743 cmdline_fixed_string_t port;
14744 cmdline_fixed_string_t config;
14746 cmdline_fixed_string_t pctype;
14747 cmdline_fixed_string_t mapping;
14748 cmdline_fixed_string_t update;
14749 cmdline_fixed_string_t pctype_list;
14750 uint16_t flow_type;
14753 /* Common CLI fields for pctype mapping update*/
14754 cmdline_parse_token_string_t cmd_pctype_mapping_update_port =
14755 TOKEN_STRING_INITIALIZER
14756 (struct cmd_pctype_mapping_update_result,
14758 cmdline_parse_token_string_t cmd_pctype_mapping_update_config =
14759 TOKEN_STRING_INITIALIZER
14760 (struct cmd_pctype_mapping_update_result,
14762 cmdline_parse_token_num_t cmd_pctype_mapping_update_port_id =
14763 TOKEN_NUM_INITIALIZER
14764 (struct cmd_pctype_mapping_update_result,
14765 port_id, RTE_UINT16);
14766 cmdline_parse_token_string_t cmd_pctype_mapping_update_pctype =
14767 TOKEN_STRING_INITIALIZER
14768 (struct cmd_pctype_mapping_update_result,
14770 cmdline_parse_token_string_t cmd_pctype_mapping_update_mapping =
14771 TOKEN_STRING_INITIALIZER
14772 (struct cmd_pctype_mapping_update_result,
14773 mapping, "mapping");
14774 cmdline_parse_token_string_t cmd_pctype_mapping_update_update =
14775 TOKEN_STRING_INITIALIZER
14776 (struct cmd_pctype_mapping_update_result,
14778 cmdline_parse_token_string_t cmd_pctype_mapping_update_pc_type =
14779 TOKEN_STRING_INITIALIZER
14780 (struct cmd_pctype_mapping_update_result,
14781 pctype_list, NULL);
14782 cmdline_parse_token_num_t cmd_pctype_mapping_update_flow_type =
14783 TOKEN_NUM_INITIALIZER
14784 (struct cmd_pctype_mapping_update_result,
14785 flow_type, RTE_UINT16);
14788 cmd_pctype_mapping_update_parsed(
14789 void *parsed_result,
14790 __rte_unused struct cmdline *cl,
14791 __rte_unused void *data)
14793 struct cmd_pctype_mapping_update_result *res = parsed_result;
14794 int ret = -ENOTSUP;
14795 #ifdef RTE_NET_I40E
14796 struct rte_pmd_i40e_flow_type_mapping mapping;
14798 unsigned int nb_item;
14799 unsigned int pctype_list[RTE_PMD_I40E_PCTYPE_MAX];
14802 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14805 #ifdef RTE_NET_I40E
14806 nb_item = parse_item_list(res->pctype_list, "pctypes",
14807 RTE_PMD_I40E_PCTYPE_MAX, pctype_list, 1);
14808 mapping.flow_type = res->flow_type;
14809 for (i = 0, mapping.pctype = 0ULL; i < nb_item; i++)
14810 mapping.pctype |= (1ULL << pctype_list[i]);
14811 ret = rte_pmd_i40e_flow_type_mapping_update(res->port_id,
14821 printf("invalid pctype or flow type\n");
14824 printf("invalid port_id %d\n", res->port_id);
14827 printf("function not implemented\n");
14830 printf("programming error: (%s)\n", strerror(-ret));
14834 cmdline_parse_inst_t cmd_pctype_mapping_update = {
14835 .f = cmd_pctype_mapping_update_parsed,
14837 .help_str = "port config <port_id> pctype mapping update"
14838 " <pctype_id_0,[pctype_id_1]*> <flowtype_id>",
14840 (void *)&cmd_pctype_mapping_update_port,
14841 (void *)&cmd_pctype_mapping_update_config,
14842 (void *)&cmd_pctype_mapping_update_port_id,
14843 (void *)&cmd_pctype_mapping_update_pctype,
14844 (void *)&cmd_pctype_mapping_update_mapping,
14845 (void *)&cmd_pctype_mapping_update_update,
14846 (void *)&cmd_pctype_mapping_update_pc_type,
14847 (void *)&cmd_pctype_mapping_update_flow_type,
14852 /* ptype mapping get */
14854 /* Common result structure for ptype mapping get */
14855 struct cmd_ptype_mapping_get_result {
14856 cmdline_fixed_string_t ptype;
14857 cmdline_fixed_string_t mapping;
14858 cmdline_fixed_string_t get;
14860 uint8_t valid_only;
14863 /* Common CLI fields for ptype mapping get */
14864 cmdline_parse_token_string_t cmd_ptype_mapping_get_ptype =
14865 TOKEN_STRING_INITIALIZER
14866 (struct cmd_ptype_mapping_get_result,
14868 cmdline_parse_token_string_t cmd_ptype_mapping_get_mapping =
14869 TOKEN_STRING_INITIALIZER
14870 (struct cmd_ptype_mapping_get_result,
14871 mapping, "mapping");
14872 cmdline_parse_token_string_t cmd_ptype_mapping_get_get =
14873 TOKEN_STRING_INITIALIZER
14874 (struct cmd_ptype_mapping_get_result,
14876 cmdline_parse_token_num_t cmd_ptype_mapping_get_port_id =
14877 TOKEN_NUM_INITIALIZER
14878 (struct cmd_ptype_mapping_get_result,
14879 port_id, RTE_UINT16);
14880 cmdline_parse_token_num_t cmd_ptype_mapping_get_valid_only =
14881 TOKEN_NUM_INITIALIZER
14882 (struct cmd_ptype_mapping_get_result,
14883 valid_only, RTE_UINT8);
14886 cmd_ptype_mapping_get_parsed(
14887 void *parsed_result,
14888 __rte_unused struct cmdline *cl,
14889 __rte_unused void *data)
14891 struct cmd_ptype_mapping_get_result *res = parsed_result;
14892 int ret = -ENOTSUP;
14893 #ifdef RTE_NET_I40E
14894 int max_ptype_num = 256;
14895 struct rte_pmd_i40e_ptype_mapping mapping[max_ptype_num];
14900 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14903 #ifdef RTE_NET_I40E
14904 ret = rte_pmd_i40e_ptype_mapping_get(res->port_id,
14915 printf("invalid port_id %d\n", res->port_id);
14918 printf("function not implemented\n");
14921 printf("programming error: (%s)\n", strerror(-ret));
14924 #ifdef RTE_NET_I40E
14926 for (i = 0; i < count; i++)
14927 printf("%3d\t0x%08x\n",
14928 mapping[i].hw_ptype, mapping[i].sw_ptype);
14933 cmdline_parse_inst_t cmd_ptype_mapping_get = {
14934 .f = cmd_ptype_mapping_get_parsed,
14936 .help_str = "ptype mapping get <port_id> <valid_only>",
14938 (void *)&cmd_ptype_mapping_get_ptype,
14939 (void *)&cmd_ptype_mapping_get_mapping,
14940 (void *)&cmd_ptype_mapping_get_get,
14941 (void *)&cmd_ptype_mapping_get_port_id,
14942 (void *)&cmd_ptype_mapping_get_valid_only,
14947 /* ptype mapping replace */
14949 /* Common result structure for ptype mapping replace */
14950 struct cmd_ptype_mapping_replace_result {
14951 cmdline_fixed_string_t ptype;
14952 cmdline_fixed_string_t mapping;
14953 cmdline_fixed_string_t replace;
14960 /* Common CLI fields for ptype mapping replace */
14961 cmdline_parse_token_string_t cmd_ptype_mapping_replace_ptype =
14962 TOKEN_STRING_INITIALIZER
14963 (struct cmd_ptype_mapping_replace_result,
14965 cmdline_parse_token_string_t cmd_ptype_mapping_replace_mapping =
14966 TOKEN_STRING_INITIALIZER
14967 (struct cmd_ptype_mapping_replace_result,
14968 mapping, "mapping");
14969 cmdline_parse_token_string_t cmd_ptype_mapping_replace_replace =
14970 TOKEN_STRING_INITIALIZER
14971 (struct cmd_ptype_mapping_replace_result,
14972 replace, "replace");
14973 cmdline_parse_token_num_t cmd_ptype_mapping_replace_port_id =
14974 TOKEN_NUM_INITIALIZER
14975 (struct cmd_ptype_mapping_replace_result,
14976 port_id, RTE_UINT16);
14977 cmdline_parse_token_num_t cmd_ptype_mapping_replace_target =
14978 TOKEN_NUM_INITIALIZER
14979 (struct cmd_ptype_mapping_replace_result,
14980 target, RTE_UINT32);
14981 cmdline_parse_token_num_t cmd_ptype_mapping_replace_mask =
14982 TOKEN_NUM_INITIALIZER
14983 (struct cmd_ptype_mapping_replace_result,
14985 cmdline_parse_token_num_t cmd_ptype_mapping_replace_pkt_type =
14986 TOKEN_NUM_INITIALIZER
14987 (struct cmd_ptype_mapping_replace_result,
14988 pkt_type, RTE_UINT32);
14991 cmd_ptype_mapping_replace_parsed(
14992 void *parsed_result,
14993 __rte_unused struct cmdline *cl,
14994 __rte_unused void *data)
14996 struct cmd_ptype_mapping_replace_result *res = parsed_result;
14997 int ret = -ENOTSUP;
14999 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15002 #ifdef RTE_NET_I40E
15003 ret = rte_pmd_i40e_ptype_mapping_replace(res->port_id,
15013 printf("invalid ptype 0x%8x or 0x%8x\n",
15014 res->target, res->pkt_type);
15017 printf("invalid port_id %d\n", res->port_id);
15020 printf("function not implemented\n");
15023 printf("programming error: (%s)\n", strerror(-ret));
15027 cmdline_parse_inst_t cmd_ptype_mapping_replace = {
15028 .f = cmd_ptype_mapping_replace_parsed,
15031 "ptype mapping replace <port_id> <target> <mask> <pkt_type>",
15033 (void *)&cmd_ptype_mapping_replace_ptype,
15034 (void *)&cmd_ptype_mapping_replace_mapping,
15035 (void *)&cmd_ptype_mapping_replace_replace,
15036 (void *)&cmd_ptype_mapping_replace_port_id,
15037 (void *)&cmd_ptype_mapping_replace_target,
15038 (void *)&cmd_ptype_mapping_replace_mask,
15039 (void *)&cmd_ptype_mapping_replace_pkt_type,
15044 /* ptype mapping reset */
15046 /* Common result structure for ptype mapping reset */
15047 struct cmd_ptype_mapping_reset_result {
15048 cmdline_fixed_string_t ptype;
15049 cmdline_fixed_string_t mapping;
15050 cmdline_fixed_string_t reset;
15054 /* Common CLI fields for ptype mapping reset*/
15055 cmdline_parse_token_string_t cmd_ptype_mapping_reset_ptype =
15056 TOKEN_STRING_INITIALIZER
15057 (struct cmd_ptype_mapping_reset_result,
15059 cmdline_parse_token_string_t cmd_ptype_mapping_reset_mapping =
15060 TOKEN_STRING_INITIALIZER
15061 (struct cmd_ptype_mapping_reset_result,
15062 mapping, "mapping");
15063 cmdline_parse_token_string_t cmd_ptype_mapping_reset_reset =
15064 TOKEN_STRING_INITIALIZER
15065 (struct cmd_ptype_mapping_reset_result,
15067 cmdline_parse_token_num_t cmd_ptype_mapping_reset_port_id =
15068 TOKEN_NUM_INITIALIZER
15069 (struct cmd_ptype_mapping_reset_result,
15070 port_id, RTE_UINT16);
15073 cmd_ptype_mapping_reset_parsed(
15074 void *parsed_result,
15075 __rte_unused struct cmdline *cl,
15076 __rte_unused void *data)
15078 struct cmd_ptype_mapping_reset_result *res = parsed_result;
15079 int ret = -ENOTSUP;
15081 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15084 #ifdef RTE_NET_I40E
15085 ret = rte_pmd_i40e_ptype_mapping_reset(res->port_id);
15092 printf("invalid port_id %d\n", res->port_id);
15095 printf("function not implemented\n");
15098 printf("programming error: (%s)\n", strerror(-ret));
15102 cmdline_parse_inst_t cmd_ptype_mapping_reset = {
15103 .f = cmd_ptype_mapping_reset_parsed,
15105 .help_str = "ptype mapping reset <port_id>",
15107 (void *)&cmd_ptype_mapping_reset_ptype,
15108 (void *)&cmd_ptype_mapping_reset_mapping,
15109 (void *)&cmd_ptype_mapping_reset_reset,
15110 (void *)&cmd_ptype_mapping_reset_port_id,
15115 /* ptype mapping update */
15117 /* Common result structure for ptype mapping update */
15118 struct cmd_ptype_mapping_update_result {
15119 cmdline_fixed_string_t ptype;
15120 cmdline_fixed_string_t mapping;
15121 cmdline_fixed_string_t reset;
15127 /* Common CLI fields for ptype mapping update*/
15128 cmdline_parse_token_string_t cmd_ptype_mapping_update_ptype =
15129 TOKEN_STRING_INITIALIZER
15130 (struct cmd_ptype_mapping_update_result,
15132 cmdline_parse_token_string_t cmd_ptype_mapping_update_mapping =
15133 TOKEN_STRING_INITIALIZER
15134 (struct cmd_ptype_mapping_update_result,
15135 mapping, "mapping");
15136 cmdline_parse_token_string_t cmd_ptype_mapping_update_update =
15137 TOKEN_STRING_INITIALIZER
15138 (struct cmd_ptype_mapping_update_result,
15140 cmdline_parse_token_num_t cmd_ptype_mapping_update_port_id =
15141 TOKEN_NUM_INITIALIZER
15142 (struct cmd_ptype_mapping_update_result,
15143 port_id, RTE_UINT16);
15144 cmdline_parse_token_num_t cmd_ptype_mapping_update_hw_ptype =
15145 TOKEN_NUM_INITIALIZER
15146 (struct cmd_ptype_mapping_update_result,
15147 hw_ptype, RTE_UINT8);
15148 cmdline_parse_token_num_t cmd_ptype_mapping_update_sw_ptype =
15149 TOKEN_NUM_INITIALIZER
15150 (struct cmd_ptype_mapping_update_result,
15151 sw_ptype, RTE_UINT32);
15154 cmd_ptype_mapping_update_parsed(
15155 void *parsed_result,
15156 __rte_unused struct cmdline *cl,
15157 __rte_unused void *data)
15159 struct cmd_ptype_mapping_update_result *res = parsed_result;
15160 int ret = -ENOTSUP;
15161 #ifdef RTE_NET_I40E
15162 struct rte_pmd_i40e_ptype_mapping mapping;
15164 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15167 #ifdef RTE_NET_I40E
15168 mapping.hw_ptype = res->hw_ptype;
15169 mapping.sw_ptype = res->sw_ptype;
15170 ret = rte_pmd_i40e_ptype_mapping_update(res->port_id,
15180 printf("invalid ptype 0x%8x\n", res->sw_ptype);
15183 printf("invalid port_id %d\n", res->port_id);
15186 printf("function not implemented\n");
15189 printf("programming error: (%s)\n", strerror(-ret));
15193 cmdline_parse_inst_t cmd_ptype_mapping_update = {
15194 .f = cmd_ptype_mapping_update_parsed,
15196 .help_str = "ptype mapping update <port_id> <hw_ptype> <sw_ptype>",
15198 (void *)&cmd_ptype_mapping_update_ptype,
15199 (void *)&cmd_ptype_mapping_update_mapping,
15200 (void *)&cmd_ptype_mapping_update_update,
15201 (void *)&cmd_ptype_mapping_update_port_id,
15202 (void *)&cmd_ptype_mapping_update_hw_ptype,
15203 (void *)&cmd_ptype_mapping_update_sw_ptype,
15208 /* Common result structure for file commands */
15209 struct cmd_cmdfile_result {
15210 cmdline_fixed_string_t load;
15211 cmdline_fixed_string_t filename;
15214 /* Common CLI fields for file commands */
15215 cmdline_parse_token_string_t cmd_load_cmdfile =
15216 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, load, "load");
15217 cmdline_parse_token_string_t cmd_load_cmdfile_filename =
15218 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, filename, NULL);
15221 cmd_load_from_file_parsed(
15222 void *parsed_result,
15223 __rte_unused struct cmdline *cl,
15224 __rte_unused void *data)
15226 struct cmd_cmdfile_result *res = parsed_result;
15228 cmdline_read_from_file(res->filename);
15231 cmdline_parse_inst_t cmd_load_from_file = {
15232 .f = cmd_load_from_file_parsed,
15234 .help_str = "load <filename>",
15236 (void *)&cmd_load_cmdfile,
15237 (void *)&cmd_load_cmdfile_filename,
15242 /* Get Rx offloads capabilities */
15243 struct cmd_rx_offload_get_capa_result {
15244 cmdline_fixed_string_t show;
15245 cmdline_fixed_string_t port;
15247 cmdline_fixed_string_t rx_offload;
15248 cmdline_fixed_string_t capabilities;
15251 cmdline_parse_token_string_t cmd_rx_offload_get_capa_show =
15252 TOKEN_STRING_INITIALIZER
15253 (struct cmd_rx_offload_get_capa_result,
15255 cmdline_parse_token_string_t cmd_rx_offload_get_capa_port =
15256 TOKEN_STRING_INITIALIZER
15257 (struct cmd_rx_offload_get_capa_result,
15259 cmdline_parse_token_num_t cmd_rx_offload_get_capa_port_id =
15260 TOKEN_NUM_INITIALIZER
15261 (struct cmd_rx_offload_get_capa_result,
15262 port_id, RTE_UINT16);
15263 cmdline_parse_token_string_t cmd_rx_offload_get_capa_rx_offload =
15264 TOKEN_STRING_INITIALIZER
15265 (struct cmd_rx_offload_get_capa_result,
15266 rx_offload, "rx_offload");
15267 cmdline_parse_token_string_t cmd_rx_offload_get_capa_capabilities =
15268 TOKEN_STRING_INITIALIZER
15269 (struct cmd_rx_offload_get_capa_result,
15270 capabilities, "capabilities");
15273 print_rx_offloads(uint64_t offloads)
15275 uint64_t single_offload;
15283 begin = __builtin_ctzll(offloads);
15284 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads);
15286 single_offload = 1ULL << begin;
15287 for (bit = begin; bit < end; bit++) {
15288 if (offloads & single_offload)
15290 rte_eth_dev_rx_offload_name(single_offload));
15291 single_offload <<= 1;
15296 cmd_rx_offload_get_capa_parsed(
15297 void *parsed_result,
15298 __rte_unused struct cmdline *cl,
15299 __rte_unused void *data)
15301 struct cmd_rx_offload_get_capa_result *res = parsed_result;
15302 struct rte_eth_dev_info dev_info;
15303 portid_t port_id = res->port_id;
15304 uint64_t queue_offloads;
15305 uint64_t port_offloads;
15308 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15312 queue_offloads = dev_info.rx_queue_offload_capa;
15313 port_offloads = dev_info.rx_offload_capa ^ queue_offloads;
15315 printf("Rx Offloading Capabilities of port %d :\n", port_id);
15316 printf(" Per Queue :");
15317 print_rx_offloads(queue_offloads);
15320 printf(" Per Port :");
15321 print_rx_offloads(port_offloads);
15325 cmdline_parse_inst_t cmd_rx_offload_get_capa = {
15326 .f = cmd_rx_offload_get_capa_parsed,
15328 .help_str = "show port <port_id> rx_offload capabilities",
15330 (void *)&cmd_rx_offload_get_capa_show,
15331 (void *)&cmd_rx_offload_get_capa_port,
15332 (void *)&cmd_rx_offload_get_capa_port_id,
15333 (void *)&cmd_rx_offload_get_capa_rx_offload,
15334 (void *)&cmd_rx_offload_get_capa_capabilities,
15339 /* Get Rx offloads configuration */
15340 struct cmd_rx_offload_get_configuration_result {
15341 cmdline_fixed_string_t show;
15342 cmdline_fixed_string_t port;
15344 cmdline_fixed_string_t rx_offload;
15345 cmdline_fixed_string_t configuration;
15348 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_show =
15349 TOKEN_STRING_INITIALIZER
15350 (struct cmd_rx_offload_get_configuration_result,
15352 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_port =
15353 TOKEN_STRING_INITIALIZER
15354 (struct cmd_rx_offload_get_configuration_result,
15356 cmdline_parse_token_num_t cmd_rx_offload_get_configuration_port_id =
15357 TOKEN_NUM_INITIALIZER
15358 (struct cmd_rx_offload_get_configuration_result,
15359 port_id, RTE_UINT16);
15360 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_rx_offload =
15361 TOKEN_STRING_INITIALIZER
15362 (struct cmd_rx_offload_get_configuration_result,
15363 rx_offload, "rx_offload");
15364 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_configuration =
15365 TOKEN_STRING_INITIALIZER
15366 (struct cmd_rx_offload_get_configuration_result,
15367 configuration, "configuration");
15370 cmd_rx_offload_get_configuration_parsed(
15371 void *parsed_result,
15372 __rte_unused struct cmdline *cl,
15373 __rte_unused void *data)
15375 struct cmd_rx_offload_get_configuration_result *res = parsed_result;
15376 struct rte_eth_dev_info dev_info;
15377 portid_t port_id = res->port_id;
15378 struct rte_port *port = &ports[port_id];
15379 uint64_t port_offloads;
15380 uint64_t queue_offloads;
15381 uint16_t nb_rx_queues;
15385 printf("Rx Offloading Configuration of port %d :\n", port_id);
15387 port_offloads = port->dev_conf.rxmode.offloads;
15389 print_rx_offloads(port_offloads);
15392 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15396 nb_rx_queues = dev_info.nb_rx_queues;
15397 for (q = 0; q < nb_rx_queues; q++) {
15398 queue_offloads = port->rx_conf[q].offloads;
15399 printf(" Queue[%2d] :", q);
15400 print_rx_offloads(queue_offloads);
15406 cmdline_parse_inst_t cmd_rx_offload_get_configuration = {
15407 .f = cmd_rx_offload_get_configuration_parsed,
15409 .help_str = "show port <port_id> rx_offload configuration",
15411 (void *)&cmd_rx_offload_get_configuration_show,
15412 (void *)&cmd_rx_offload_get_configuration_port,
15413 (void *)&cmd_rx_offload_get_configuration_port_id,
15414 (void *)&cmd_rx_offload_get_configuration_rx_offload,
15415 (void *)&cmd_rx_offload_get_configuration_configuration,
15420 /* Enable/Disable a per port offloading */
15421 struct cmd_config_per_port_rx_offload_result {
15422 cmdline_fixed_string_t port;
15423 cmdline_fixed_string_t config;
15425 cmdline_fixed_string_t rx_offload;
15426 cmdline_fixed_string_t offload;
15427 cmdline_fixed_string_t on_off;
15430 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_port =
15431 TOKEN_STRING_INITIALIZER
15432 (struct cmd_config_per_port_rx_offload_result,
15434 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_config =
15435 TOKEN_STRING_INITIALIZER
15436 (struct cmd_config_per_port_rx_offload_result,
15438 cmdline_parse_token_num_t cmd_config_per_port_rx_offload_result_port_id =
15439 TOKEN_NUM_INITIALIZER
15440 (struct cmd_config_per_port_rx_offload_result,
15441 port_id, RTE_UINT16);
15442 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_rx_offload =
15443 TOKEN_STRING_INITIALIZER
15444 (struct cmd_config_per_port_rx_offload_result,
15445 rx_offload, "rx_offload");
15446 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_offload =
15447 TOKEN_STRING_INITIALIZER
15448 (struct cmd_config_per_port_rx_offload_result,
15449 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#"
15450 "qinq_strip#outer_ipv4_cksum#macsec_strip#"
15451 "header_split#vlan_filter#vlan_extend#jumbo_frame#"
15452 "scatter#buffer_split#timestamp#security#"
15453 "keep_crc#rss_hash");
15454 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_on_off =
15455 TOKEN_STRING_INITIALIZER
15456 (struct cmd_config_per_port_rx_offload_result,
15460 search_rx_offload(const char *name)
15462 uint64_t single_offload;
15463 const char *single_name;
15467 single_offload = 1;
15468 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) {
15469 single_name = rte_eth_dev_rx_offload_name(single_offload);
15470 if (!strcasecmp(single_name, name)) {
15474 single_offload <<= 1;
15478 return single_offload;
15484 cmd_config_per_port_rx_offload_parsed(void *parsed_result,
15485 __rte_unused struct cmdline *cl,
15486 __rte_unused void *data)
15488 struct cmd_config_per_port_rx_offload_result *res = parsed_result;
15489 portid_t port_id = res->port_id;
15490 struct rte_eth_dev_info dev_info;
15491 struct rte_port *port = &ports[port_id];
15492 uint64_t single_offload;
15493 uint16_t nb_rx_queues;
15497 if (port->port_status != RTE_PORT_STOPPED) {
15498 printf("Error: Can't config offload when Port %d "
15499 "is not stopped\n", port_id);
15503 single_offload = search_rx_offload(res->offload);
15504 if (single_offload == 0) {
15505 printf("Unknown offload name: %s\n", res->offload);
15509 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15513 nb_rx_queues = dev_info.nb_rx_queues;
15514 if (!strcmp(res->on_off, "on")) {
15515 port->dev_conf.rxmode.offloads |= single_offload;
15516 for (q = 0; q < nb_rx_queues; q++)
15517 port->rx_conf[q].offloads |= single_offload;
15519 port->dev_conf.rxmode.offloads &= ~single_offload;
15520 for (q = 0; q < nb_rx_queues; q++)
15521 port->rx_conf[q].offloads &= ~single_offload;
15524 cmd_reconfig_device_queue(port_id, 1, 1);
15527 cmdline_parse_inst_t cmd_config_per_port_rx_offload = {
15528 .f = cmd_config_per_port_rx_offload_parsed,
15530 .help_str = "port config <port_id> rx_offload vlan_strip|ipv4_cksum|"
15531 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|"
15532 "macsec_strip|header_split|vlan_filter|vlan_extend|"
15533 "jumbo_frame|scatter|buffer_split|timestamp|security|"
15534 "keep_crc|rss_hash on|off",
15536 (void *)&cmd_config_per_port_rx_offload_result_port,
15537 (void *)&cmd_config_per_port_rx_offload_result_config,
15538 (void *)&cmd_config_per_port_rx_offload_result_port_id,
15539 (void *)&cmd_config_per_port_rx_offload_result_rx_offload,
15540 (void *)&cmd_config_per_port_rx_offload_result_offload,
15541 (void *)&cmd_config_per_port_rx_offload_result_on_off,
15546 /* Enable/Disable a per queue offloading */
15547 struct cmd_config_per_queue_rx_offload_result {
15548 cmdline_fixed_string_t port;
15550 cmdline_fixed_string_t rxq;
15552 cmdline_fixed_string_t rx_offload;
15553 cmdline_fixed_string_t offload;
15554 cmdline_fixed_string_t on_off;
15557 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_port =
15558 TOKEN_STRING_INITIALIZER
15559 (struct cmd_config_per_queue_rx_offload_result,
15561 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_port_id =
15562 TOKEN_NUM_INITIALIZER
15563 (struct cmd_config_per_queue_rx_offload_result,
15564 port_id, RTE_UINT16);
15565 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxq =
15566 TOKEN_STRING_INITIALIZER
15567 (struct cmd_config_per_queue_rx_offload_result,
15569 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_queue_id =
15570 TOKEN_NUM_INITIALIZER
15571 (struct cmd_config_per_queue_rx_offload_result,
15572 queue_id, RTE_UINT16);
15573 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxoffload =
15574 TOKEN_STRING_INITIALIZER
15575 (struct cmd_config_per_queue_rx_offload_result,
15576 rx_offload, "rx_offload");
15577 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_offload =
15578 TOKEN_STRING_INITIALIZER
15579 (struct cmd_config_per_queue_rx_offload_result,
15580 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#"
15581 "qinq_strip#outer_ipv4_cksum#macsec_strip#"
15582 "header_split#vlan_filter#vlan_extend#jumbo_frame#"
15583 "scatter#buffer_split#timestamp#security#keep_crc");
15584 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_on_off =
15585 TOKEN_STRING_INITIALIZER
15586 (struct cmd_config_per_queue_rx_offload_result,
15590 cmd_config_per_queue_rx_offload_parsed(void *parsed_result,
15591 __rte_unused struct cmdline *cl,
15592 __rte_unused void *data)
15594 struct cmd_config_per_queue_rx_offload_result *res = parsed_result;
15595 struct rte_eth_dev_info dev_info;
15596 portid_t port_id = res->port_id;
15597 uint16_t queue_id = res->queue_id;
15598 struct rte_port *port = &ports[port_id];
15599 uint64_t single_offload;
15602 if (port->port_status != RTE_PORT_STOPPED) {
15603 printf("Error: Can't config offload when Port %d "
15604 "is not stopped\n", port_id);
15608 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15612 if (queue_id >= dev_info.nb_rx_queues) {
15613 printf("Error: input queue_id should be 0 ... "
15614 "%d\n", dev_info.nb_rx_queues - 1);
15618 single_offload = search_rx_offload(res->offload);
15619 if (single_offload == 0) {
15620 printf("Unknown offload name: %s\n", res->offload);
15624 if (!strcmp(res->on_off, "on"))
15625 port->rx_conf[queue_id].offloads |= single_offload;
15627 port->rx_conf[queue_id].offloads &= ~single_offload;
15629 cmd_reconfig_device_queue(port_id, 1, 1);
15632 cmdline_parse_inst_t cmd_config_per_queue_rx_offload = {
15633 .f = cmd_config_per_queue_rx_offload_parsed,
15635 .help_str = "port <port_id> rxq <queue_id> rx_offload "
15636 "vlan_strip|ipv4_cksum|"
15637 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|"
15638 "macsec_strip|header_split|vlan_filter|vlan_extend|"
15639 "jumbo_frame|scatter|buffer_split|timestamp|security|"
15642 (void *)&cmd_config_per_queue_rx_offload_result_port,
15643 (void *)&cmd_config_per_queue_rx_offload_result_port_id,
15644 (void *)&cmd_config_per_queue_rx_offload_result_rxq,
15645 (void *)&cmd_config_per_queue_rx_offload_result_queue_id,
15646 (void *)&cmd_config_per_queue_rx_offload_result_rxoffload,
15647 (void *)&cmd_config_per_queue_rx_offload_result_offload,
15648 (void *)&cmd_config_per_queue_rx_offload_result_on_off,
15653 /* Get Tx offloads capabilities */
15654 struct cmd_tx_offload_get_capa_result {
15655 cmdline_fixed_string_t show;
15656 cmdline_fixed_string_t port;
15658 cmdline_fixed_string_t tx_offload;
15659 cmdline_fixed_string_t capabilities;
15662 cmdline_parse_token_string_t cmd_tx_offload_get_capa_show =
15663 TOKEN_STRING_INITIALIZER
15664 (struct cmd_tx_offload_get_capa_result,
15666 cmdline_parse_token_string_t cmd_tx_offload_get_capa_port =
15667 TOKEN_STRING_INITIALIZER
15668 (struct cmd_tx_offload_get_capa_result,
15670 cmdline_parse_token_num_t cmd_tx_offload_get_capa_port_id =
15671 TOKEN_NUM_INITIALIZER
15672 (struct cmd_tx_offload_get_capa_result,
15673 port_id, RTE_UINT16);
15674 cmdline_parse_token_string_t cmd_tx_offload_get_capa_tx_offload =
15675 TOKEN_STRING_INITIALIZER
15676 (struct cmd_tx_offload_get_capa_result,
15677 tx_offload, "tx_offload");
15678 cmdline_parse_token_string_t cmd_tx_offload_get_capa_capabilities =
15679 TOKEN_STRING_INITIALIZER
15680 (struct cmd_tx_offload_get_capa_result,
15681 capabilities, "capabilities");
15684 print_tx_offloads(uint64_t offloads)
15686 uint64_t single_offload;
15694 begin = __builtin_ctzll(offloads);
15695 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads);
15697 single_offload = 1ULL << begin;
15698 for (bit = begin; bit < end; bit++) {
15699 if (offloads & single_offload)
15701 rte_eth_dev_tx_offload_name(single_offload));
15702 single_offload <<= 1;
15707 cmd_tx_offload_get_capa_parsed(
15708 void *parsed_result,
15709 __rte_unused struct cmdline *cl,
15710 __rte_unused void *data)
15712 struct cmd_tx_offload_get_capa_result *res = parsed_result;
15713 struct rte_eth_dev_info dev_info;
15714 portid_t port_id = res->port_id;
15715 uint64_t queue_offloads;
15716 uint64_t port_offloads;
15719 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15723 queue_offloads = dev_info.tx_queue_offload_capa;
15724 port_offloads = dev_info.tx_offload_capa ^ queue_offloads;
15726 printf("Tx Offloading Capabilities of port %d :\n", port_id);
15727 printf(" Per Queue :");
15728 print_tx_offloads(queue_offloads);
15731 printf(" Per Port :");
15732 print_tx_offloads(port_offloads);
15736 cmdline_parse_inst_t cmd_tx_offload_get_capa = {
15737 .f = cmd_tx_offload_get_capa_parsed,
15739 .help_str = "show port <port_id> tx_offload capabilities",
15741 (void *)&cmd_tx_offload_get_capa_show,
15742 (void *)&cmd_tx_offload_get_capa_port,
15743 (void *)&cmd_tx_offload_get_capa_port_id,
15744 (void *)&cmd_tx_offload_get_capa_tx_offload,
15745 (void *)&cmd_tx_offload_get_capa_capabilities,
15750 /* Get Tx offloads configuration */
15751 struct cmd_tx_offload_get_configuration_result {
15752 cmdline_fixed_string_t show;
15753 cmdline_fixed_string_t port;
15755 cmdline_fixed_string_t tx_offload;
15756 cmdline_fixed_string_t configuration;
15759 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_show =
15760 TOKEN_STRING_INITIALIZER
15761 (struct cmd_tx_offload_get_configuration_result,
15763 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_port =
15764 TOKEN_STRING_INITIALIZER
15765 (struct cmd_tx_offload_get_configuration_result,
15767 cmdline_parse_token_num_t cmd_tx_offload_get_configuration_port_id =
15768 TOKEN_NUM_INITIALIZER
15769 (struct cmd_tx_offload_get_configuration_result,
15770 port_id, RTE_UINT16);
15771 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_tx_offload =
15772 TOKEN_STRING_INITIALIZER
15773 (struct cmd_tx_offload_get_configuration_result,
15774 tx_offload, "tx_offload");
15775 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_configuration =
15776 TOKEN_STRING_INITIALIZER
15777 (struct cmd_tx_offload_get_configuration_result,
15778 configuration, "configuration");
15781 cmd_tx_offload_get_configuration_parsed(
15782 void *parsed_result,
15783 __rte_unused struct cmdline *cl,
15784 __rte_unused void *data)
15786 struct cmd_tx_offload_get_configuration_result *res = parsed_result;
15787 struct rte_eth_dev_info dev_info;
15788 portid_t port_id = res->port_id;
15789 struct rte_port *port = &ports[port_id];
15790 uint64_t port_offloads;
15791 uint64_t queue_offloads;
15792 uint16_t nb_tx_queues;
15796 printf("Tx Offloading Configuration of port %d :\n", port_id);
15798 port_offloads = port->dev_conf.txmode.offloads;
15800 print_tx_offloads(port_offloads);
15803 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15807 nb_tx_queues = dev_info.nb_tx_queues;
15808 for (q = 0; q < nb_tx_queues; q++) {
15809 queue_offloads = port->tx_conf[q].offloads;
15810 printf(" Queue[%2d] :", q);
15811 print_tx_offloads(queue_offloads);
15817 cmdline_parse_inst_t cmd_tx_offload_get_configuration = {
15818 .f = cmd_tx_offload_get_configuration_parsed,
15820 .help_str = "show port <port_id> tx_offload configuration",
15822 (void *)&cmd_tx_offload_get_configuration_show,
15823 (void *)&cmd_tx_offload_get_configuration_port,
15824 (void *)&cmd_tx_offload_get_configuration_port_id,
15825 (void *)&cmd_tx_offload_get_configuration_tx_offload,
15826 (void *)&cmd_tx_offload_get_configuration_configuration,
15831 /* Enable/Disable a per port offloading */
15832 struct cmd_config_per_port_tx_offload_result {
15833 cmdline_fixed_string_t port;
15834 cmdline_fixed_string_t config;
15836 cmdline_fixed_string_t tx_offload;
15837 cmdline_fixed_string_t offload;
15838 cmdline_fixed_string_t on_off;
15841 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_port =
15842 TOKEN_STRING_INITIALIZER
15843 (struct cmd_config_per_port_tx_offload_result,
15845 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_config =
15846 TOKEN_STRING_INITIALIZER
15847 (struct cmd_config_per_port_tx_offload_result,
15849 cmdline_parse_token_num_t cmd_config_per_port_tx_offload_result_port_id =
15850 TOKEN_NUM_INITIALIZER
15851 (struct cmd_config_per_port_tx_offload_result,
15852 port_id, RTE_UINT16);
15853 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_tx_offload =
15854 TOKEN_STRING_INITIALIZER
15855 (struct cmd_config_per_port_tx_offload_result,
15856 tx_offload, "tx_offload");
15857 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_offload =
15858 TOKEN_STRING_INITIALIZER
15859 (struct cmd_config_per_port_tx_offload_result,
15860 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#"
15861 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#"
15862 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#"
15863 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#"
15864 "mt_lockfree#multi_segs#mbuf_fast_free#security#"
15865 "send_on_timestamp");
15866 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_on_off =
15867 TOKEN_STRING_INITIALIZER
15868 (struct cmd_config_per_port_tx_offload_result,
15872 search_tx_offload(const char *name)
15874 uint64_t single_offload;
15875 const char *single_name;
15879 single_offload = 1;
15880 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) {
15881 single_name = rte_eth_dev_tx_offload_name(single_offload);
15882 if (single_name == NULL)
15884 if (!strcasecmp(single_name, name)) {
15887 } else if (!strcasecmp(single_name, "UNKNOWN"))
15889 single_offload <<= 1;
15893 return single_offload;
15899 cmd_config_per_port_tx_offload_parsed(void *parsed_result,
15900 __rte_unused struct cmdline *cl,
15901 __rte_unused void *data)
15903 struct cmd_config_per_port_tx_offload_result *res = parsed_result;
15904 portid_t port_id = res->port_id;
15905 struct rte_eth_dev_info dev_info;
15906 struct rte_port *port = &ports[port_id];
15907 uint64_t single_offload;
15908 uint16_t nb_tx_queues;
15912 if (port->port_status != RTE_PORT_STOPPED) {
15913 printf("Error: Can't config offload when Port %d "
15914 "is not stopped\n", port_id);
15918 single_offload = search_tx_offload(res->offload);
15919 if (single_offload == 0) {
15920 printf("Unknown offload name: %s\n", res->offload);
15924 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15928 nb_tx_queues = dev_info.nb_tx_queues;
15929 if (!strcmp(res->on_off, "on")) {
15930 port->dev_conf.txmode.offloads |= single_offload;
15931 for (q = 0; q < nb_tx_queues; q++)
15932 port->tx_conf[q].offloads |= single_offload;
15934 port->dev_conf.txmode.offloads &= ~single_offload;
15935 for (q = 0; q < nb_tx_queues; q++)
15936 port->tx_conf[q].offloads &= ~single_offload;
15939 cmd_reconfig_device_queue(port_id, 1, 1);
15942 cmdline_parse_inst_t cmd_config_per_port_tx_offload = {
15943 .f = cmd_config_per_port_tx_offload_parsed,
15945 .help_str = "port config <port_id> tx_offload "
15946 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|"
15947 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|"
15948 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|"
15949 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|"
15950 "mt_lockfree|multi_segs|mbuf_fast_free|security|"
15951 "send_on_timestamp on|off",
15953 (void *)&cmd_config_per_port_tx_offload_result_port,
15954 (void *)&cmd_config_per_port_tx_offload_result_config,
15955 (void *)&cmd_config_per_port_tx_offload_result_port_id,
15956 (void *)&cmd_config_per_port_tx_offload_result_tx_offload,
15957 (void *)&cmd_config_per_port_tx_offload_result_offload,
15958 (void *)&cmd_config_per_port_tx_offload_result_on_off,
15963 /* Enable/Disable a per queue offloading */
15964 struct cmd_config_per_queue_tx_offload_result {
15965 cmdline_fixed_string_t port;
15967 cmdline_fixed_string_t txq;
15969 cmdline_fixed_string_t tx_offload;
15970 cmdline_fixed_string_t offload;
15971 cmdline_fixed_string_t on_off;
15974 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_port =
15975 TOKEN_STRING_INITIALIZER
15976 (struct cmd_config_per_queue_tx_offload_result,
15978 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_port_id =
15979 TOKEN_NUM_INITIALIZER
15980 (struct cmd_config_per_queue_tx_offload_result,
15981 port_id, RTE_UINT16);
15982 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txq =
15983 TOKEN_STRING_INITIALIZER
15984 (struct cmd_config_per_queue_tx_offload_result,
15986 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_queue_id =
15987 TOKEN_NUM_INITIALIZER
15988 (struct cmd_config_per_queue_tx_offload_result,
15989 queue_id, RTE_UINT16);
15990 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txoffload =
15991 TOKEN_STRING_INITIALIZER
15992 (struct cmd_config_per_queue_tx_offload_result,
15993 tx_offload, "tx_offload");
15994 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_offload =
15995 TOKEN_STRING_INITIALIZER
15996 (struct cmd_config_per_queue_tx_offload_result,
15997 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#"
15998 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#"
15999 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#"
16000 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#"
16001 "mt_lockfree#multi_segs#mbuf_fast_free#security");
16002 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_on_off =
16003 TOKEN_STRING_INITIALIZER
16004 (struct cmd_config_per_queue_tx_offload_result,
16008 cmd_config_per_queue_tx_offload_parsed(void *parsed_result,
16009 __rte_unused struct cmdline *cl,
16010 __rte_unused void *data)
16012 struct cmd_config_per_queue_tx_offload_result *res = parsed_result;
16013 struct rte_eth_dev_info dev_info;
16014 portid_t port_id = res->port_id;
16015 uint16_t queue_id = res->queue_id;
16016 struct rte_port *port = &ports[port_id];
16017 uint64_t single_offload;
16020 if (port->port_status != RTE_PORT_STOPPED) {
16021 printf("Error: Can't config offload when Port %d "
16022 "is not stopped\n", port_id);
16026 ret = eth_dev_info_get_print_err(port_id, &dev_info);
16030 if (queue_id >= dev_info.nb_tx_queues) {
16031 printf("Error: input queue_id should be 0 ... "
16032 "%d\n", dev_info.nb_tx_queues - 1);
16036 single_offload = search_tx_offload(res->offload);
16037 if (single_offload == 0) {
16038 printf("Unknown offload name: %s\n", res->offload);
16042 if (!strcmp(res->on_off, "on"))
16043 port->tx_conf[queue_id].offloads |= single_offload;
16045 port->tx_conf[queue_id].offloads &= ~single_offload;
16047 cmd_reconfig_device_queue(port_id, 1, 1);
16050 cmdline_parse_inst_t cmd_config_per_queue_tx_offload = {
16051 .f = cmd_config_per_queue_tx_offload_parsed,
16053 .help_str = "port <port_id> txq <queue_id> tx_offload "
16054 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|"
16055 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|"
16056 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|"
16057 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|"
16058 "mt_lockfree|multi_segs|mbuf_fast_free|security "
16061 (void *)&cmd_config_per_queue_tx_offload_result_port,
16062 (void *)&cmd_config_per_queue_tx_offload_result_port_id,
16063 (void *)&cmd_config_per_queue_tx_offload_result_txq,
16064 (void *)&cmd_config_per_queue_tx_offload_result_queue_id,
16065 (void *)&cmd_config_per_queue_tx_offload_result_txoffload,
16066 (void *)&cmd_config_per_queue_tx_offload_result_offload,
16067 (void *)&cmd_config_per_queue_tx_offload_result_on_off,
16072 /* *** configure tx_metadata for specific port *** */
16073 struct cmd_config_tx_metadata_specific_result {
16074 cmdline_fixed_string_t port;
16075 cmdline_fixed_string_t keyword;
16077 cmdline_fixed_string_t item;
16082 cmd_config_tx_metadata_specific_parsed(void *parsed_result,
16083 __rte_unused struct cmdline *cl,
16084 __rte_unused void *data)
16086 struct cmd_config_tx_metadata_specific_result *res = parsed_result;
16088 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
16090 ports[res->port_id].tx_metadata = res->value;
16091 /* Add/remove callback to insert valid metadata in every Tx packet. */
16092 if (ports[res->port_id].tx_metadata)
16093 add_tx_md_callback(res->port_id);
16095 remove_tx_md_callback(res->port_id);
16096 rte_flow_dynf_metadata_register();
16099 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_port =
16100 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16102 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_keyword =
16103 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16104 keyword, "config");
16105 cmdline_parse_token_num_t cmd_config_tx_metadata_specific_id =
16106 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16107 port_id, RTE_UINT16);
16108 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_item =
16109 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16110 item, "tx_metadata");
16111 cmdline_parse_token_num_t cmd_config_tx_metadata_specific_value =
16112 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16113 value, RTE_UINT32);
16115 cmdline_parse_inst_t cmd_config_tx_metadata_specific = {
16116 .f = cmd_config_tx_metadata_specific_parsed,
16118 .help_str = "port config <port_id> tx_metadata <value>",
16120 (void *)&cmd_config_tx_metadata_specific_port,
16121 (void *)&cmd_config_tx_metadata_specific_keyword,
16122 (void *)&cmd_config_tx_metadata_specific_id,
16123 (void *)&cmd_config_tx_metadata_specific_item,
16124 (void *)&cmd_config_tx_metadata_specific_value,
16129 /* *** set dynf *** */
16130 struct cmd_config_tx_dynf_specific_result {
16131 cmdline_fixed_string_t port;
16132 cmdline_fixed_string_t keyword;
16134 cmdline_fixed_string_t item;
16135 cmdline_fixed_string_t name;
16136 cmdline_fixed_string_t value;
16140 cmd_config_dynf_specific_parsed(void *parsed_result,
16141 __rte_unused struct cmdline *cl,
16142 __rte_unused void *data)
16144 struct cmd_config_tx_dynf_specific_result *res = parsed_result;
16145 struct rte_mbuf_dynflag desc_flag;
16147 uint64_t old_port_flags;
16149 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
16151 flag = rte_mbuf_dynflag_lookup(res->name, NULL);
16153 if (strlcpy(desc_flag.name, res->name,
16154 RTE_MBUF_DYN_NAMESIZE) >= RTE_MBUF_DYN_NAMESIZE) {
16155 printf("Flag name too long\n");
16158 desc_flag.flags = 0;
16159 flag = rte_mbuf_dynflag_register(&desc_flag);
16161 printf("Can't register flag\n");
16164 strcpy(dynf_names[flag], desc_flag.name);
16166 old_port_flags = ports[res->port_id].mbuf_dynf;
16167 if (!strcmp(res->value, "set")) {
16168 ports[res->port_id].mbuf_dynf |= 1UL << flag;
16169 if (old_port_flags == 0)
16170 add_tx_dynf_callback(res->port_id);
16172 ports[res->port_id].mbuf_dynf &= ~(1UL << flag);
16173 if (ports[res->port_id].mbuf_dynf == 0)
16174 remove_tx_dynf_callback(res->port_id);
16178 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_port =
16179 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16181 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_keyword =
16182 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16183 keyword, "config");
16184 cmdline_parse_token_num_t cmd_config_tx_dynf_specific_port_id =
16185 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16186 port_id, RTE_UINT16);
16187 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_item =
16188 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16190 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_name =
16191 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16193 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_value =
16194 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16195 value, "set#clear");
16197 cmdline_parse_inst_t cmd_config_tx_dynf_specific = {
16198 .f = cmd_config_dynf_specific_parsed,
16200 .help_str = "port config <port id> dynf <name> set|clear",
16202 (void *)&cmd_config_tx_dynf_specific_port,
16203 (void *)&cmd_config_tx_dynf_specific_keyword,
16204 (void *)&cmd_config_tx_dynf_specific_port_id,
16205 (void *)&cmd_config_tx_dynf_specific_item,
16206 (void *)&cmd_config_tx_dynf_specific_name,
16207 (void *)&cmd_config_tx_dynf_specific_value,
16212 /* *** display tx_metadata per port configuration *** */
16213 struct cmd_show_tx_metadata_result {
16214 cmdline_fixed_string_t cmd_show;
16215 cmdline_fixed_string_t cmd_port;
16216 cmdline_fixed_string_t cmd_keyword;
16221 cmd_show_tx_metadata_parsed(void *parsed_result,
16222 __rte_unused struct cmdline *cl,
16223 __rte_unused void *data)
16225 struct cmd_show_tx_metadata_result *res = parsed_result;
16227 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16228 printf("invalid port id %u\n", res->cmd_pid);
16231 if (!strcmp(res->cmd_keyword, "tx_metadata")) {
16232 printf("Port %u tx_metadata: %u\n", res->cmd_pid,
16233 ports[res->cmd_pid].tx_metadata);
16237 cmdline_parse_token_string_t cmd_show_tx_metadata_show =
16238 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result,
16240 cmdline_parse_token_string_t cmd_show_tx_metadata_port =
16241 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result,
16243 cmdline_parse_token_num_t cmd_show_tx_metadata_pid =
16244 TOKEN_NUM_INITIALIZER(struct cmd_show_tx_metadata_result,
16245 cmd_pid, RTE_UINT16);
16246 cmdline_parse_token_string_t cmd_show_tx_metadata_keyword =
16247 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result,
16248 cmd_keyword, "tx_metadata");
16250 cmdline_parse_inst_t cmd_show_tx_metadata = {
16251 .f = cmd_show_tx_metadata_parsed,
16253 .help_str = "show port <port_id> tx_metadata",
16255 (void *)&cmd_show_tx_metadata_show,
16256 (void *)&cmd_show_tx_metadata_port,
16257 (void *)&cmd_show_tx_metadata_pid,
16258 (void *)&cmd_show_tx_metadata_keyword,
16263 /* *** show fec capability per port configuration *** */
16264 struct cmd_show_fec_capability_result {
16265 cmdline_fixed_string_t cmd_show;
16266 cmdline_fixed_string_t cmd_port;
16267 cmdline_fixed_string_t cmd_fec;
16268 cmdline_fixed_string_t cmd_keyword;
16273 cmd_show_fec_capability_parsed(void *parsed_result,
16274 __rte_unused struct cmdline *cl,
16275 __rte_unused void *data)
16277 struct cmd_show_fec_capability_result *res = parsed_result;
16278 struct rte_eth_fec_capa *speed_fec_capa;
16282 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16283 printf("Invalid port id %u\n", res->cmd_pid);
16287 ret = rte_eth_fec_get_capability(res->cmd_pid, NULL, 0);
16288 if (ret == -ENOTSUP) {
16289 printf("Function not implemented\n");
16291 } else if (ret < 0) {
16292 printf("Get FEC capability failed: %d\n", ret);
16296 num = (unsigned int)ret;
16297 speed_fec_capa = calloc(num, sizeof(*speed_fec_capa));
16298 if (speed_fec_capa == NULL) {
16299 printf("Failed to alloc FEC capability buffer\n");
16303 ret = rte_eth_fec_get_capability(res->cmd_pid, speed_fec_capa, num);
16305 printf("Error getting FEC capability: %d\n", ret);
16309 show_fec_capability(num, speed_fec_capa);
16311 free(speed_fec_capa);
16314 cmdline_parse_token_string_t cmd_show_fec_capability_show =
16315 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result,
16317 cmdline_parse_token_string_t cmd_show_fec_capability_port =
16318 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result,
16320 cmdline_parse_token_num_t cmd_show_fec_capability_pid =
16321 TOKEN_NUM_INITIALIZER(struct cmd_show_fec_capability_result,
16322 cmd_pid, RTE_UINT16);
16323 cmdline_parse_token_string_t cmd_show_fec_capability_fec =
16324 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result,
16326 cmdline_parse_token_string_t cmd_show_fec_capability_keyword =
16327 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result,
16328 cmd_keyword, "capabilities");
16330 cmdline_parse_inst_t cmd_show_capability = {
16331 .f = cmd_show_fec_capability_parsed,
16333 .help_str = "show port <port_id> fec capabilities",
16335 (void *)&cmd_show_fec_capability_show,
16336 (void *)&cmd_show_fec_capability_port,
16337 (void *)&cmd_show_fec_capability_pid,
16338 (void *)&cmd_show_fec_capability_fec,
16339 (void *)&cmd_show_fec_capability_keyword,
16344 /* *** show fec mode per port configuration *** */
16345 struct cmd_show_fec_metadata_result {
16346 cmdline_fixed_string_t cmd_show;
16347 cmdline_fixed_string_t cmd_port;
16348 cmdline_fixed_string_t cmd_keyword;
16353 cmd_show_fec_mode_parsed(void *parsed_result,
16354 __rte_unused struct cmdline *cl,
16355 __rte_unused void *data)
16357 #define FEC_NAME_SIZE 16
16358 struct cmd_show_fec_metadata_result *res = parsed_result;
16360 char buf[FEC_NAME_SIZE];
16363 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16364 printf("Invalid port id %u\n", res->cmd_pid);
16367 ret = rte_eth_fec_get(res->cmd_pid, &mode);
16368 if (ret == -ENOTSUP) {
16369 printf("Function not implemented\n");
16371 } else if (ret < 0) {
16372 printf("Get FEC mode failed\n");
16377 case RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC):
16378 strlcpy(buf, "off", sizeof(buf));
16380 case RTE_ETH_FEC_MODE_CAPA_MASK(AUTO):
16381 strlcpy(buf, "auto", sizeof(buf));
16383 case RTE_ETH_FEC_MODE_CAPA_MASK(BASER):
16384 strlcpy(buf, "baser", sizeof(buf));
16386 case RTE_ETH_FEC_MODE_CAPA_MASK(RS):
16387 strlcpy(buf, "rs", sizeof(buf));
16393 printf("%s\n", buf);
16396 cmdline_parse_token_string_t cmd_show_fec_mode_show =
16397 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result,
16399 cmdline_parse_token_string_t cmd_show_fec_mode_port =
16400 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result,
16402 cmdline_parse_token_num_t cmd_show_fec_mode_pid =
16403 TOKEN_NUM_INITIALIZER(struct cmd_show_fec_metadata_result,
16404 cmd_pid, RTE_UINT16);
16405 cmdline_parse_token_string_t cmd_show_fec_mode_keyword =
16406 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result,
16407 cmd_keyword, "fec_mode");
16409 cmdline_parse_inst_t cmd_show_fec_mode = {
16410 .f = cmd_show_fec_mode_parsed,
16412 .help_str = "show port <port_id> fec_mode",
16414 (void *)&cmd_show_fec_mode_show,
16415 (void *)&cmd_show_fec_mode_port,
16416 (void *)&cmd_show_fec_mode_pid,
16417 (void *)&cmd_show_fec_mode_keyword,
16422 /* *** set fec mode per port configuration *** */
16423 struct cmd_set_port_fec_mode {
16424 cmdline_fixed_string_t set;
16425 cmdline_fixed_string_t port;
16427 cmdline_fixed_string_t fec_mode;
16428 cmdline_fixed_string_t fec_value;
16431 /* Common CLI fields for set fec mode */
16432 cmdline_parse_token_string_t cmd_set_port_fec_mode_set =
16433 TOKEN_STRING_INITIALIZER
16434 (struct cmd_set_port_fec_mode,
16436 cmdline_parse_token_string_t cmd_set_port_fec_mode_port =
16437 TOKEN_STRING_INITIALIZER
16438 (struct cmd_set_port_fec_mode,
16440 cmdline_parse_token_num_t cmd_set_port_fec_mode_port_id =
16441 TOKEN_NUM_INITIALIZER
16442 (struct cmd_set_port_fec_mode,
16443 port_id, RTE_UINT16);
16444 cmdline_parse_token_string_t cmd_set_port_fec_mode_str =
16445 TOKEN_STRING_INITIALIZER
16446 (struct cmd_set_port_fec_mode,
16447 fec_mode, "fec_mode");
16448 cmdline_parse_token_string_t cmd_set_port_fec_mode_value =
16449 TOKEN_STRING_INITIALIZER
16450 (struct cmd_set_port_fec_mode,
16454 cmd_set_port_fec_mode_parsed(
16455 void *parsed_result,
16456 __rte_unused struct cmdline *cl,
16457 __rte_unused void *data)
16459 struct cmd_set_port_fec_mode *res = parsed_result;
16460 uint16_t port_id = res->port_id;
16464 ret = parse_fec_mode(res->fec_value, &mode);
16466 printf("Unknown fec mode: %s for Port %d\n", res->fec_value,
16471 ret = rte_eth_fec_set(port_id, mode);
16472 if (ret == -ENOTSUP) {
16473 printf("Function not implemented\n");
16475 } else if (ret < 0) {
16476 printf("Set FEC mode failed\n");
16481 cmdline_parse_inst_t cmd_set_fec_mode = {
16482 .f = cmd_set_port_fec_mode_parsed,
16484 .help_str = "set port <port_id> fec_mode auto|off|rs|baser",
16486 (void *)&cmd_set_port_fec_mode_set,
16487 (void *)&cmd_set_port_fec_mode_port,
16488 (void *)&cmd_set_port_fec_mode_port_id,
16489 (void *)&cmd_set_port_fec_mode_str,
16490 (void *)&cmd_set_port_fec_mode_value,
16495 /* show port supported ptypes */
16497 /* Common result structure for show port ptypes */
16498 struct cmd_show_port_supported_ptypes_result {
16499 cmdline_fixed_string_t show;
16500 cmdline_fixed_string_t port;
16502 cmdline_fixed_string_t ptypes;
16505 /* Common CLI fields for show port ptypes */
16506 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_show =
16507 TOKEN_STRING_INITIALIZER
16508 (struct cmd_show_port_supported_ptypes_result,
16510 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_port =
16511 TOKEN_STRING_INITIALIZER
16512 (struct cmd_show_port_supported_ptypes_result,
16514 cmdline_parse_token_num_t cmd_show_port_supported_ptypes_port_id =
16515 TOKEN_NUM_INITIALIZER
16516 (struct cmd_show_port_supported_ptypes_result,
16517 port_id, RTE_UINT16);
16518 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_ptypes =
16519 TOKEN_STRING_INITIALIZER
16520 (struct cmd_show_port_supported_ptypes_result,
16524 cmd_show_port_supported_ptypes_parsed(
16525 void *parsed_result,
16526 __rte_unused struct cmdline *cl,
16527 __rte_unused void *data)
16529 #define RSVD_PTYPE_MASK 0xf0000000
16530 #define MAX_PTYPES_PER_LAYER 16
16531 #define LTYPE_NAMESIZE 32
16532 #define PTYPE_NAMESIZE 256
16533 struct cmd_show_port_supported_ptypes_result *res = parsed_result;
16534 char buf[PTYPE_NAMESIZE], ltype[LTYPE_NAMESIZE];
16535 uint32_t ptype_mask = RTE_PTYPE_L2_MASK;
16536 uint32_t ptypes[MAX_PTYPES_PER_LAYER];
16537 uint16_t port_id = res->port_id;
16540 ret = rte_eth_dev_get_supported_ptypes(port_id, ptype_mask, NULL, 0);
16544 while (ptype_mask != RSVD_PTYPE_MASK) {
16546 switch (ptype_mask) {
16547 case RTE_PTYPE_L2_MASK:
16548 strlcpy(ltype, "L2", sizeof(ltype));
16550 case RTE_PTYPE_L3_MASK:
16551 strlcpy(ltype, "L3", sizeof(ltype));
16553 case RTE_PTYPE_L4_MASK:
16554 strlcpy(ltype, "L4", sizeof(ltype));
16556 case RTE_PTYPE_TUNNEL_MASK:
16557 strlcpy(ltype, "Tunnel", sizeof(ltype));
16559 case RTE_PTYPE_INNER_L2_MASK:
16560 strlcpy(ltype, "Inner L2", sizeof(ltype));
16562 case RTE_PTYPE_INNER_L3_MASK:
16563 strlcpy(ltype, "Inner L3", sizeof(ltype));
16565 case RTE_PTYPE_INNER_L4_MASK:
16566 strlcpy(ltype, "Inner L4", sizeof(ltype));
16572 ret = rte_eth_dev_get_supported_ptypes(res->port_id,
16573 ptype_mask, ptypes,
16574 MAX_PTYPES_PER_LAYER);
16577 printf("Supported %s ptypes:\n", ltype);
16579 printf("%s ptypes unsupported\n", ltype);
16581 for (i = 0; i < ret; ++i) {
16582 rte_get_ptype_name(ptypes[i], buf, sizeof(buf));
16583 printf("%s\n", buf);
16590 cmdline_parse_inst_t cmd_show_port_supported_ptypes = {
16591 .f = cmd_show_port_supported_ptypes_parsed,
16593 .help_str = "show port <port_id> ptypes",
16595 (void *)&cmd_show_port_supported_ptypes_show,
16596 (void *)&cmd_show_port_supported_ptypes_port,
16597 (void *)&cmd_show_port_supported_ptypes_port_id,
16598 (void *)&cmd_show_port_supported_ptypes_ptypes,
16603 /* *** display rx/tx descriptor status *** */
16604 struct cmd_show_rx_tx_desc_status_result {
16605 cmdline_fixed_string_t cmd_show;
16606 cmdline_fixed_string_t cmd_port;
16607 cmdline_fixed_string_t cmd_keyword;
16608 cmdline_fixed_string_t cmd_desc;
16609 cmdline_fixed_string_t cmd_status;
16616 cmd_show_rx_tx_desc_status_parsed(void *parsed_result,
16617 __rte_unused struct cmdline *cl,
16618 __rte_unused void *data)
16620 struct cmd_show_rx_tx_desc_status_result *res = parsed_result;
16623 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16624 printf("invalid port id %u\n", res->cmd_pid);
16628 if (!strcmp(res->cmd_keyword, "rxq")) {
16629 rc = rte_eth_rx_descriptor_status(res->cmd_pid, res->cmd_qid,
16632 printf("Invalid input: queue id = %d, desc id = %d\n",
16633 res->cmd_qid, res->cmd_did);
16636 if (rc == RTE_ETH_RX_DESC_AVAIL)
16637 printf("Desc status = AVAILABLE\n");
16638 else if (rc == RTE_ETH_RX_DESC_DONE)
16639 printf("Desc status = DONE\n");
16641 printf("Desc status = UNAVAILABLE\n");
16642 } else if (!strcmp(res->cmd_keyword, "txq")) {
16643 rc = rte_eth_tx_descriptor_status(res->cmd_pid, res->cmd_qid,
16646 printf("Invalid input: queue id = %d, desc id = %d\n",
16647 res->cmd_qid, res->cmd_did);
16650 if (rc == RTE_ETH_TX_DESC_FULL)
16651 printf("Desc status = FULL\n");
16652 else if (rc == RTE_ETH_TX_DESC_DONE)
16653 printf("Desc status = DONE\n");
16655 printf("Desc status = UNAVAILABLE\n");
16659 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_show =
16660 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16662 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_port =
16663 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16665 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_pid =
16666 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16667 cmd_pid, RTE_UINT16);
16668 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_keyword =
16669 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16670 cmd_keyword, "rxq#txq");
16671 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_qid =
16672 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16673 cmd_qid, RTE_UINT16);
16674 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_desc =
16675 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16677 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_did =
16678 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16679 cmd_did, RTE_UINT16);
16680 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_status =
16681 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16682 cmd_status, "status");
16683 cmdline_parse_inst_t cmd_show_rx_tx_desc_status = {
16684 .f = cmd_show_rx_tx_desc_status_parsed,
16686 .help_str = "show port <port_id> rxq|txq <queue_id> desc <desc_id> "
16689 (void *)&cmd_show_rx_tx_desc_status_show,
16690 (void *)&cmd_show_rx_tx_desc_status_port,
16691 (void *)&cmd_show_rx_tx_desc_status_pid,
16692 (void *)&cmd_show_rx_tx_desc_status_keyword,
16693 (void *)&cmd_show_rx_tx_desc_status_qid,
16694 (void *)&cmd_show_rx_tx_desc_status_desc,
16695 (void *)&cmd_show_rx_tx_desc_status_did,
16696 (void *)&cmd_show_rx_tx_desc_status_status,
16701 /* *** display rx queue desc used count *** */
16702 struct cmd_show_rx_queue_desc_used_count_result {
16703 cmdline_fixed_string_t cmd_show;
16704 cmdline_fixed_string_t cmd_port;
16705 cmdline_fixed_string_t cmd_rxq;
16706 cmdline_fixed_string_t cmd_desc;
16707 cmdline_fixed_string_t cmd_used;
16708 cmdline_fixed_string_t cmd_count;
16714 cmd_show_rx_queue_desc_used_count_parsed(void *parsed_result,
16715 __rte_unused struct cmdline *cl,
16716 __rte_unused void *data)
16718 struct cmd_show_rx_queue_desc_used_count_result *res = parsed_result;
16721 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16722 printf("invalid port id %u\n", res->cmd_pid);
16726 rc = rte_eth_rx_queue_count(res->cmd_pid, res->cmd_qid);
16728 printf("Invalid queueid = %d\n", res->cmd_qid);
16731 printf("Used desc count = %d\n", rc);
16734 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_show =
16735 TOKEN_STRING_INITIALIZER
16736 (struct cmd_show_rx_queue_desc_used_count_result,
16738 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_port =
16739 TOKEN_STRING_INITIALIZER
16740 (struct cmd_show_rx_queue_desc_used_count_result,
16742 cmdline_parse_token_num_t cmd_show_rx_queue_desc_used_count_pid =
16743 TOKEN_NUM_INITIALIZER
16744 (struct cmd_show_rx_queue_desc_used_count_result,
16745 cmd_pid, RTE_UINT16);
16746 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_rxq =
16747 TOKEN_STRING_INITIALIZER
16748 (struct cmd_show_rx_queue_desc_used_count_result,
16750 cmdline_parse_token_num_t cmd_show_rx_queue_desc_used_count_qid =
16751 TOKEN_NUM_INITIALIZER
16752 (struct cmd_show_rx_queue_desc_used_count_result,
16753 cmd_qid, RTE_UINT16);
16754 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_desc =
16755 TOKEN_STRING_INITIALIZER
16756 (struct cmd_show_rx_queue_desc_used_count_result,
16757 cmd_count, "desc");
16758 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_used =
16759 TOKEN_STRING_INITIALIZER
16760 (struct cmd_show_rx_queue_desc_used_count_result,
16761 cmd_count, "used");
16762 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_count =
16763 TOKEN_STRING_INITIALIZER
16764 (struct cmd_show_rx_queue_desc_used_count_result,
16765 cmd_count, "count");
16766 cmdline_parse_inst_t cmd_show_rx_queue_desc_used_count = {
16767 .f = cmd_show_rx_queue_desc_used_count_parsed,
16769 .help_str = "show port <port_id> rxq <queue_id> desc used count",
16771 (void *)&cmd_show_rx_queue_desc_used_count_show,
16772 (void *)&cmd_show_rx_queue_desc_used_count_port,
16773 (void *)&cmd_show_rx_queue_desc_used_count_pid,
16774 (void *)&cmd_show_rx_queue_desc_used_count_rxq,
16775 (void *)&cmd_show_rx_queue_desc_used_count_qid,
16776 (void *)&cmd_show_rx_queue_desc_used_count_desc,
16777 (void *)&cmd_show_rx_queue_desc_used_count_used,
16778 (void *)&cmd_show_rx_queue_desc_used_count_count,
16783 /* Common result structure for set port ptypes */
16784 struct cmd_set_port_ptypes_result {
16785 cmdline_fixed_string_t set;
16786 cmdline_fixed_string_t port;
16788 cmdline_fixed_string_t ptype_mask;
16792 /* Common CLI fields for set port ptypes */
16793 cmdline_parse_token_string_t cmd_set_port_ptypes_set =
16794 TOKEN_STRING_INITIALIZER
16795 (struct cmd_set_port_ptypes_result,
16797 cmdline_parse_token_string_t cmd_set_port_ptypes_port =
16798 TOKEN_STRING_INITIALIZER
16799 (struct cmd_set_port_ptypes_result,
16801 cmdline_parse_token_num_t cmd_set_port_ptypes_port_id =
16802 TOKEN_NUM_INITIALIZER
16803 (struct cmd_set_port_ptypes_result,
16804 port_id, RTE_UINT16);
16805 cmdline_parse_token_string_t cmd_set_port_ptypes_mask_str =
16806 TOKEN_STRING_INITIALIZER
16807 (struct cmd_set_port_ptypes_result,
16808 ptype_mask, "ptype_mask");
16809 cmdline_parse_token_num_t cmd_set_port_ptypes_mask_u32 =
16810 TOKEN_NUM_INITIALIZER
16811 (struct cmd_set_port_ptypes_result,
16815 cmd_set_port_ptypes_parsed(
16816 void *parsed_result,
16817 __rte_unused struct cmdline *cl,
16818 __rte_unused void *data)
16820 struct cmd_set_port_ptypes_result *res = parsed_result;
16821 #define PTYPE_NAMESIZE 256
16822 char ptype_name[PTYPE_NAMESIZE];
16823 uint16_t port_id = res->port_id;
16824 uint32_t ptype_mask = res->mask;
16827 ret = rte_eth_dev_get_supported_ptypes(port_id, RTE_PTYPE_ALL_MASK,
16830 printf("Port %d doesn't support any ptypes.\n", port_id);
16834 uint32_t ptypes[ret];
16836 ret = rte_eth_dev_set_ptypes(port_id, ptype_mask, ptypes, ret);
16838 printf("Unable to set requested ptypes for Port %d\n", port_id);
16842 printf("Successfully set following ptypes for Port %d\n", port_id);
16843 for (i = 0; i < ret && ptypes[i] != RTE_PTYPE_UNKNOWN; i++) {
16844 rte_get_ptype_name(ptypes[i], ptype_name, sizeof(ptype_name));
16845 printf("%s\n", ptype_name);
16848 clear_ptypes = false;
16851 cmdline_parse_inst_t cmd_set_port_ptypes = {
16852 .f = cmd_set_port_ptypes_parsed,
16854 .help_str = "set port <port_id> ptype_mask <mask>",
16856 (void *)&cmd_set_port_ptypes_set,
16857 (void *)&cmd_set_port_ptypes_port,
16858 (void *)&cmd_set_port_ptypes_port_id,
16859 (void *)&cmd_set_port_ptypes_mask_str,
16860 (void *)&cmd_set_port_ptypes_mask_u32,
16865 /* *** display mac addresses added to a port *** */
16866 struct cmd_showport_macs_result {
16867 cmdline_fixed_string_t cmd_show;
16868 cmdline_fixed_string_t cmd_port;
16869 cmdline_fixed_string_t cmd_keyword;
16874 cmd_showport_macs_parsed(void *parsed_result,
16875 __rte_unused struct cmdline *cl,
16876 __rte_unused void *data)
16878 struct cmd_showport_macs_result *res = parsed_result;
16880 if (port_id_is_invalid(res->cmd_pid, ENABLED_WARN))
16883 if (!strcmp(res->cmd_keyword, "macs"))
16884 show_macs(res->cmd_pid);
16885 else if (!strcmp(res->cmd_keyword, "mcast_macs"))
16886 show_mcast_macs(res->cmd_pid);
16889 cmdline_parse_token_string_t cmd_showport_macs_show =
16890 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result,
16892 cmdline_parse_token_string_t cmd_showport_macs_port =
16893 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result,
16895 cmdline_parse_token_num_t cmd_showport_macs_pid =
16896 TOKEN_NUM_INITIALIZER(struct cmd_showport_macs_result,
16897 cmd_pid, RTE_UINT16);
16898 cmdline_parse_token_string_t cmd_showport_macs_keyword =
16899 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result,
16900 cmd_keyword, "macs#mcast_macs");
16902 cmdline_parse_inst_t cmd_showport_macs = {
16903 .f = cmd_showport_macs_parsed,
16905 .help_str = "show port <port_id> macs|mcast_macs",
16907 (void *)&cmd_showport_macs_show,
16908 (void *)&cmd_showport_macs_port,
16909 (void *)&cmd_showport_macs_pid,
16910 (void *)&cmd_showport_macs_keyword,
16915 /* ******************************************************************************** */
16917 /* list of instructions */
16918 cmdline_parse_ctx_t main_ctx[] = {
16919 (cmdline_parse_inst_t *)&cmd_help_brief,
16920 (cmdline_parse_inst_t *)&cmd_help_long,
16921 (cmdline_parse_inst_t *)&cmd_quit,
16922 (cmdline_parse_inst_t *)&cmd_load_from_file,
16923 (cmdline_parse_inst_t *)&cmd_showport,
16924 (cmdline_parse_inst_t *)&cmd_showqueue,
16925 (cmdline_parse_inst_t *)&cmd_showeeprom,
16926 (cmdline_parse_inst_t *)&cmd_showportall,
16927 (cmdline_parse_inst_t *)&cmd_showdevice,
16928 (cmdline_parse_inst_t *)&cmd_showcfg,
16929 (cmdline_parse_inst_t *)&cmd_showfwdall,
16930 (cmdline_parse_inst_t *)&cmd_start,
16931 (cmdline_parse_inst_t *)&cmd_start_tx_first,
16932 (cmdline_parse_inst_t *)&cmd_start_tx_first_n,
16933 (cmdline_parse_inst_t *)&cmd_set_link_up,
16934 (cmdline_parse_inst_t *)&cmd_set_link_down,
16935 (cmdline_parse_inst_t *)&cmd_reset,
16936 (cmdline_parse_inst_t *)&cmd_set_numbers,
16937 (cmdline_parse_inst_t *)&cmd_set_log,
16938 (cmdline_parse_inst_t *)&cmd_set_rxoffs,
16939 (cmdline_parse_inst_t *)&cmd_set_rxpkts,
16940 (cmdline_parse_inst_t *)&cmd_set_txpkts,
16941 (cmdline_parse_inst_t *)&cmd_set_txsplit,
16942 (cmdline_parse_inst_t *)&cmd_set_txtimes,
16943 (cmdline_parse_inst_t *)&cmd_set_fwd_list,
16944 (cmdline_parse_inst_t *)&cmd_set_fwd_mask,
16945 (cmdline_parse_inst_t *)&cmd_set_fwd_mode,
16946 (cmdline_parse_inst_t *)&cmd_set_fwd_retry_mode,
16947 (cmdline_parse_inst_t *)&cmd_set_burst_tx_retry,
16948 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_one,
16949 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_all,
16950 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_one,
16951 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_all,
16952 (cmdline_parse_inst_t *)&cmd_set_flush_rx,
16953 (cmdline_parse_inst_t *)&cmd_set_link_check,
16954 (cmdline_parse_inst_t *)&cmd_set_bypass_mode,
16955 (cmdline_parse_inst_t *)&cmd_set_bypass_event,
16956 (cmdline_parse_inst_t *)&cmd_set_bypass_timeout,
16957 (cmdline_parse_inst_t *)&cmd_show_bypass_config,
16958 #ifdef RTE_NET_BOND
16959 (cmdline_parse_inst_t *) &cmd_set_bonding_mode,
16960 (cmdline_parse_inst_t *) &cmd_show_bonding_config,
16961 (cmdline_parse_inst_t *) &cmd_set_bonding_primary,
16962 (cmdline_parse_inst_t *) &cmd_add_bonding_slave,
16963 (cmdline_parse_inst_t *) &cmd_remove_bonding_slave,
16964 (cmdline_parse_inst_t *) &cmd_create_bonded_device,
16965 (cmdline_parse_inst_t *) &cmd_set_bond_mac_addr,
16966 (cmdline_parse_inst_t *) &cmd_set_balance_xmit_policy,
16967 (cmdline_parse_inst_t *) &cmd_set_bond_mon_period,
16968 (cmdline_parse_inst_t *) &cmd_set_lacp_dedicated_queues,
16969 (cmdline_parse_inst_t *) &cmd_set_bonding_agg_mode_policy,
16971 (cmdline_parse_inst_t *)&cmd_vlan_offload,
16972 (cmdline_parse_inst_t *)&cmd_vlan_tpid,
16973 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter_all,
16974 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter,
16975 (cmdline_parse_inst_t *)&cmd_tx_vlan_set,
16976 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_qinq,
16977 (cmdline_parse_inst_t *)&cmd_tx_vlan_reset,
16978 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_pvid,
16979 (cmdline_parse_inst_t *)&cmd_csum_set,
16980 (cmdline_parse_inst_t *)&cmd_csum_show,
16981 (cmdline_parse_inst_t *)&cmd_csum_tunnel,
16982 (cmdline_parse_inst_t *)&cmd_tso_set,
16983 (cmdline_parse_inst_t *)&cmd_tso_show,
16984 (cmdline_parse_inst_t *)&cmd_tunnel_tso_set,
16985 (cmdline_parse_inst_t *)&cmd_tunnel_tso_show,
16986 (cmdline_parse_inst_t *)&cmd_gro_enable,
16987 (cmdline_parse_inst_t *)&cmd_gro_flush,
16988 (cmdline_parse_inst_t *)&cmd_gro_show,
16989 (cmdline_parse_inst_t *)&cmd_gso_enable,
16990 (cmdline_parse_inst_t *)&cmd_gso_size,
16991 (cmdline_parse_inst_t *)&cmd_gso_show,
16992 (cmdline_parse_inst_t *)&cmd_link_flow_control_set,
16993 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_rx,
16994 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_tx,
16995 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_hw,
16996 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_lw,
16997 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_pt,
16998 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_xon,
16999 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_macfwd,
17000 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_autoneg,
17001 (cmdline_parse_inst_t *)&cmd_priority_flow_control_set,
17002 (cmdline_parse_inst_t *)&cmd_config_dcb,
17003 (cmdline_parse_inst_t *)&cmd_read_reg,
17004 (cmdline_parse_inst_t *)&cmd_read_reg_bit_field,
17005 (cmdline_parse_inst_t *)&cmd_read_reg_bit,
17006 (cmdline_parse_inst_t *)&cmd_write_reg,
17007 (cmdline_parse_inst_t *)&cmd_write_reg_bit_field,
17008 (cmdline_parse_inst_t *)&cmd_write_reg_bit,
17009 (cmdline_parse_inst_t *)&cmd_read_rxd_txd,
17010 (cmdline_parse_inst_t *)&cmd_stop,
17011 (cmdline_parse_inst_t *)&cmd_mac_addr,
17012 (cmdline_parse_inst_t *)&cmd_set_fwd_eth_peer,
17013 (cmdline_parse_inst_t *)&cmd_set_qmap,
17014 (cmdline_parse_inst_t *)&cmd_set_xstats_hide_zero,
17015 (cmdline_parse_inst_t *)&cmd_set_record_core_cycles,
17016 (cmdline_parse_inst_t *)&cmd_set_record_burst_stats,
17017 (cmdline_parse_inst_t *)&cmd_operate_port,
17018 (cmdline_parse_inst_t *)&cmd_operate_specific_port,
17019 (cmdline_parse_inst_t *)&cmd_operate_attach_port,
17020 (cmdline_parse_inst_t *)&cmd_operate_detach_port,
17021 (cmdline_parse_inst_t *)&cmd_operate_detach_device,
17022 (cmdline_parse_inst_t *)&cmd_set_port_setup_on,
17023 (cmdline_parse_inst_t *)&cmd_config_speed_all,
17024 (cmdline_parse_inst_t *)&cmd_config_speed_specific,
17025 (cmdline_parse_inst_t *)&cmd_config_loopback_all,
17026 (cmdline_parse_inst_t *)&cmd_config_loopback_specific,
17027 (cmdline_parse_inst_t *)&cmd_config_rx_tx,
17028 (cmdline_parse_inst_t *)&cmd_config_mtu,
17029 (cmdline_parse_inst_t *)&cmd_config_max_pkt_len,
17030 (cmdline_parse_inst_t *)&cmd_config_max_lro_pkt_size,
17031 (cmdline_parse_inst_t *)&cmd_config_rx_mode_flag,
17032 (cmdline_parse_inst_t *)&cmd_config_rss,
17033 (cmdline_parse_inst_t *)&cmd_config_rxtx_ring_size,
17034 (cmdline_parse_inst_t *)&cmd_config_rxtx_queue,
17035 (cmdline_parse_inst_t *)&cmd_config_deferred_start_rxtx_queue,
17036 (cmdline_parse_inst_t *)&cmd_setup_rxtx_queue,
17037 (cmdline_parse_inst_t *)&cmd_config_rss_reta,
17038 (cmdline_parse_inst_t *)&cmd_showport_reta,
17039 (cmdline_parse_inst_t *)&cmd_showport_macs,
17040 (cmdline_parse_inst_t *)&cmd_config_burst,
17041 (cmdline_parse_inst_t *)&cmd_config_thresh,
17042 (cmdline_parse_inst_t *)&cmd_config_threshold,
17043 (cmdline_parse_inst_t *)&cmd_set_uc_hash_filter,
17044 (cmdline_parse_inst_t *)&cmd_set_uc_all_hash_filter,
17045 (cmdline_parse_inst_t *)&cmd_vf_mac_addr_filter,
17046 (cmdline_parse_inst_t *)&cmd_queue_rate_limit,
17047 (cmdline_parse_inst_t *)&cmd_tunnel_udp_config,
17048 (cmdline_parse_inst_t *)&cmd_set_mirror_mask,
17049 (cmdline_parse_inst_t *)&cmd_set_mirror_link,
17050 (cmdline_parse_inst_t *)&cmd_reset_mirror_rule,
17051 (cmdline_parse_inst_t *)&cmd_showport_rss_hash,
17052 (cmdline_parse_inst_t *)&cmd_showport_rss_hash_key,
17053 (cmdline_parse_inst_t *)&cmd_config_rss_hash_key,
17054 (cmdline_parse_inst_t *)&cmd_dump,
17055 (cmdline_parse_inst_t *)&cmd_dump_one,
17056 #ifdef RTE_NET_I40E
17057 (cmdline_parse_inst_t *)&cmd_add_del_raw_flow_director,
17059 (cmdline_parse_inst_t *)&cmd_set_flow_director_ip_mask,
17060 (cmdline_parse_inst_t *)&cmd_set_flow_director_mac_vlan_mask,
17061 (cmdline_parse_inst_t *)&cmd_set_flow_director_tunnel_mask,
17062 (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_payload,
17063 (cmdline_parse_inst_t *)&cmd_flow,
17064 (cmdline_parse_inst_t *)&cmd_show_port_meter_cap,
17065 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_srtcm,
17066 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_trtcm,
17067 (cmdline_parse_inst_t *)&cmd_del_port_meter_profile,
17068 (cmdline_parse_inst_t *)&cmd_create_port_meter,
17069 (cmdline_parse_inst_t *)&cmd_enable_port_meter,
17070 (cmdline_parse_inst_t *)&cmd_disable_port_meter,
17071 (cmdline_parse_inst_t *)&cmd_del_port_meter,
17072 (cmdline_parse_inst_t *)&cmd_set_port_meter_profile,
17073 (cmdline_parse_inst_t *)&cmd_set_port_meter_dscp_table,
17074 (cmdline_parse_inst_t *)&cmd_set_port_meter_policer_action,
17075 (cmdline_parse_inst_t *)&cmd_set_port_meter_stats_mask,
17076 (cmdline_parse_inst_t *)&cmd_show_port_meter_stats,
17077 (cmdline_parse_inst_t *)&cmd_mcast_addr,
17078 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_anti_spoof,
17079 (cmdline_parse_inst_t *)&cmd_set_vf_mac_anti_spoof,
17080 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_stripq,
17081 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_insert,
17082 (cmdline_parse_inst_t *)&cmd_set_tx_loopback,
17083 (cmdline_parse_inst_t *)&cmd_set_all_queues_drop_en,
17084 (cmdline_parse_inst_t *)&cmd_set_vf_split_drop_en,
17085 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_on,
17086 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_off,
17087 (cmdline_parse_inst_t *)&cmd_set_macsec_sc,
17088 (cmdline_parse_inst_t *)&cmd_set_macsec_sa,
17089 (cmdline_parse_inst_t *)&cmd_set_vf_traffic,
17090 (cmdline_parse_inst_t *)&cmd_set_vf_rxmode,
17091 (cmdline_parse_inst_t *)&cmd_vf_rate_limit,
17092 (cmdline_parse_inst_t *)&cmd_vf_rxvlan_filter,
17093 (cmdline_parse_inst_t *)&cmd_set_vf_mac_addr,
17094 (cmdline_parse_inst_t *)&cmd_set_vf_promisc,
17095 (cmdline_parse_inst_t *)&cmd_set_vf_allmulti,
17096 (cmdline_parse_inst_t *)&cmd_set_vf_broadcast,
17097 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_tag,
17098 (cmdline_parse_inst_t *)&cmd_vf_max_bw,
17099 (cmdline_parse_inst_t *)&cmd_vf_tc_min_bw,
17100 (cmdline_parse_inst_t *)&cmd_vf_tc_max_bw,
17101 (cmdline_parse_inst_t *)&cmd_strict_link_prio,
17102 (cmdline_parse_inst_t *)&cmd_tc_min_bw,
17103 (cmdline_parse_inst_t *)&cmd_set_vxlan,
17104 (cmdline_parse_inst_t *)&cmd_set_vxlan_tos_ttl,
17105 (cmdline_parse_inst_t *)&cmd_set_vxlan_with_vlan,
17106 (cmdline_parse_inst_t *)&cmd_set_nvgre,
17107 (cmdline_parse_inst_t *)&cmd_set_nvgre_with_vlan,
17108 (cmdline_parse_inst_t *)&cmd_set_l2_encap,
17109 (cmdline_parse_inst_t *)&cmd_set_l2_encap_with_vlan,
17110 (cmdline_parse_inst_t *)&cmd_set_l2_decap,
17111 (cmdline_parse_inst_t *)&cmd_set_l2_decap_with_vlan,
17112 (cmdline_parse_inst_t *)&cmd_set_mplsogre_encap,
17113 (cmdline_parse_inst_t *)&cmd_set_mplsogre_encap_with_vlan,
17114 (cmdline_parse_inst_t *)&cmd_set_mplsogre_decap,
17115 (cmdline_parse_inst_t *)&cmd_set_mplsogre_decap_with_vlan,
17116 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_encap,
17117 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_encap_with_vlan,
17118 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_decap,
17119 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_decap_with_vlan,
17120 (cmdline_parse_inst_t *)&cmd_ddp_add,
17121 (cmdline_parse_inst_t *)&cmd_ddp_del,
17122 (cmdline_parse_inst_t *)&cmd_ddp_get_list,
17123 (cmdline_parse_inst_t *)&cmd_ddp_get_info,
17124 (cmdline_parse_inst_t *)&cmd_cfg_input_set,
17125 (cmdline_parse_inst_t *)&cmd_clear_input_set,
17126 (cmdline_parse_inst_t *)&cmd_show_vf_stats,
17127 (cmdline_parse_inst_t *)&cmd_clear_vf_stats,
17128 (cmdline_parse_inst_t *)&cmd_show_port_supported_ptypes,
17129 (cmdline_parse_inst_t *)&cmd_set_port_ptypes,
17130 (cmdline_parse_inst_t *)&cmd_ptype_mapping_get,
17131 (cmdline_parse_inst_t *)&cmd_ptype_mapping_replace,
17132 (cmdline_parse_inst_t *)&cmd_ptype_mapping_reset,
17133 (cmdline_parse_inst_t *)&cmd_ptype_mapping_update,
17135 (cmdline_parse_inst_t *)&cmd_pctype_mapping_get,
17136 (cmdline_parse_inst_t *)&cmd_pctype_mapping_reset,
17137 (cmdline_parse_inst_t *)&cmd_pctype_mapping_update,
17138 (cmdline_parse_inst_t *)&cmd_queue_region,
17139 (cmdline_parse_inst_t *)&cmd_region_flowtype,
17140 (cmdline_parse_inst_t *)&cmd_user_priority_region,
17141 (cmdline_parse_inst_t *)&cmd_flush_queue_region,
17142 (cmdline_parse_inst_t *)&cmd_show_queue_region_info_all,
17143 (cmdline_parse_inst_t *)&cmd_show_port_tm_cap,
17144 (cmdline_parse_inst_t *)&cmd_show_port_tm_level_cap,
17145 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_cap,
17146 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_type,
17147 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_stats,
17148 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shaper_profile,
17149 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shaper_profile,
17150 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shared_shaper,
17151 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shared_shaper,
17152 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_wred_profile,
17153 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_wred_profile,
17154 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_shaper_profile,
17155 (cmdline_parse_inst_t *)&cmd_add_port_tm_nonleaf_node,
17156 (cmdline_parse_inst_t *)&cmd_add_port_tm_nonleaf_node_pmode,
17157 (cmdline_parse_inst_t *)&cmd_add_port_tm_leaf_node,
17158 (cmdline_parse_inst_t *)&cmd_del_port_tm_node,
17159 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_parent,
17160 (cmdline_parse_inst_t *)&cmd_suspend_port_tm_node,
17161 (cmdline_parse_inst_t *)&cmd_resume_port_tm_node,
17162 (cmdline_parse_inst_t *)&cmd_port_tm_hierarchy_commit,
17163 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_ecn,
17164 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_dscp,
17165 (cmdline_parse_inst_t *)&cmd_port_tm_mark_vlan_dei,
17166 (cmdline_parse_inst_t *)&cmd_cfg_tunnel_udp_port,
17167 (cmdline_parse_inst_t *)&cmd_rx_offload_get_capa,
17168 (cmdline_parse_inst_t *)&cmd_rx_offload_get_configuration,
17169 (cmdline_parse_inst_t *)&cmd_config_per_port_rx_offload,
17170 (cmdline_parse_inst_t *)&cmd_config_per_queue_rx_offload,
17171 (cmdline_parse_inst_t *)&cmd_tx_offload_get_capa,
17172 (cmdline_parse_inst_t *)&cmd_tx_offload_get_configuration,
17173 (cmdline_parse_inst_t *)&cmd_config_per_port_tx_offload,
17174 (cmdline_parse_inst_t *)&cmd_config_per_queue_tx_offload,
17176 (cmdline_parse_inst_t *)&cmd_operate_bpf_ld_parse,
17177 (cmdline_parse_inst_t *)&cmd_operate_bpf_unld_parse,
17179 (cmdline_parse_inst_t *)&cmd_config_tx_metadata_specific,
17180 (cmdline_parse_inst_t *)&cmd_show_tx_metadata,
17181 (cmdline_parse_inst_t *)&cmd_show_rx_tx_desc_status,
17182 (cmdline_parse_inst_t *)&cmd_show_rx_queue_desc_used_count,
17183 (cmdline_parse_inst_t *)&cmd_set_raw,
17184 (cmdline_parse_inst_t *)&cmd_show_set_raw,
17185 (cmdline_parse_inst_t *)&cmd_show_set_raw_all,
17186 (cmdline_parse_inst_t *)&cmd_config_tx_dynf_specific,
17187 (cmdline_parse_inst_t *)&cmd_show_fec_mode,
17188 (cmdline_parse_inst_t *)&cmd_set_fec_mode,
17189 (cmdline_parse_inst_t *)&cmd_show_capability,
17193 /* read cmdline commands from file */
17195 cmdline_read_from_file(const char *filename)
17197 struct cmdline *cl;
17199 cl = cmdline_file_new(main_ctx, "testpmd> ", filename);
17201 printf("Failed to create file based cmdline context: %s\n",
17206 cmdline_interact(cl);
17211 printf("Read CLI commands from %s\n", filename);
17214 /* prompt function, called from main on MAIN lcore */
17219 /* initialize non-constant commands */
17220 cmd_set_fwd_mode_init();
17221 cmd_set_fwd_retry_mode_init();
17223 testpmd_cl = cmdline_stdin_new(main_ctx, "testpmd> ");
17224 if (testpmd_cl == NULL)
17227 ret = atexit(prompt_exit);
17229 printf("Cannot set exit function for cmdline\n");
17231 cmdline_interact(testpmd_cl);
17233 cmdline_stdin_exit(testpmd_cl);
17239 if (testpmd_cl != NULL) {
17240 cmdline_quit(testpmd_cl);
17241 cmdline_stdin_exit(testpmd_cl);
17246 cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue)
17248 if (id == (portid_t)RTE_PORT_ALL) {
17251 RTE_ETH_FOREACH_DEV(pid) {
17252 /* check if need_reconfig has been set to 1 */
17253 if (ports[pid].need_reconfig == 0)
17254 ports[pid].need_reconfig = dev;
17255 /* check if need_reconfig_queues has been set to 1 */
17256 if (ports[pid].need_reconfig_queues == 0)
17257 ports[pid].need_reconfig_queues = queue;
17259 } else if (!port_id_is_invalid(id, DISABLED_WARN)) {
17260 /* check if need_reconfig has been set to 1 */
17261 if (ports[id].need_reconfig == 0)
17262 ports[id].need_reconfig = dev;
17263 /* check if need_reconfig_queues has been set to 1 */
17264 if (ports[id].need_reconfig_queues == 0)
17265 ports[id].need_reconfig_queues = queue;