DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 1/2] common/cnxk: support IPv6 fragment flow pattern item
@ 2022-04-27  6:23 psatheesh
  2022-04-27  6:23 ` [dpdk-dev] [PATCH 2/2] net/cnxk: " psatheesh
  0 siblings, 1 reply; 3+ messages in thread
From: psatheesh @ 2022-04-27  6:23 UTC (permalink / raw)
  To: Nithin Dabilpuram, Kiran Kumar K, Sunil Kumar Kori, Satha Rao
  Cc: dev, Satheesh Paul

From: Satheesh Paul <psatheesh@marvell.com>

ROC changes to support RTE_FLOW_ITEM_TYPE_IPV6_FRAG_EXT
flow pattern item.

Signed-off-by: Satheesh Paul <psatheesh@marvell.com>
---
 drivers/common/cnxk/roc_npc.h       | 1 +
 drivers/common/cnxk/roc_npc_parse.c | 7 +++++++
 2 files changed, 8 insertions(+)

diff --git a/drivers/common/cnxk/roc_npc.h b/drivers/common/cnxk/roc_npc.h
index 723eadc649..3ba8a181df 100644
--- a/drivers/common/cnxk/roc_npc.h
+++ b/drivers/common/cnxk/roc_npc.h
@@ -15,6 +15,7 @@ enum roc_npc_item_type {
 	ROC_NPC_ITEM_TYPE_E_TAG,
 	ROC_NPC_ITEM_TYPE_IPV4,
 	ROC_NPC_ITEM_TYPE_IPV6,
+	ROC_NPC_ITEM_TYPE_IPV6_FRAG_EXT,
 	ROC_NPC_ITEM_TYPE_ARP_ETH_IPV4,
 	ROC_NPC_ITEM_TYPE_MPLS,
 	ROC_NPC_ITEM_TYPE_ICMP,
diff --git a/drivers/common/cnxk/roc_npc_parse.c b/drivers/common/cnxk/roc_npc_parse.c
index 1ce0dadfef..0748646779 100644
--- a/drivers/common/cnxk/roc_npc_parse.c
+++ b/drivers/common/cnxk/roc_npc_parse.c
@@ -594,6 +594,13 @@ npc_parse_lc(struct npc_parse_state *pst)
 		info.len = pst->pattern->size;
 		info.hw_hdr_len = 40;
 		break;
+	case ROC_NPC_ITEM_TYPE_IPV6_FRAG_EXT:
+		lid = NPC_LID_LC;
+		lt = NPC_LT_LC_IP6_EXT;
+		flags = NPC_F_LC_U_IP6_FRAG;
+		info.len = pst->pattern->size;
+		info.hw_hdr_len = 40;
+		break;
 	case ROC_NPC_ITEM_TYPE_L3_CUSTOM:
 		lt = NPC_LT_LC_CUSTOM0;
 		info.len = pst->pattern->size;
-- 
2.25.4


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-05-09 12:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-27  6:23 [dpdk-dev] [PATCH 1/2] common/cnxk: support IPv6 fragment flow pattern item psatheesh
2022-04-27  6:23 ` [dpdk-dev] [PATCH 2/2] net/cnxk: " psatheesh
2022-05-09 12:37   ` Jerin Jacob

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).