DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ferruh Yigit <ferruh.yigit@intel.com>
To: kirankumark@marvell.com, Wenzhuo Lu <wenzhuo.lu@intel.com>,
	Jingjing Wu <jingjing.wu@intel.com>,
	Bernard Iremonger <bernard.iremonger@intel.com>,
	John McNamara <john.mcnamara@intel.com>,
	Marko Kovacevic <marko.kovacevic@intel.com>
Cc: dev@dpdk.org
Subject: Re: [dpdk-dev] [PATCH] app/test-pmd: add support for tx and rx desc statu
Date: Tue, 8 Oct 2019 19:33:01 +0100	[thread overview]
Message-ID: <ea7f0266-eba4-3431-e0e2-66959146fcc4@intel.com> (raw)
In-Reply-To: <20190903033928.26123-1-kirankumark@marvell.com>

On 9/3/2019 4:39 AM, kirankumark@marvell.com wrote:
> From: Kiran Kumar K <kirankumark@marvell.com>
> 
> Adding support to check TX and RX descriptor status.

+1 to the command

> 
> Signed-off-by: Kiran Kumar K <kirankumark@marvell.com>
> ---
>  app/test-pmd/cmdline.c                      | 111 ++++++++++++++++++++
>  doc/guides/testpmd_app_ug/testpmd_funcs.rst |   8 ++
>  2 files changed, 119 insertions(+)
> 
> diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
> index b6bc34b4d..c22d041c3 100644
> --- a/app/test-pmd/cmdline.c
> +++ b/app/test-pmd/cmdline.c
> @@ -18728,6 +18728,115 @@ cmdline_parse_inst_t cmd_show_tx_metadata = {
>  	},
>  };
>  
> +/* *** display rx/tx descriptor status *** */
> +struct cmd_show_rx_tx_desc_status_result {
> +	cmdline_fixed_string_t cmd_show;
> +	cmdline_fixed_string_t cmd_port;
> +	cmdline_fixed_string_t cmd_keyword;
> +	cmdline_fixed_string_t cmd_status;
> +	portid_t cmd_pid;
> +	portid_t cmd_qid;
> +	portid_t cmd_did;
> +};
> +
> +static void
> +cmd_show_rx_tx_desc_status_parsed(void *parsed_result,
> +		__attribute__((unused)) struct cmdline *cl,
> +		__attribute__((unused)) void *data)
> +{
> +	struct cmd_show_rx_tx_desc_status_result *res = parsed_result;
> +	int rc;
> +
> +	if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
> +		printf("invalid port id %u\n", res->cmd_pid);
> +		return;
> +	}
> +
> +	if (!strcmp(res->cmd_keyword, "rx")) {
> +		rc = rte_eth_rx_descriptor_status(res->cmd_pid, res->cmd_qid,
> +					     res->cmd_did);
> +		if (rc < 0) {
> +			printf("Invalid queueid = %d\n", res->cmd_qid);
> +			return;
> +		}
> +		if (rc == RTE_ETH_RX_DESC_AVAIL)
> +			printf("Desc status = AVAILABLE\n");
> +		else if (rc == RTE_ETH_RX_DESC_DONE)
> +			printf("Desc status = DONE\n");
> +		else
> +			printf("Desc status = UNAVAILABLE\n");
> +	} else if (!strcmp(res->cmd_keyword, "tx")) {
> +		rc = rte_eth_tx_descriptor_status(res->cmd_pid, res->cmd_qid,
> +					     res->cmd_did);
> +		if (rc < 0) {
> +			printf("Invalid queueid = %d\n", res->cmd_qid);
> +			return;
> +		}
> +		if (rc == RTE_ETH_TX_DESC_FULL)
> +			printf("Desc status = FULL\n");
> +		else if (rc == RTE_ETH_TX_DESC_DONE)
> +			printf("Desc status = DONE\n");
> +		else
> +			printf("Desc status = UNAVAILABLE\n");
> +	}
> +}
> +
> +cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_show =
> +	TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
> +			cmd_show, "show");
> +cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_port =
> +	TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
> +			cmd_port, "port");
> +cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_pid =
> +	TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
> +			cmd_pid, UINT16);
> +cmdline_parse_token_string_t cmd_show_rx_desc_status_keyword =
> +	TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
> +			cmd_keyword, "rx");
> +cmdline_parse_token_string_t cmd_show_tx_desc_status_keyword =
> +	TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
> +			cmd_keyword, "tx");
> +cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_status =
> +	TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
> +			cmd_status, "status");
> +cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_qid =
> +	TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
> +			cmd_qid, UINT16);
> +cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_did =
> +	TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
> +			cmd_did, UINT16);
> +cmdline_parse_inst_t cmd_show_rx_desc_status = {
> +	.f = cmd_show_rx_tx_desc_status_parsed,
> +	.data = NULL,
> +	.help_str = "show port <port_id> rx <queue_id> <desc_id> status",
> +	.tokens = {
> +		(void *)&cmd_show_rx_tx_desc_status_show,
> +		(void *)&cmd_show_rx_tx_desc_status_port,
> +		(void *)&cmd_show_rx_tx_desc_status_pid,
> +		(void *)&cmd_show_rx_desc_status_keyword,
> +		(void *)&cmd_show_rx_tx_desc_status_qid,
> +		(void *)&cmd_show_rx_tx_desc_status_did,
> +		(void *)&cmd_show_rx_tx_desc_status_status,
> +		NULL,
> +	},
> +};
> +
> +cmdline_parse_inst_t cmd_show_tx_desc_status = {
> +	.f = cmd_show_rx_tx_desc_status_parsed,
> +	.data = NULL,
> +	.help_str = "show port <port_id> tx <queue_id> <desc_id> status",

Please add new command to the help string, in 'cmd_help_long_parsed()'

> +	.tokens = {
> +		(void *)&cmd_show_rx_tx_desc_status_show,
> +		(void *)&cmd_show_rx_tx_desc_status_port,
> +		(void *)&cmd_show_rx_tx_desc_status_pid,
> +		(void *)&cmd_show_tx_desc_status_keyword,
> +		(void *)&cmd_show_rx_tx_desc_status_qid,
> +		(void *)&cmd_show_rx_tx_desc_status_did,
> +		(void *)&cmd_show_rx_tx_desc_status_status,
> +		NULL,
> +	},
> +};

