From: Jiayu Hu Date: Thu, 3 Aug 2017 09:45:19 +0000 (+0800) Subject: app/testpmd: fix GRO command description X-Git-Tag: spdx-start~2237 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=845efa4889b3fbcd375fe8c303fe5c90f8ed9d81;p=dpdk.git app/testpmd: fix GRO command description In testpmd, GRO is supported by csum forwarding engine, but the cmdline message shows GRO is supported by io forwarding engine. This patch is to fix this issue. Fixes: b40f8d782ba1 ("app/testpmd: enable TCP/IPv4 GRO") Signed-off-by: Jiayu Hu Reviewed-by: Ferruh Yigit --- diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index b1b36c14ba..cd8c358509 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -424,8 +424,8 @@ static void cmd_help_long_parsed(void *parsed_result, " Display the status of TCP Segmentation Offload.\n\n" "gro (on|off) (port_id)" - " Enable or disable Generic Receive Offload in io" - " forward engine.\n\n" + " Enable or disable Generic Receive Offload in" + " csum forwarding engine.\n\n" "gro set (max_flow_num) (max_item_num_per_flow) (port_id)\n" " Set max flow number and max packet number per-flow"