From: yang_y_yi@163.com
To: dev@dpdk.org
Cc: jiayu.hu@intel.com, konstantin.ananyev@intel.com,
thomas@monjalon.net, yangyi01@inspur.com, yang_y_yi@163.com
Subject: [dpdk-dev] [PATCH v1 0/8] gro: support TCP/IPv6 and UDP/IPv6 for VLAN and VXLAN
Date: Mon, 21 Dec 2020 11:50:44 +0800 [thread overview]
Message-ID: <20201221035052.128292-1-yang_y_yi@163.com> (raw)
From: Yi Yang <yangyi01@inspur.com>
In production system, both IPv4 and IPv6 are required, this patch
series added TCP/IPv6 and UDP/IPv6 gro support for both VLAN and
VXLAN use cases, with this patch seiries applied, DPDK can support gro
for all the below cases:
VLAN TCP/IPv4
VLAN UDP/IPv4
VLAN TCP/IPv6
VLAN UDP/IPv6
IPv4 VXLAN TCP/IPv4
IPv4 VXLAN UDP/IPv4
IPv4 VXLAN TCP/IPv6
IPv4 VXLAN UDP/IPv6
IPv6 VXLAN TCP/IPv4
IPv6 VXLAN UDP/IPv4
IPv6 VXLAN TCP/IPv6
IPv4 VXLAN UDP/IPv6
Yi Yang (8):
gro: support TCP/IPv6
gro: support IPv4 VXLAN TCP/IPv6
gro: support IPv6 VXLAN TCP/IPv4
gro: support IPv6 VXLAN TCP/IPv6
gro: support UDP/IPv6
gro: support IPv4 VXLAN UDP/IPv6
gro: support IPv6 VXLAN UDP/IPv4
gro: support IPv6 VXLAN UDP/IPv6
.../prog_guide/generic_receive_offload_lib.rst | 16 +-
doc/guides/rel_notes/release_21_02.rst | 39 ++
lib/librte_gro/gro_tcp6.c | 368 +++++++++++++
lib/librte_gro/gro_tcp6.h | 314 +++++++++++
lib/librte_gro/gro_udp6.c | 487 +++++++++++++++++
lib/librte_gro/gro_udp6.h | 284 ++++++++++
lib/librte_gro/gro_vxlan6_tcp4.c | 507 +++++++++++++++++
lib/librte_gro/gro_vxlan6_tcp4.h | 153 ++++++
lib/librte_gro/gro_vxlan6_tcp6.c | 464 ++++++++++++++++
lib/librte_gro/gro_vxlan6_tcp6.h | 153 ++++++
lib/librte_gro/gro_vxlan6_udp4.c | 559 +++++++++++++++++++
lib/librte_gro/gro_vxlan6_udp4.h | 148 +++++
lib/librte_gro/gro_vxlan6_udp6.c | 589 ++++++++++++++++++++
lib/librte_gro/gro_vxlan6_udp6.h | 148 +++++
lib/librte_gro/gro_vxlan_tcp6.c | 496 +++++++++++++++++
lib/librte_gro/gro_vxlan_tcp6.h | 156 ++++++
lib/librte_gro/gro_vxlan_udp6.c | 607 +++++++++++++++++++++
lib/librte_gro/gro_vxlan_udp6.h | 152 ++++++
lib/librte_gro/meson.build | 2 +-
lib/librte_gro/rte_gro.c | 537 +++++++++++++++++-
lib/librte_gro/rte_gro.h | 24 +
21 files changed, 6186 insertions(+), 17 deletions(-)
create mode 100644 lib/librte_gro/gro_tcp6.c
create mode 100644 lib/librte_gro/gro_tcp6.h
create mode 100644 lib/librte_gro/gro_udp6.c
create mode 100644 lib/librte_gro/gro_udp6.h
create mode 100644 lib/librte_gro/gro_vxlan6_tcp4.c
create mode 100644 lib/librte_gro/gro_vxlan6_tcp4.h
create mode 100644 lib/librte_gro/gro_vxlan6_tcp6.c
create mode 100644 lib/librte_gro/gro_vxlan6_tcp6.h
create mode 100644 lib/librte_gro/gro_vxlan6_udp4.c
create mode 100644 lib/librte_gro/gro_vxlan6_udp4.h
create mode 100644 lib/librte_gro/gro_vxlan6_udp6.c
create mode 100644 lib/librte_gro/gro_vxlan6_udp6.h
create mode 100644 lib/librte_gro/gro_vxlan_tcp6.c
create mode 100644 lib/librte_gro/gro_vxlan_tcp6.h
create mode 100644 lib/librte_gro/gro_vxlan_udp6.c
create mode 100644 lib/librte_gro/gro_vxlan_udp6.h
--
1.8.3.1
next reply other threads:[~2020-12-21 3:51 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-21 3:50 yang_y_yi [this message]
2020-12-21 3:50 ` [dpdk-dev] [PATCH v1 1/8] gro: support TCP/IPv6 yang_y_yi
2020-12-21 3:50 ` [dpdk-dev] [PATCH v1 2/8] gro: support IPv4 VXLAN TCP/IPv6 yang_y_yi
2020-12-21 3:50 ` [dpdk-dev] [PATCH v1 3/8] gro: support IPv6 VXLAN TCP/IPv4 yang_y_yi
2020-12-21 3:50 ` [dpdk-dev] [PATCH v1 4/8] gro: support IPv6 VXLAN TCP/IPv6 yang_y_yi
2020-12-21 3:50 ` [dpdk-dev] [PATCH v1 5/8] gro: support UDP/IPv6 yang_y_yi
2020-12-21 3:50 ` [dpdk-dev] [PATCH v1 6/8] gro: support IPv4 VXLAN UDP/IPv6 yang_y_yi
2020-12-21 3:50 ` [dpdk-dev] [PATCH v1 7/8] gro: support IPv6 VXLAN UDP/IPv4 yang_y_yi
2020-12-21 3:50 ` [dpdk-dev] [PATCH v1 8/8] gro: support IPv6 VXLAN UDP/IPv6 yang_y_yi
2021-03-24 21:22 ` [dpdk-dev] [PATCH v1 0/8] gro: support TCP/IPv6 and UDP/IPv6 for VLAN and VXLAN Thomas Monjalon
2021-07-24 8:48 ` Thomas Monjalon
2021-07-25 23:53 ` Hu, Jiayu
2023-06-12 2:11 ` Stephen Hemminger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201221035052.128292-1-yang_y_yi@163.com \
--to=yang_y_yi@163.com \
--cc=dev@dpdk.org \
--cc=jiayu.hu@intel.com \
--cc=konstantin.ananyev@intel.com \
--cc=thomas@monjalon.net \
--cc=yangyi01@inspur.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).