From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id B212C2F7D for ; Thu, 14 Sep 2017 20:33:25 +0200 (CEST) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Sep 2017 11:33:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,394,1500966000"; d="scan'208";a="151942465" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.57]) ([10.237.220.57]) by fmsmga006.fm.intel.com with ESMTP; 14 Sep 2017 11:33:23 -0700 To: Jiayu Hu , dev@dpdk.org Cc: konstantin.ananyev@intel.com, mark.b.kavanagh@intel.com, jianfeng.tan@intel.com References: <1504598270-60080-1-git-send-email-jiayu.hu@intel.com> <1505184211-36728-1-git-send-email-jiayu.hu@intel.com> <1505184211-36728-6-git-send-email-jiayu.hu@intel.com> From: Ferruh Yigit Message-ID: <5a1c6af8-6c55-7988-c180-9da0324e3bda@intel.com> Date: Thu, 14 Sep 2017 19:33:22 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 In-Reply-To: <1505184211-36728-6-git-send-email-jiayu.hu@intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v3 5/5] app/testpmd: enable TCP/IPv4, VxLAN and GRE GSO 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: , X-List-Received-Date: Thu, 14 Sep 2017 18:33:27 -0000 On 9/12/2017 3:43 AM, Jiayu Hu wrote: > This patch adds GSO support to the csum forwarding engine. Oversized > packets transmitted over a GSO-enabled port will undergo segmentation > (with the exception of packet-types unsupported by the GSO library). > GSO support is disabled by default. > > GSO support may be toggled on a per-port basis, using the command: > > "set port gso on|off" > > The maximum packet length (including the packet header and payload) for > GSO segments may be set with the command: > > "set gso segsz " > > Show GSO configuration for a given port with the command: > > "show port gso" > > Signed-off-by: Jiayu Hu > Signed-off-by: Mark Kavanagh > --- > app/test-pmd/cmdline.c | 178 ++++++++++++++++++++++++++++++++++++++++++++++++ > app/test-pmd/config.c | 24 +++++++ > app/test-pmd/csumonly.c | 102 +++++++++++++++++++++++++-- > app/test-pmd/testpmd.c | 16 +++++ > app/test-pmd/testpmd.h | 10 +++ Can you please update tespmd document (testpmd_funcs.rst) with new commands. <...>