app/testpmd: fix Tx/Rx descriptor query error log
authorHongbo Zheng <zhenghongbo3@huawei.com>
Mon, 29 Mar 2021 06:46:43 +0000 (14:46 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 30 Mar 2021 14:34:48 +0000 (16:34 +0200)
This patch adds more err info for Tx/Rx descriptor query command.

Fixes: fae9aa717d6c ("app/testpmd: support checking descriptor status")
Cc: stable@dpdk.org
Signed-off-by: Hongbo Zheng <zhenghongbo3@huawei.com>
Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
Acked-by: Xiaoyun Li <xiaoyun.li@intel.com>
app/test-pmd/cmdline.c

index 14110eb..f44116b 100644 (file)
@@ -16629,7 +16629,8 @@ cmd_show_rx_tx_desc_status_parsed(void *parsed_result,
                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);
+                       printf("Invalid input: queue id = %d, desc id = %d\n",
+                              res->cmd_qid, res->cmd_did);
                        return;
                }
                if (rc == RTE_ETH_RX_DESC_AVAIL)
@@ -16642,7 +16643,8 @@ cmd_show_rx_tx_desc_status_parsed(void *parsed_result,
                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);
+                       printf("Invalid input: queue id = %d, desc id = %d\n",
+                              res->cmd_qid, res->cmd_did);
                        return;
                }
                if (rc == RTE_ETH_TX_DESC_FULL)