From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <jiayu.hu@intel.com>
Received: from mga02.intel.com (mga02.intel.com [134.134.136.20])
 by dpdk.org (Postfix) with ESMTP id DA929377E
 for <dev@dpdk.org>; Thu,  3 Aug 2017 11:43:35 +0200 (CEST)
Received: from fmsmga004.fm.intel.com ([10.253.24.48])
 by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;
 03 Aug 2017 02:43:34 -0700
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.41,315,1498546800"; d="scan'208";a="295157342"
Received: from dpdk15.sh.intel.com ([10.67.111.77])
 by fmsmga004.fm.intel.com with ESMTP; 03 Aug 2017 02:43:33 -0700
From: Jiayu Hu <jiayu.hu@intel.com>
To: dev@dpdk.org
Cc: jingjing.wu@intel.com,
	Jiayu Hu <jiayu.hu@intel.com>
Date: Thu,  3 Aug 2017 17:45:19 +0800
Message-Id: <1501753519-73895-1-git-send-email-jiayu.hu@intel.com>
X-Mailer: git-send-email 2.7.4
Subject: [dpdk-dev] [PATCH] app/testpmd: fix wrong cmdline message
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Thu, 03 Aug 2017 09:43:36 -0000

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.hu@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