DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] doc: update command scope information
@ 2024-01-08  7:34 skori
  2024-01-17 10:58 ` Rakesh Kudurumalla
  2024-03-07 10:06 ` [PATCH v2 1/1] " skori
  0 siblings, 2 replies; 5+ messages in thread
From: skori @ 2024-01-08  7:34 UTC (permalink / raw)
  To: Sunil Kumar Kori, Rakesh Kudurumalla; +Cc: dev

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>
---
 doc/guides/tools/graph.rst | 211 +++++++++++++++++++------------------
 1 file changed, 108 insertions(+), 103 deletions(-)

diff --git a/doc/guides/tools/graph.rst b/doc/guides/tools/graph.rst
index 1855d12891..6c559afe35 100644
--- a/doc/guides/tools/graph.rst
+++ b/doc/guides/tools/graph.rst
@@ -154,109 +154,114 @@ 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 <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 <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


^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] doc: update command scope information
  2024-01-08  7:34 [PATCH] doc: update command scope information skori
@ 2024-01-17 10:58 ` Rakesh Kudurumalla
  2024-03-07 10:06 ` [PATCH v2 1/1] " skori
  1 sibling, 0 replies; 5+ messages in thread
From: Rakesh Kudurumalla @ 2024-01-17 10:58 UTC (permalink / raw)
  To: Sunil Kumar Kori, Sunil Kumar Kori; +Cc: dev

[-- Attachment #1: Type: text/plain, Size: 23838 bytes --]

Acked-by: Rakesh Kudurumalla <rkudurumalla@marvell.com>

> -----Original Message-----
> From: skori@marvell.com <skori@marvell.com>
> Sent: Monday, January 8, 2024 1:04 PM
> To: Sunil Kumar Kori <skori@marvell.com>; Rakesh Kudurumalla
> <rkudurumalla@marvell.com>
> Cc: dev@dpdk.org
> Subject: [PATCH] doc: update command scope information
> 
> 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>
> ---
>  doc/guides/tools/graph.rst | 211 +++++++++++++++++++------------------
>  1 file changed, 108 insertions(+), 103 deletions(-)
> 
> diff --git a/doc/guides/tools/graph.rst b/doc/guides/tools/graph.rst index
> 1855d12891..6c559afe35 100644
> --- a/doc/guides/tools/graph.rst
> +++ b/doc/guides/tools/graph.rst
> @@ -154,109 +154,114 @@ 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 <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 <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


[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Size: 40822 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2 1/1] doc: update command scope information
  2024-01-08  7:34 [PATCH] doc: update command scope information skori
  2024-01-17 10:58 ` Rakesh Kudurumalla
@ 2024-03-07 10:06 ` skori
  2024-03-07 10:08   ` Sunil Kumar Kori
  2024-03-21 17:06   ` Thomas Monjalon
  1 sibling, 2 replies; 5+ messages in thread
From: skori @ 2024-03-07 10:06 UTC (permalink / raw)
  To: Sunil Kumar Kori, Rakesh Kudurumalla; +Cc: dev

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


^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH v2 1/1] doc: update command scope information
  2024-03-07 10:06 ` [PATCH v2 1/1] " skori
@ 2024-03-07 10:08   ` Sunil Kumar Kori
  2024-03-21 17:06   ` Thomas Monjalon
  1 sibling, 0 replies; 5+ messages in thread
From: Sunil Kumar Kori @ 2024-03-07 10:08 UTC (permalink / raw)
  To: Sunil Kumar Kori, Rakesh Kudurumalla, Thomas Monjalon; +Cc: dev

Hi Thomas,
Following patch is also rebased on ToT. Please do the needful.

Regards
Sunil Kumar Kori

> -----Original Message-----
> From: skori@marvell.com <skori@marvell.com>
> Sent: Thursday, March 7, 2024 3:36 PM
> 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
> 
> 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


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 1/1] doc: update command scope information
  2024-03-07 10:06 ` [PATCH v2 1/1] " skori
  2024-03-07 10:08   ` Sunil Kumar Kori
@ 2024-03-21 17:06   ` Thomas Monjalon
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2024-03-21 17:06 UTC (permalink / raw)
  To: Sunil Kumar Kori, Rakesh Kudurumalla; +Cc: dev, skori

07/03/2024 11:06, 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>

Applied, thanks.



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-03-21 17:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-08  7:34 [PATCH] doc: update command scope information skori
2024-01-17 10:58 ` Rakesh Kudurumalla
2024-03-07 10:06 ` [PATCH v2 1/1] " skori
2024-03-07 10:08   ` Sunil Kumar Kori
2024-03-21 17:06   ` Thomas Monjalon

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).