From patchwork Thu Aug 3 09:45:19 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Hu, Jiayu" X-Patchwork-Id: 27402 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 7D9BB37B0; Thu, 3 Aug 2017 11:43:37 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id DA929377E for ; 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 To: dev@dpdk.org Cc: jingjing.wu@intel.com, Jiayu Hu 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 --- 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"