From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH v3 5/5] app/testpmd: enable TCP/IPv4, VxLAN and GRE GSO Date: Thu, 14 Sep 2017 19:33:22 +0100 Message-ID: <5a1c6af8-6c55-7988-c180-9da0324e3bda@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> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Cc: konstantin.ananyev@intel.com, mark.b.kavanagh@intel.com, jianfeng.tan@intel.com To: Jiayu Hu , dev@dpdk.org 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) In-Reply-To: <1505184211-36728-6-git-send-email-jiayu.hu@intel.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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. <...>