From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v14 0/3] Support TCP/IPv4 GRO in DPDK Date: Sun, 09 Jul 2017 18:14:22 +0200 Message-ID: <1715312.N70aQMegMg@xps> References: <1499562826-25558-1-git-send-email-jiayu.hu@intel.com> <1499579206-26919-1-git-send-email-jiayu.hu@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, jianfeng.tan@intel.com, konstantin.ananyev@intel.com, yliu@fridaylinux.org, stephen@networkplumber.org, jingjing.wu@intel.com, lei.a.yao@intel.com To: Jiayu Hu Return-path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id C14337CAC for ; Sun, 9 Jul 2017 18:14:23 +0200 (CEST) In-Reply-To: <1499579206-26919-1-git-send-email-jiayu.hu@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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(+) 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. Applied with above changes, thanks A page in the programmer's guide is missing. Please fill it, thanks