From: Jie Wang <jie1x.wang@intel.com>
To: dev@dpdk.org
Cc: ferruh.yigit@intel.com, thomas@monjalon.net,
andrew.rybchenko@oktetlabs.ru, xiaoyun.li@intel.com,
stevex.yang@intel.com, jingjing.wu@intel.com,
beilei.xing@intel.com, wenjun1.wu@intel.com,
Jie Wang <jie1x.wang@intel.com>
Subject: [dpdk-dev] [PATCH v2 0/3] support PPPoL2TPv2oUDP RSS Hash
Date: Tue, 12 Oct 2021 18:25:05 +0800 [thread overview]
Message-ID: <20211012102508.275790-1-jie1x.wang@intel.com> (raw)
In-Reply-To: <20210924151705.287571-1-jie1x.wang@intel.com>
Support IAVF PPPoL2TPv2oUDP RSS Hash. Required to distribute packets
based on inner IP src+dest address and TCP/UDP src+dest port.
---
v2:
* update the rte_flow.rst and release notes.
* update l2tpv2 header format.
Jie Wang (3):
net/iavf: support PPPoL2TPv2oUDP RSS Hash
app/testpmd: support PPPoL2TPv2oUDP RSS Hash
ethdev: support PPPoL2TPv2oUDP RSS Hash
app/test-pmd/cmdline_flow.c | 34 ++++
doc/guides/prog_guide/rte_flow.rst | 25 +++
doc/guides/rel_notes/release_21_11.rst | 5 +
drivers/net/iavf/iavf_generic_flow.c | 131 +++++++++++++++
drivers/net/iavf/iavf_generic_flow.h | 15 ++
drivers/net/iavf/iavf_hash.c | 108 ++++++++++++-
lib/ethdev/rte_flow.c | 2 +
lib/ethdev/rte_flow.h | 65 ++++++++
lib/net/rte_l2tpv2.h | 214 +++++++++++++++++++++++++
9 files changed, 597 insertions(+), 2 deletions(-)
create mode 100644 lib/net/rte_l2tpv2.h
--
2.25.1
next prev parent reply other threads:[~2021-10-12 10:25 UTC|newest]
Thread overview: 71+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-24 15:17 [dpdk-dev] [PATCH 0/4] " Jie Wang
2021-09-24 15:17 ` [dpdk-dev] [PATCH 1/4] net/iavf: support PPPoL2TPv2oUDP over IPv4 " Jie Wang
2021-09-24 15:17 ` [dpdk-dev] [PATCH 2/4] app/testpmd: support PPPoL2TPv2oUDP " Jie Wang
2021-09-24 15:17 ` [dpdk-dev] [PATCH 3/4] ethdev: " Jie Wang
2021-09-30 14:38 ` Ori Kam
2021-10-05 14:42 ` Ferruh Yigit
2021-10-05 15:06 ` Ori Kam
2021-09-24 15:17 ` [dpdk-dev] [PATCH 4/4] net/iavf: support PPPoL2TPv2oUDP over IPv6 " Jie Wang
2021-10-12 10:25 ` Jie Wang [this message]
2021-10-12 10:25 ` [dpdk-dev] [PATCH v2 1/3] net/iavf: support PPPoL2TPv2oUDP " Jie Wang
2021-10-12 10:25 ` [dpdk-dev] [PATCH v2 2/3] app/testpmd: " Jie Wang
2021-10-12 15:31 ` Ori Kam
2021-10-13 8:15 ` Wang, Jie1X
2021-10-13 9:15 ` Ori Kam
2021-10-13 9:54 ` Wang, Jie1X
2021-10-13 10:19 ` Ori Kam
2021-10-12 10:25 ` [dpdk-dev] [PATCH v2 3/3] ethdev: " Jie Wang
2021-10-12 15:28 ` Ori Kam
2021-10-15 9:58 ` [dpdk-dev] [PATCH v3 0/3] " Jie Wang
2021-10-15 9:58 ` [dpdk-dev] [PATCH v3 1/3] ethdev: support PPP and L2TPV2 procotol Jie Wang
2021-10-15 11:10 ` Ferruh Yigit
2021-10-17 8:12 ` Ori Kam
2021-10-17 8:19 ` Ori Kam
2021-10-15 9:58 ` [dpdk-dev] [PATCH v3 2/3] net/iavf: support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-15 9:58 ` [dpdk-dev] [PATCH v3 3/3] app/testpmd: support L2TPV2 and PPP protocol pattern Jie Wang
2021-10-17 8:51 ` Ori Kam
2021-10-18 9:33 ` [dpdk-dev] [PATCH v4 0/3] support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-18 9:33 ` [dpdk-dev] [PATCH v4 1/3] ethdev: support PPP and L2TPV2 procotol Jie Wang
2021-10-18 10:56 ` Ori Kam
2021-10-18 12:39 ` Zhang, Qi Z
2021-10-18 9:33 ` [dpdk-dev] [PATCH v4 2/3] net/iavf: support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-18 9:33 ` [dpdk-dev] [PATCH v4 3/3] app/testpmd: support L2TPV2 and PPP protocol pattern Jie Wang
2021-10-18 11:03 ` Ori Kam
2021-10-18 12:41 ` Zhang, Qi Z
2021-10-19 3:08 ` [dpdk-dev] [PATCH v5 0/3] support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-19 3:08 ` [dpdk-dev] [PATCH v5 1/3] ethdev: support PPP and L2TPV2 procotol Jie Wang
2021-10-19 6:17 ` Ori Kam
2021-10-19 10:30 ` Ferruh Yigit
2021-10-19 3:08 ` [dpdk-dev] [PATCH v5 2/3] net/iavf: support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-20 1:57 ` Xing, Beilei
2021-10-19 3:08 ` [dpdk-dev] [PATCH v5 3/3] app/testpmd: support L2TPV2 and PPP protocol pattern Jie Wang
2021-10-19 9:41 ` Ferruh Yigit
2021-10-20 9:32 ` [dpdk-dev] [PATCH v6 0/3] support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-20 9:32 ` [dpdk-dev] [PATCH v6 1/3] ethdev: support PPP and L2TPV2 procotol Jie Wang
2021-10-20 9:53 ` Andrew Rybchenko
2021-10-20 9:32 ` [dpdk-dev] [PATCH v6 2/3] net/iavf: support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-21 2:07 ` Xing, Beilei
2021-10-20 9:32 ` [dpdk-dev] [PATCH v6 3/3] app/testpmd: support L2TPV2 and PPP protocol pattern Jie Wang
2021-10-21 6:26 ` [dpdk-dev] [PATCH v7 0/3] support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-21 6:26 ` [dpdk-dev] [PATCH v7 1/3] ethdev: support L2TPv2 and PPP procotol Jie Wang
2021-10-21 7:50 ` Ori Kam
2021-10-21 7:52 ` Andrew Rybchenko
2021-10-21 8:28 ` Wang, Jie1X
2021-10-21 8:30 ` Andrew Rybchenko
2021-10-21 8:41 ` Wang, Jie1X
2021-10-21 13:18 ` Ori Kam
2021-10-21 9:26 ` Ferruh Yigit
2021-10-21 9:29 ` Ferruh Yigit
2021-10-21 6:26 ` [dpdk-dev] [PATCH v7 2/3] net/iavf: support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-21 6:26 ` [dpdk-dev] [PATCH v7 3/3] app/testpmd: support L2TPv2 and PPP protocol pattern Jie Wang
2021-10-21 10:05 ` [dpdk-dev] [PATCH v8 0/3] support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-21 10:05 ` [dpdk-dev] [PATCH v8 1/3] ethdev: support L2TPv2 and PPP procotol Jie Wang
2021-10-21 10:13 ` Andrew Rybchenko
2021-10-21 10:05 ` [dpdk-dev] [PATCH v8 2/3] net/iavf: support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-21 10:05 ` [dpdk-dev] [PATCH v8 3/3] app/testpmd: support L2TPv2 and PPP protocol pattern Jie Wang
2021-10-21 10:49 ` [dpdk-dev] [PATCH v9 0/3] support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-21 10:49 ` [dpdk-dev] [PATCH v9 1/3] ethdev: support L2TPv2 and PPP procotol Jie Wang
2021-10-21 12:16 ` Ferruh Yigit
2021-10-21 10:49 ` [dpdk-dev] [PATCH v9 2/3] net/iavf: support PPPoL2TPv2oUDP RSS Hash Jie Wang
2021-10-21 10:49 ` [dpdk-dev] [PATCH v9 3/3] app/testpmd: support L2TPv2 and PPP protocol pattern Jie Wang
2021-10-21 12:17 ` [dpdk-dev] [PATCH v9 0/3] support PPPoL2TPv2oUDP RSS Hash Ferruh Yigit
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=20211012102508.275790-1-jie1x.wang@intel.com \
--to=jie1x.wang@intel.com \
--cc=andrew.rybchenko@oktetlabs.ru \
--cc=beilei.xing@intel.com \
--cc=dev@dpdk.org \
--cc=ferruh.yigit@intel.com \
--cc=jingjing.wu@intel.com \
--cc=stevex.yang@intel.com \
--cc=thomas@monjalon.net \
--cc=wenjun1.wu@intel.com \
--cc=xiaoyun.li@intel.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).