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 <jiayu...@intel.com> --- app/test-pmd/cmdline.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index b1b36c1..cd8c358 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" -- 2.7.4