From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id EFE312C1A for ; Mon, 10 Jul 2017 04:21:24 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Jul 2017 19:21:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,337,1496127600"; d="scan'208";a="109355378" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by orsmga002.jf.intel.com with ESMTP; 09 Jul 2017 19:21:23 -0700 Received: from fmsmsx119.amr.corp.intel.com (10.18.124.207) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.319.2; Sun, 9 Jul 2017 19:21:23 -0700 Received: from shsmsx103.ccr.corp.intel.com (10.239.4.69) by FMSMSX119.amr.corp.intel.com (10.18.124.207) with Microsoft SMTP Server (TLS) id 14.3.319.2; Sun, 9 Jul 2017 19:21:22 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.146]) by SHSMSX103.ccr.corp.intel.com ([169.254.4.116]) with mapi id 14.03.0319.002; Mon, 10 Jul 2017 10:21:21 +0800 From: "Hu, Jiayu" To: Thomas Monjalon CC: "dev@dpdk.org" , "Tan, Jianfeng" , "Ananyev, Konstantin" , "yliu@fridaylinux.org" , "stephen@networkplumber.org" , "Wu, Jingjing" , "Yao, Lei A" Thread-Topic: [dpdk-dev] [PATCH v14 0/3] Support TCP/IPv4 GRO in DPDK Thread-Index: AQHS+HaQfxwflY+KlEurPh+uF3+lGaJLJdAAgAEvXfA= Date: Mon, 10 Jul 2017 02:21:20 +0000 Message-ID: References: <1499562826-25558-1-git-send-email-jiayu.hu@intel.com> <1499579206-26919-1-git-send-email-jiayu.hu@intel.com> <1715312.N70aQMegMg@xps> In-Reply-To: <1715312.N70aQMegMg@xps> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 10.0.102.7 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v14 0/3] Support TCP/IPv4 GRO in DPDK 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: Mon, 10 Jul 2017 02:21:25 -0000 Hi Thomas, > -----Original Message----- > From: Thomas Monjalon [mailto:thomas@monjalon.net] > Sent: Monday, July 10, 2017 12:14 AM > To: Hu, Jiayu > Cc: dev@dpdk.org; Tan, Jianfeng ; Ananyev, > Konstantin ; yliu@fridaylinux.org; > stephen@networkplumber.org; Wu, Jingjing ; Yao, > Lei A > Subject: Re: [dpdk-dev] [PATCH v14 0/3] Support TCP/IPv4 GRO in DPDK >=20 > 09/07/2017 07:46, Jiayu Hu: > > Jiayu Hu (3): > > lib: add Generic Receive Offload API framework > > lib/gro: add TCP/IPv4 GRO support > > app/testpmd: enable TCP/IPv4 GRO > > > > MAINTAINERS | 4 + > > app/test-pmd/cmdline.c | 125 +++++++ > > app/test-pmd/config.c | 36 ++ > > app/test-pmd/csumonly.c | 5 + > > app/test-pmd/testpmd.c | 3 + > > app/test-pmd/testpmd.h | 10 + > > config/common_base | 5 + > > doc/guides/rel_notes/release_17_08.rst | 7 + > > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 34 ++ > > lib/Makefile | 2 + > > lib/librte_gro/Makefile | 51 +++ > > lib/librte_gro/gro_tcp4.c | 505 > ++++++++++++++++++++++++++++ > > lib/librte_gro/gro_tcp4.h | 210 ++++++++++++ > > lib/librte_gro/rte_gro.c | 278 +++++++++++++++ > > lib/librte_gro/rte_gro.h | 211 ++++++++++++ > > lib/librte_gro/rte_gro_version.map | 12 + > > mk/rte.app.mk | 1 + > > 17 files changed, 1499 insertions(+) >=20 > I have added an EXPERIMENTAL note in MAINTAINERS file. > I have added the library in the doxygen doc and in the release notes > libraries list. >=20 > Applied with above changes, thanks >=20 > A page in the programmer's guide is missing. > Please fill it, thanks Thanks for your reminder. I will update it. BRs, Jiayu