From 57ccb278088fae9edc664893037e35cec8dea181 Mon Sep 17 00:00:00 2001 From: Konstantin Ananyev Date: Mon, 2 Nov 2015 13:49:05 +0000 Subject: [PATCH] app/testpmd: add description of queue info command Fixes: ab3257e13dc4 ("app/testpmd: add command to display queue info") Signed-off-by: Konstantin Ananyev Acked-by: Pablo de Lara --- app/test-pmd/cmdline.c | 3 +++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index 7187cd85b3..73298c94ea 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -199,6 +199,9 @@ static void cmd_help_long_parsed(void *parsed_result, "clear port (info|stats|xstats|fdir|stat_qmap) (port_id|all)\n" " Clear information for port_id, or all.\n\n" + "show (rxq|txq) info (port_id) (queue_id)\n" + " Display information for configured RX/TX queue.\n\n" + "show config (rxtx|cores|fwd|txpkts)\n" " Display the given configuration.\n\n" diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst index 44cb965853..a520cc509c 100644 --- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst +++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst @@ -205,6 +205,13 @@ For example:: testpmd> clear port stats all +show (rxq|txq) +~~~~~~~~~~~~~~ + +Display information for a given port's RX/TX queue:: + + testpmd> show (rxq|txq) info (port_id) (queue_id) + show config ~~~~~~~~~~~ -- 2.20.1