DPDK patches and discussions
 help / color / mirror / Atom feed
From: <skori@marvell.com>
To: Sunil Kumar Kori <skori@marvell.com>,
	Rakesh Kudurumalla <rkudurumalla@marvell.com>
Cc: <dev@dpdk.org>
Subject: [PATCH v2 1/1] doc: update command scope information
Date: Thu, 7 Mar 2024 15:36:07 +0530	[thread overview]
Message-ID: <20240307100607.3225783-1-skori@marvell.com> (raw)
In-Reply-To: <20240108073415.1987009-1-skori@marvell.com>

From: Sunil Kumar Kori <skori@marvell.com>

Set of CLI commands are classified into following types;

- Commands which must be used in script only.
- Commands which must be used via telnet session only.
- Commands which can be used either in script or via telnet session.

Rename "Dynamic" column to "Scope" to provide clear scope of commands.

Signed-off-by: Sunil Kumar Kori <skori@marvell.com>
Acked-by: Rakesh Kudurumalla <rkudurumalla@marvell.com>
---
v1..v2:
 - Rebase on top of the tree.

 doc/guides/tools/graph.rst | 217 +++++++++++++++++++------------------
 1 file changed, 111 insertions(+), 106 deletions(-)

diff --git a/doc/guides/tools/graph.rst b/doc/guides/tools/graph.rst
index 5308967b6b..d8c147d73e 100644
--- a/doc/guides/tools/graph.rst
+++ b/doc/guides/tools/graph.rst
@@ -168,112 +168,117 @@ file to express the requested use case configuration.
 .. table:: Exposed CLIs
    :widths: auto
 
