From e0e45bdc1e813dd4570434786b6aa660be69649f Mon Sep 17 00:00:00 2001 From: Kirill Rybalchenko Date: Wed, 31 Jan 2018 11:15:06 +0000 Subject: [PATCH] doc: fix DDP usage in testpmd Documentation and help string more clear describe meaning of arguments for DDP add del function. Fixes: 856ceb331b0a ("app/testpmd: enable DDP remove profile feature") Cc: stable@dpdk.org Signed-off-by: Kirill Rybalchenko Acked-by: John McNamara --- app/test-pmd/cmdline.c | 8 ++++---- doc/guides/nics/i40e.rst | 8 ++++---- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index 1e06dcd44f..b4522f46a6 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -645,10 +645,10 @@ static void cmd_help_long_parsed(void *parsed_result, " Set default traffic Management hierarchy on a port\n\n" #endif - "ddp add (port_id) (profile_path[,output_path])\n" + "ddp add (port_id) (profile_path[,backup_profile_path])\n" " Load a profile package on a port\n\n" - "ddp del (port_id) (profile_path)\n" + "ddp del (port_id) (backup_profile_path)\n" " Delete a profile package from a port\n\n" "ptype mapping get (port_id) (valid_only)\n" @@ -14511,7 +14511,7 @@ cmd_ddp_add_parsed( cmdline_parse_inst_t cmd_ddp_add = { .f = cmd_ddp_add_parsed, .data = NULL, - .help_str = "ddp add ", + .help_str = "ddp add ", .tokens = { (void *)&cmd_ddp_add_ddp, (void *)&cmd_ddp_add_add, @@ -14581,7 +14581,7 @@ cmd_ddp_del_parsed( cmdline_parse_inst_t cmd_ddp_del = { .f = cmd_ddp_del_parsed, .data = NULL, - .help_str = "ddp del ", + .help_str = "ddp del ", .tokens = { (void *)&cmd_ddp_del_ddp, (void *)&cmd_ddp_del_del, diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst index 166f4476df..41945b86f2 100644 --- a/doc/guides/nics/i40e.rst +++ b/doc/guides/nics/i40e.rst @@ -394,17 +394,17 @@ The DDP functionality requires a NIC firmware version of 6.0 or greater. Current implementation supports MPLSoUDP/MPLSoGRE/GTP-C/GTP-U/PPPoE/PPPoL2TP, steering can be used with rte_flow API. -Load a profile which supports MPLSoUDP/MPLSoGRE: +Load a profile which supports MPLSoUDP/MPLSoGRE and store backup profile: .. code-block:: console - testpmd> ddp add 0 ./mpls.pkgo + testpmd> ddp add 0 ./mpls.pkgo,./backup.pkgo -Delete a MPLS profile: +Delete a MPLS profile and restore backup profile: .. code-block:: console - testpmd> ddp del 0 ./mpls.pkgo + testpmd> ddp del 0 ./backup.pkgo Get loaded DDP package info list: diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst index a7113a67ad..1fb8ffbd96 100644 --- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst +++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst @@ -1423,16 +1423,16 @@ Delete an E-tag forwarding filter on a port:: ddp add ~~~~~~~ -Load a dynamic device personalization (DDP) package:: +Load a dynamic device personalization (DDP) profile and store backup profile:: - testpmd> ddp add (port_id) (package_path[,output_path]) + testpmd> ddp add (port_id) (profile_path[,backup_profile_path]) ddp del ~~~~~~~ -Delete a dynamic device personalization package:: +Delete a dynamic device personalization profile and restore backup profile:: - testpmd> ddp del (port_id) (package_path) + testpmd> ddp del (port_id) (backup_profile_path) ptype mapping ~~~~~~~~~~~~~ -- 2.20.1