From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 49835206F2; Sun, 9 Jul 2017 12:14:23 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Sun, 09 Jul 2017 12:14:23 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=urqyf7EiZ8oWnAs FLwFW+QKbDbCisgGAKCd74YvAtPM=; b=GVCB9gcKTcKrkOTrsfA2Ro8lVQXCRZ6 MP0D3hnieD6cHWSejzvevzFZRhErDF12xnpbQQBJaI/b8RoMpGPpknae40Yg15bE xR/21GYTp3kIl2khV2MonIyxwlLu2dqIR0b1Xoa5Ni60wDE6z9Uxvmi5e2buDVex /2hX7s8kFqEg= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s= fm1; bh=urqyf7EiZ8oWnAsFLwFW+QKbDbCisgGAKCd74YvAtPM=; b=RxIST7zF qJpssJaozv1sIB5ucbw9H8GS61JEk9gydBKo5NK3zUowN7PTuPaeesfguDpLvyo8 X3Di2xxPSyawEj2/Vh8FVQD4PUxH9j6ElPX1x+l+Jf24JkLCuHDf/WZwd3wxrv/j 8ytWJLLZOS9TMQQk+ITiHpb1W1uTIf2LyG5+3E1mqm57nJJaHnkpL82wVZfJaUof fq7jMPbI7KzJ1CNcFmw51TxxwDukKkNPLDXgstgbfDokk0K7YiYURexk9reg7PwF wA09cbG9fAnwKkgCcv9yX42jPeu/trFHY8/h9S6EUAVyPgM2ghntKvT8KJF1aQAc PUSP8qqkqEEheQ== X-ME-Sender: X-Sasl-enc: +0H80ymVCqvE3unRw3lcq4YBekVgz5r5+G7N38yL4TYA 1499616862 Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id EE3B92424D; Sun, 9 Jul 2017 12:14:22 -0400 (EDT) From: Thomas Monjalon To: Jiayu Hu 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 Date: Sun, 09 Jul 2017 18:14:22 +0200 Message-ID: <1715312.N70aQMegMg@xps> In-Reply-To: <1499579206-26919-1-git-send-email-jiayu.hu@intel.com> 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-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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: Sun, 09 Jul 2017 16:14:24 -0000 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