-   +--------------------------------------+-----------------------------------+---------+----------+
-   |               Command                |             Description           | Dynamic | Optional |
-   +======================================+===================================+=========+==========+
-   | | graph <usecases> [bsz <size>]      | | Command to express the desired  |   No    |    No    |
-   | | [tmo <ns>] [coremask <bitmask>]    | | use case. Also enables/disable  |         |          |
-   | | model <rtc/mcd/default> pcap_enable| | pcap capturing.                 |         |          |
-   | | <0/1> num_pcap_pkts <num> pcap_file|                                   |         |          |
-   | | <output_capture_file>              |                                   |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | graph start                          | | Command to start the graph.     |   No    |    No    |
-   |                                      | | This command triggers that no   |         |          |
-   |                                      | | more commands are left to be    |         |          |
-   |                                      | | parsed and graph initialization |         |          |
-   |                                      | | can be started now. It must be  |         |          |
-   |                                      | | the last command in usecase.cli |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | graph stats show                     | | Command to dump current graph   |   Yes   |    Yes   |
-   |                                      | | statistics.                     |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | help graph                           | | Command to dump graph help      |   Yes   |    Yes   |
-   |                                      | | message.                        |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | | mempool <mempool_name> size        | | Command to create mempool which |   No    |    No    |
-   | | <mbuf_size> buffers                | | will be further associated to   |         |          |
-   | | <number_of_buffers>                | | RxQ to dequeue the packets.     |         |          |
-   | | cache <cache_size> numa <numa_id>  |                                   |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | help mempool                         | | Command to dump mempool help    |   Yes   |    Yes   |
-   |                                      | | message.                        |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | | ethdev <ethdev_name> rxq <n_queues>| | Command to create DPDK port with|   No    |    No    |
-   | | txq <n_queues> <mempool_name>      | | given number of Rx and Tx queues|         |          |
-   |                                      | | . Also attach RxQ with given    |         |          |
-   |                                      | | mempool. Each port can have     |         |          |
-   |                                      | | single mempool only i.e. all    |         |          |
-   |                                      | | RxQs will share the same mempool|         |          |
-   |                                      | | .                               |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | ethdev <ethdev_name> mtu <mtu_sz>    | | Command to configure MTU of DPDK|   Yes   |    Yes   |
-   |                                      | | port.                           |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | | ethdev forward <tx_dev_name>       | | Command to configure port       |   No    |    Yes   |
-   | | <rx_dev_name>                      | | forwarding of DPDK              |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   |  | ethdev <ethdev_name> promiscuous  | | Command to enable/disable       |   Yes   |    Yes   |
-   |  | <on/off>                          | | promiscuous mode on DPDK port.  |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | ethdev <ethdev_name> show            | | Command to dump current ethdev  |   Yes   |    Yes   |
-   |                                      | | configuration.                  |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | ethdev <ethdev_name> stats           | | Command to dump current ethdev  |   Yes   |    Yes   |
-   |                                      | | statistics.                     |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | | ethdev <ethdev_name> ip4 addr add  | | Command to configure IPv4       |   Yes   |    Yes   |
-   | | <ip> netmask <mask>                | | address on given PCI device. It |         |          |
-   |                                      | | is needed if user wishes to use |         |          |
-   |                                      | | ``ipv4_lookup`` node.           |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | | ethdev <ethdev_name> ip6 addr add  | | Command to configure IPv6       |   Yes   |    Yes   |
-   | | <ip> netmask <mask>                | | address on given PCI device. It |         |          |
-   |                                      | | is needed if user wishes to use |         |          |
-   |                                      | | ``ipv6_lookup`` node.           |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | help ethdev                          | | Command to dump ethdev help     |   Yes   |    Yes   |
-   |                                      | | message.                        |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | | ipv4_lookup route add ipv4 <ip>    | | Command to add a route into     |   Yes   |    Yes   |
-   | |  netmask <mask> via <ip>           | | ``ipv4_lookup`` LPM table. It is|         |          |
-   |                                      | | needed if user wishes to route  |         |          |
-   |                                      | | the packets based on LPM lookup |         |          |
-   |                                      | | table.                          |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | help ipv4_lookup                     | | Command to dump ``ipv4_lookup`` |   Yes   |    Yes   |
-   |                                      | | help message.                   |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | | ipv6_lookup route add ipv6 <ip>    | | Command to add a route into     |   Yes   |    Yes   |
-   | |  netmask <mask> via <ip>           | | ``ipv6_lookup`` LPM table. It is|         |          |
-   |                                      | | needed if user wishes to route  |         |          |
-   |                                      | | the packets based on LPM6 lookup|         |          |
-   |                                      | | table.                          |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | help ipv6_lookup                     | | Command to dump ``ipv6_lookup`` |   Yes   |    Yes   |
-   |                                      | | help message.                   |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | neigh add ipv4 <ip> <mac>            | | Command to add a neighbour      |   Yes   |    Yes   |
-   |                                      | | information into                |         |          |
-   |                                      | | ``ipv4_rewrite`` node.          |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | neigh add ipv6 <ip> <mac>            | | Command to add a neighbour      |   Yes   |    Yes   |
-   |                                      | | information into                |         |          |
-   |                                      | | ``ipv6_rewrite`` node.          |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | help neigh                           | | Command to dump neigh help      |   Yes   |    Yes   |
-   |                                      | | message.                        |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | | ethdev_rx map port <ethdev_name>   | | Command to add port-queue-core  |   No    |    No    |
-   | | queue <q_num> core <core_id>       | | mapping to ``ethdev_rx`` node.  |         |          |
-   |                                      | | ``ethdev_rx`` node instance will|         |          |
-   |                                      | | be pinned on given core and will|         |          |
-   |                                      | | poll on requested port/queue    |         |          |
-   |                                      | | pair.                           |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-   | help ethdev_rx                       | | Command to dump ethdev_rx help  |   Yes   |    Yes   |
-   |                                      | | message.                        |         |          |
-   +--------------------------------------+-----------------------------------+---------+----------+
-
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   |               Command                |             Description           |     Scope         | Optional |
+   +======================================+===================================+===================+==========+
+   | | graph <usecases> [bsz <size>]      | | Command to express the desired  | :ref:`1 <scopes>` |    No    |
+   | | [tmo <ns>] [coremask <bitmask>]    | | use case. Also enables/disable  |                   |          |
+   | | model <rtc/mcd/default> pcap_enable| | pcap capturing.                 |                   |          |
+   | | <0/1> num_pcap_pkts <num> pcap_file|                                   |                   |          |
+   | | <output_capture_file>              |                                   |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | graph start                          | | Command to start the graph.     | :ref:`1 <scopes>` |    No    |
+   |                                      | | This command triggers that no   |                   |          |
+   |                                      | | more commands are left to be    |                   |          |
+   |                                      | | parsed and graph initialization |                   |          |
+   |                                      | | can be started now. It must be  |                   |          |
+   |                                      | | the last command in usecase.cli |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | graph stats show                     | | Command to dump current graph   | :ref:`2 <scopes>` |    Yes   |
+   |                                      | | statistics.                     |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | help graph                           | | Command to dump graph help      | :ref:`2 <scopes>` |    Yes   |
+   |                                      | | message.                        |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | | mempool <mempool_name> size        | | Command to create mempool which | :ref:`1 <scopes>` |    No    |
+   | | <mbuf_size> buffers                | | will be further associated to   |                   |          |
+   | | <number_of_buffers>                | | RxQ to dequeue the packets.     |                   |          |
+   | | cache <cache_size> numa <numa_id>  |                                   |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | help mempool                         | | Command to dump mempool help    | :ref:`2 <scopes>` |    Yes   |
+   |                                      | | message.                        |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | | ethdev <ethdev_name> rxq <n_queues>| | Command to create DPDK port with| :ref:`1 <scopes>` |    No    |
+   | | txq <n_queues> <mempool_name>      | | given number of Rx and Tx queues|                   |          |
+   |                                      | | . Also attach RxQ with given    |                   |          |
+   |                                      | | mempool. Each port can have     |                   |          |
+   |                                      | | single mempool only i.e. all    |                   |          |
+   |                                      | | RxQs will share the same mempool|                   |          |
+   |                                      | | .                               |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | ethdev <ethdev_name> mtu <mtu_sz>    | | Command to configure MTU of DPDK| :ref:`3 <scopes>` |    Yes   |
+   |                                      | | port.                           |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | | ethdev forward <tx_dev_name>       | | Command to configure port       | :ref:`1 <scopes>` |    Yes   |
+   | | <rx_dev_name>                      | | forwarding of DPDK              |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | | ethdev <ethdev_name> promiscuous   | | Command to enable/disable       | :ref:`3 <scopes>` |    Yes   |
+   | | <on/off>                           | | promiscuous mode on DPDK port.  |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | ethdev <ethdev_name> show            | | Command to dump current ethdev  | :ref:`2 <scopes>` |    Yes   |
+   |                                      | | configuration.                  |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | ethdev <ethdev_name> stats           | | Command to dump current ethdev  | :ref:`2 <scopes>` |    Yes   |
+   |                                      | | statistics.                     |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | | ethdev <ethdev_name> ip4 addr add  | | Command to configure IPv4       | :ref:`3 <scopes>` |    Yes   |
+   | | <ip> netmask <mask>                | | address on given PCI device. It |                   |          |
+   |                                      | | is needed if user wishes to use |                   |          |
+   |                                      | | ``ipv4_lookup`` node.           |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | | ethdev <ethdev_name> ip6 addr add  | | Command to configure IPv6       | :ref:`3 <scopes>` |    Yes   |
+   | | <ip> netmask <mask>                | | address on given PCI device. It |                   |          |
+   |                                      | | is needed if user wishes to use |                   |          |
+   |                                      | | ``ipv6_lookup`` node.           |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | help ethdev                          | | Command to dump ethdev help     | :ref:`2 <scopes>` |    Yes   |
+   |                                      | | message.                        |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | | ipv4_lookup route add ipv4 <ip>    | | Command to add a route into     | :ref:`3 <scopes>` |    Yes   |
+   | |  netmask <mask> via <ip>           | | ``ipv4_lookup`` LPM table. It is|                   |          |
+   |                                      | | needed if user wishes to route  |                   |          |
+   |                                      | | the packets based on LPM lookup |                   |          |
+   |                                      | | table.                          |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | help ipv4_lookup                     | | Command to dump ``ipv4_lookup`` | :ref:`2 <scopes>` |    Yes   |
+   |                                      | | help message.                   |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | | ipv6_lookup route add ipv6 <ip>    | | Command to add a route into     | :ref:`3 <scopes>` |    Yes   |
+   | |  netmask <mask> via <ip>           | | ``ipv6_lookup`` LPM table. It is|                   |          |
+   |                                      | | needed if user wishes to route  |                   |          |
+   |                                      | | the packets based on LPM6 lookup|                   |          |
+   |                                      | | table.                          |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | help ipv6_lookup                     | | Command to dump ``ipv6_lookup`` | :ref:`2 <scopes>` |    Yes   |
+   |                                      | | help message.                   |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | neigh add ipv4 <ip> <mac>            | | Command to add a neighbour      | :ref:`3 <scopes>` |    Yes   |
+   |                                      | | information into                |                   |          |
+   |                                      | | ``ipv4_rewrite`` node.          |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | neigh add ipv6 <ip> <mac>            | | Command to add a neighbour      | :ref:`3 <scopes>` |    Yes   |
+   |                                      | | information into                |                   |          |
+   |                                      | | ``ipv6_rewrite`` node.          |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | help neigh                           | | Command to dump neigh help      | :ref:`2 <scopes>` |    Yes   |
+   |                                      | | message.                        |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | | ethdev_rx map port <ethdev_name>   | | Command to add port-queue-core  | :ref:`1 <scopes>` |    No    |
+   | | queue <q_num> core <core_id>       | | mapping to ``ethdev_rx`` node.  |                   |          |
+   |                                      | | ``ethdev_rx`` node instance will|                   |          |
+   |                                      | | be pinned on given core and will|                   |          |
+   |                                      | | poll on requested port/queue    |                   |          |
+   |                                      | | pair.                           |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+   | help ethdev_rx                       | | Command to dump ethdev_rx help  | :ref:`2 <scopes>` |    Yes   |
+   |                                      | | message.                        |                   |          |
+   +--------------------------------------+-----------------------------------+-------------------+----------+
+
+.. _scopes:
+
+1. Script only
+2. Telnet only
+3. Script and telnet both
 
 Runtime configuration
 ---------------------
-- 
2.25.1


  parent reply	other threads:[~2024-03-07 10:06 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-08  7:34 [PATCH] " skori
2024-01-17 10:58 ` Rakesh Kudurumalla
2024-03-07 10:06 ` skori [this message]
2024-03-07 10:08   ` [PATCH v2 1/1] " Sunil Kumar Kori
2024-03-21 17:06   ` Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240307100607.3225783-1-skori@marvell.com \
    --to=skori@marvell.com \
    --cc=dev@dpdk.org \
    --cc=rkudurumalla@marvell.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).