From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 87513A04B5; Thu, 17 Sep 2020 05:50:26 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0CA731D50C; Thu, 17 Sep 2020 05:50:09 +0200 (CEST) Received: from mail-m974.mail.163.com (mail-m974.mail.163.com [123.126.97.4]) by dpdk.org (Postfix) with ESMTP id BFFF41D44A for ; Thu, 17 Sep 2020 05:50:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=163.com; s=s110527; h=From:Subject:Date:Message-Id:MIME-Version; bh=cJ6cV aYrSRO6GkheX9GK7UZCzNBDcqHt7AnX6dUL0wE=; b=KodYIVB3kl6VC+aSqSkqC xXc0KIepGElF/b0h+hL0YxoVqbcVl7Ea3n3nubJkSRSOQlKndc1+6C2a92oG9ONY 1r+9IKmAIq/FdgKSUZfNaKDLWl8GUpqKG+e9egvKFx2AB2XNRpo2EuLvbdgJ9ZUH IxQ252piHIJG8ii8rqnn8o= Received: from yangyi0100.home.langchao.com (unknown [111.207.123.58]) by smtp4 (Coremail) with SMTP id HNxpCgBHKOLn3GJfpGpBQA--.12527S5; Thu, 17 Sep 2020 11:50:02 +0800 (CST) From: yang_y_yi@163.com To: dev@dpdk.org Cc: jiayu.hu@intel.com, thomas@monjalon.net, yangyi01@inspur.com, yang_y_yi@163.com Date: Thu, 17 Sep 2020 11:49:59 +0800 Message-Id: <20200917034959.194372-4-yang_y_yi@163.com> X-Mailer: git-send-email 2.19.2.windows.1 In-Reply-To: <20200917034959.194372-1-yang_y_yi@163.com> References: <20200917034959.194372-1-yang_y_yi@163.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CM-TRANSID: HNxpCgBHKOLn3GJfpGpBQA--.12527S5 X-Coremail-Antispam: 1Uf129KBjvJXoW7ZF4fCF4rCrW8tF1UKw1xZrb_yoW8ZrWxpa n3urWxKr9xK345Jry2y3W8Cr4DZF4ktay5J348J34Iqwn3Wr40qrWFgF4Ik34DWFZ3Aa13 Za4UXa43AF4UuFDanT9S1TB71UUUUUUqnTZGkaVYY2UrUUUUjbIjqfuFe4nvWSU5nxnvy2 9KBjDUYxBIdaVFxhVjvjDU0xZFpf9x07UizVnUUUUU= X-Originating-IP: [111.207.123.58] X-CM-SenderInfo: 51dqwsp1b1xqqrwthudrp/1tbiMwqii1Xl6ReXCgAAsD Subject: [dpdk-dev] [PATCH v6 3/3] doc: update prog_guide and rel_notes for GRO 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Yi Yang Release 20.11 added UDP/IPv4 and VXLAN UDP/IPv4 support for GRO, so update prog_guide and rel_notes to reflect these changes. Signed-off-by: Yi Yang --- doc/guides/prog_guide/generic_receive_offload_lib.rst | 6 +++--- doc/guides/rel_notes/release_20_11.rst | 6 ++++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/doc/guides/prog_guide/generic_receive_offload_lib.rst b/doc/guides/prog_guide/generic_receive_offload_lib.rst index 5b3fb91..98a5d29 100644 --- a/doc/guides/prog_guide/generic_receive_offload_lib.rst +++ b/doc/guides/prog_guide/generic_receive_offload_lib.rst @@ -30,9 +30,9 @@ assumes the packets are complete (i.e., MF==0 && frag_off==0), when IP fragmentation is possible (i.e., DF==0). Additionally, it complies RFC 6864 to process the IPv4 ID field. -Currently, the GRO library provides GRO supports for TCP/IPv4 packets and -VxLAN packets which contain an outer IPv4 header and an inner TCP/IPv4 -packet. +Currently, the GRO library provides GRO supports for TCP/IPv4 and UDP/IPv4 +packets as well as VxLAN packets which contain an outer IPv4 header and an +inner TCP/IPv4 or UDP/IPv4 packet. Two Sets of API --------------- diff --git a/doc/guides/rel_notes/release_20_11.rst b/doc/guides/rel_notes/release_20_11.rst index cc72609..2842063 100644 --- a/doc/guides/rel_notes/release_20_11.rst +++ b/doc/guides/rel_notes/release_20_11.rst @@ -55,6 +55,12 @@ New Features Also, make sure to start the actual text at the margin. ======================================================= +* **Add UDP/IPv4 GRO support for VxLAN and non-VxLAN packets.** + + Add UDP/IPv4 GRO support for VxLAN and non-VxLAN packets. For + VxLAN packets, this adds inner UDP/IPv4 support, for non-VxLAN + packets, this adds UDP/IPv4 support. + Removed Items ------------- -- 1.8.3.1