* [PATCH 0/2] report the outer L3 and L4 packet type
@ 2023-06-05 3:12 Chaoyong He
2023-06-05 3:12 ` [PATCH 1/2] net/nfp: report outer L3 packet type by Rx descriptor Chaoyong He
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Chaoyong He @ 2023-06-05 3:12 UTC (permalink / raw)
To: dev; +Cc: oss-drivers, niklas.soderlund, Chaoyong He
This patch series add the support of:
1. Report the outer L3 packet type.
2. Report the L4 packet type for VXLAN and GENEVE.
Qin Ke (2):
net/nfp: report outer L3 packet type by Rx descriptor
net/nfp: add default process to report outer L4 packet type
drivers/net/nfp/nfp_rxtx.c | 21 +++++++++++++++++++--
drivers/net/nfp/nfp_rxtx.h | 21 +++++++++++++++++----
2 files changed, 36 insertions(+), 6 deletions(-)
--
2.39.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] net/nfp: report outer L3 packet type by Rx descriptor
2023-06-05 3:12 [PATCH 0/2] report the outer L3 and L4 packet type Chaoyong He
@ 2023-06-05 3:12 ` Chaoyong He
2023-06-05 3:12 ` [PATCH 2/2] net/nfp: add default process to report outer L4 packet type Chaoyong He
2023-06-06 9:43 ` [PATCH 0/2] report the outer L3 and " Ferruh Yigit
2 siblings, 0 replies; 4+ messages in thread
From: Chaoyong He @ 2023-06-05 3:12 UTC (permalink / raw)
To: dev; +Cc: oss-drivers, niklas.soderlund, Qin Ke, Chaoyong He
From: Qin Ke <qin.ke@corigine.com>
Parse outer layer 3 packet type from Rx descriptor and report it.
Signed-off-by: Qin Ke <qin.ke@corigine.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@corigine.com>
Reviewed-by: Chaoyong He <chaoyong.he@corigine.com>
---
drivers/net/nfp/nfp_rxtx.c | 17 +++++++++++++++++
drivers/net/nfp/nfp_rxtx.h | 21 +++++++++++++++++----
2 files changed, 34 insertions(+), 4 deletions(-)
diff --git a/drivers/net/nfp/nfp_rxtx.c b/drivers/net/nfp/nfp_rxtx.c
index 38e084171b..a36efd3aa9 100644
--- a/drivers/net/nfp/nfp_rxtx.c
+++ b/drivers/net/nfp/nfp_rxtx.c
@@ -321,6 +321,21 @@ nfp_net_set_ptype(const struct nfp_ptype_parsed *nfp_ptype, struct rte_mbuf *mb)
if (nfp_tunnel_ptype != NFP_NET_PTYPE_TUNNEL_NONE)
mbuf_ptype |= RTE_PTYPE_INNER_L2_ETHER;
+ switch (nfp_ptype->outer_l3_ptype) {
+ case NFP_NET_PTYPE_OUTER_L3_NONE:
+ break;
+ case NFP_NET_PTYPE_OUTER_L3_IPV4:
+ mbuf_ptype |= RTE_PTYPE_L3_IPV4;
+ break;
+ case NFP_NET_PTYPE_OUTER_L3_IPV6:
+ mbuf_ptype |= RTE_PTYPE_L3_IPV6;
+ break;
+ default:
+ PMD_RX_LOG(DEBUG, "Unrecognized nfp outer layer 3 packet type: %u",
+ nfp_ptype->outer_l3_ptype);
+ break;
+ }
+
switch (nfp_tunnel_ptype) {
case NFP_NET_PTYPE_TUNNEL_NONE:
break;
@@ -432,6 +447,8 @@ nfp_net_parse_ptype(struct nfp_net_rx_desc *rxds,
NFP_NET_PTYPE_L3_OFFSET;
nfp_ptype.tunnel_ptype = (rxd_ptype & NFP_NET_PTYPE_TUNNEL_MASK) >>
NFP_NET_PTYPE_TUNNEL_OFFSET;
+ nfp_ptype.outer_l3_ptype = (rxd_ptype & NFP_NET_PTYPE_OUTER_L3_MASK) >>
+ NFP_NET_PTYPE_OUTER_L3_OFFSET;
nfp_net_set_ptype(&nfp_ptype, mb);
}
diff --git a/drivers/net/nfp/nfp_rxtx.h b/drivers/net/nfp/nfp_rxtx.h
index eebe9b3ee2..cf713b0cd5 100644
--- a/drivers/net/nfp/nfp_rxtx.h
+++ b/drivers/net/nfp/nfp_rxtx.h
@@ -178,7 +178,7 @@ struct nfp_net_txq {
* 1 0
* 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- * | |tunnel | l3 | l4 |
+ * | |ol3|tunnel | l3 | l4 |
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
*
* Bit map about nfp packet type refers to the following:
@@ -210,6 +210,12 @@ struct nfp_net_txq {
* 0101: NFP_NET_PTYPE_TUNNEL_GENEVE
* 0010, 0011, 0110~1111: reserved
*
+ * Outer L3: bit 10~11, used for outer layer 3.
+ * 00: NFP_NET_PTYPE_OUTER_L3_NONE
+ * 01: NFP_NET_PTYPE_OUTER_L3_IPV6
+ * 10: NFP_NET_PTYPE_OUTER_L3_IPV4
+ * 11: reserved
+ *
* Reserved: bit 10~15, used for extension.
*/
@@ -217,10 +223,12 @@ struct nfp_net_txq {
#define NFP_NET_PTYPE_L4_MASK 0x0007
#define NFP_NET_PTYPE_L3_MASK 0x0038
#define NFP_NET_PTYPE_TUNNEL_MASK 0x03c0
+#define NFP_NET_PTYPE_OUTER_L3_MASK 0x0c00
#define NFP_NET_PTYPE_L4_OFFSET 0
#define NFP_NET_PTYPE_L3_OFFSET 3
#define NFP_NET_PTYPE_TUNNEL_OFFSET 6
+#define NFP_NET_PTYPE_OUTER_L3_OFFSET 10
/* Case about nfp packet type based on the bit map above. */
#define NFP_NET_PTYPE_L4_NONE 0
@@ -244,13 +252,18 @@ struct nfp_net_txq {
#define NFP_NET_PTYPE_TUNNEL_NVGRE 4
#define NFP_NET_PTYPE_TUNNEL_GENEVE 5
+#define NFP_NET_PTYPE_OUTER_L3_NONE 0
+#define NFP_NET_PTYPE_OUTER_L3_IPV6 1
+#define NFP_NET_PTYPE_OUTER_L3_IPV4 2
+
#define NFP_PTYPE2RTE(tunnel, type) ((tunnel) ? RTE_PTYPE_INNER_##type : RTE_PTYPE_##type)
/* Record NFP packet type parsed from rxd.offload_info. */
struct nfp_ptype_parsed {
- uint8_t l4_ptype; /**< Packet type of layer 4, or inner layer 4. */
- uint8_t l3_ptype; /**< Packet type of layer 3, or inner layer 3. */
- uint8_t tunnel_ptype; /**< Packet type of tunnel. */
+ uint8_t l4_ptype; /**< Packet type of layer 4, or inner layer 4. */
+ uint8_t l3_ptype; /**< Packet type of layer 3, or inner layer 3. */
+ uint8_t tunnel_ptype; /**< Packet type of tunnel. */
+ uint8_t outer_l3_ptype; /**< Packet type of outer layer 3. */
};
struct nfp_net_rx_desc {
--
2.39.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 2/2] net/nfp: add default process to report outer L4 packet type
2023-06-05 3:12 [PATCH 0/2] report the outer L3 and L4 packet type Chaoyong He
2023-06-05 3:12 ` [PATCH 1/2] net/nfp: report outer L3 packet type by Rx descriptor Chaoyong He
@ 2023-06-05 3:12 ` Chaoyong He
2023-06-06 9:43 ` [PATCH 0/2] report the outer L3 and " Ferruh Yigit
2 siblings, 0 replies; 4+ messages in thread
From: Chaoyong He @ 2023-06-05 3:12 UTC (permalink / raw)
To: dev; +Cc: oss-drivers, niklas.soderlund, Qin Ke, Chaoyong He
From: Qin Ke <qin.ke@corigine.com>
The parsing of outer layer 4 packet type by Rx descriptor is not
supported, add default process to report the outer layer 4 packet
type for VXLAN and GENEVE packets.
Signed-off-by: Qin Ke <qin.ke@corigine.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@corigine.com>
Reviewed-by: Chaoyong He <chaoyong.he@corigine.com>
---
drivers/net/nfp/nfp_rxtx.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/nfp/nfp_rxtx.c b/drivers/net/nfp/nfp_rxtx.c
index a36efd3aa9..0ac9d6db03 100644
--- a/drivers/net/nfp/nfp_rxtx.c
+++ b/drivers/net/nfp/nfp_rxtx.c
@@ -340,13 +340,13 @@ nfp_net_set_ptype(const struct nfp_ptype_parsed *nfp_ptype, struct rte_mbuf *mb)
case NFP_NET_PTYPE_TUNNEL_NONE:
break;
case NFP_NET_PTYPE_TUNNEL_VXLAN:
- mbuf_ptype |= RTE_PTYPE_TUNNEL_VXLAN;
+ mbuf_ptype |= RTE_PTYPE_TUNNEL_VXLAN | RTE_PTYPE_L4_UDP;
break;
case NFP_NET_PTYPE_TUNNEL_NVGRE:
mbuf_ptype |= RTE_PTYPE_TUNNEL_NVGRE;
break;
case NFP_NET_PTYPE_TUNNEL_GENEVE:
- mbuf_ptype |= RTE_PTYPE_TUNNEL_GENEVE;
+ mbuf_ptype |= RTE_PTYPE_TUNNEL_GENEVE | RTE_PTYPE_L4_UDP;
break;
default:
PMD_RX_LOG(DEBUG, "Unrecognized nfp tunnel packet type: %u",
--
2.39.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] report the outer L3 and L4 packet type
2023-06-05 3:12 [PATCH 0/2] report the outer L3 and L4 packet type Chaoyong He
2023-06-05 3:12 ` [PATCH 1/2] net/nfp: report outer L3 packet type by Rx descriptor Chaoyong He
2023-06-05 3:12 ` [PATCH 2/2] net/nfp: add default process to report outer L4 packet type Chaoyong He
@ 2023-06-06 9:43 ` Ferruh Yigit
2 siblings, 0 replies; 4+ messages in thread
From: Ferruh Yigit @ 2023-06-06 9:43 UTC (permalink / raw)
To: Chaoyong He, dev; +Cc: oss-drivers, niklas.soderlund
On 6/5/2023 4:12 AM, Chaoyong He wrote:
> This patch series add the support of:
> 1. Report the outer L3 packet type.
> 2. Report the L4 packet type for VXLAN and GENEVE.
>
> Qin Ke (2):
> net/nfp: report outer L3 packet type by Rx descriptor
> net/nfp: add default process to report outer L4 packet type
>
Series applied to dpdk-next-net/main, thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-06-06 9:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-05 3:12 [PATCH 0/2] report the outer L3 and L4 packet type Chaoyong He
2023-06-05 3:12 ` [PATCH 1/2] net/nfp: report outer L3 packet type by Rx descriptor Chaoyong He
2023-06-05 3:12 ` [PATCH 2/2] net/nfp: add default process to report outer L4 packet type Chaoyong He
2023-06-06 9:43 ` [PATCH 0/2] report the outer L3 and " Ferruh Yigit
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).