Instead of creating two 'cmdline_parse_inst_t', you can use
'TOKEN_STRING_INITIALIZER' with '#' to add multiple value, like "rxq#txq", there
are multiple sample in testpmd.

> +
>  /* ******************************************************************************** */
>  
>  /* list of instructions */
> @@ -19016,6 +19125,8 @@ cmdline_parse_ctx_t main_ctx[] = {
>  #endif
>  	(cmdline_parse_inst_t *)&cmd_config_tx_metadata_specific,
>  	(cmdline_parse_inst_t *)&cmd_show_tx_metadata,
> +	(cmdline_parse_inst_t *)&cmd_show_rx_desc_status,
> +	(cmdline_parse_inst_t *)&cmd_show_tx_desc_status,
>  	(cmdline_parse_inst_t *)&cmd_set_raw,
>  	NULL,
>  };
> diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst
> index 67f4339ca..a708c5ccf 100644
> --- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst
> +++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst
> @@ -254,6 +254,14 @@ Display information for a given port's RX/TX queue::
>  
>     testpmd> show (rxq|txq) info (port_id) (queue_id)
>  
> +show desc status(rxq|txq)
> +~~~~~~~~~~~~~~~~~~~~~~~~~
> +
> +Display information for a given port's RX/TX descriptor status::
> +
> +   testpmd> show port (port_id) (rx|tx) (queue_id) (desc_id) status

Better to use 'rxq' or 'txq' for consistency.

and some variables has keyword before them, like "port 0",
some doesn't like <desc_id>, I think better to add a keyword for 'desc_id',
something like 'desc' perhaps.

> +
> +
>  show config
>  ~~~~~~~~~~~
>  
> 


  reply	other threads:[~2019-10-08 18:33 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-03  3:39 kirankumark
2019-10-08 18:33 ` Ferruh Yigit [this message]
2019-10-29 11:34 ` [dpdk-dev] [PATCH v2] " kirankumark
2019-11-06 16:56   ` Ferruh Yigit

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=ea7f0266-eba4-3431-e0e2-66959146fcc4@intel.com \
    --to=ferruh.yigit@intel.com \
    --cc=bernard.iremonger@intel.com \
    --cc=dev@dpdk.org \
    --cc=jingjing.wu@intel.com \
    --cc=john.mcnamara@intel.com \
    --cc=kirankumark@marvell.com \
    --cc=marko.kovacevic@intel.com \
    --cc=wenzhuo.lu@intel.com \
    /path/to/YOUR_REPLY

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

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