DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] mbuf: add packet offload Rx flag for keep CRC
@ 2025-01-24  9:59 Dengdui Huang
  2025-01-24 14:34 ` Morten Brørup
  2025-01-24 17:34 ` Stephen Hemminger
  0 siblings, 2 replies; 3+ messages in thread
From: Dengdui Huang @ 2025-01-24  9:59 UTC (permalink / raw)
  To: dev; +Cc: stephen, lihuisong, fengchengwen, haijie1, liuyonglong

After discussion[1], the drivers do not include the CRC in the packet
length calculation. This will cause users to be confused about whether
the mbuf contains CRC data. This patch adds a packet offload Rx flag,
indicating that CRC data exists at the end of the mbuf chain.

[1] https://inbox.dpdk.org/dev/20240206011030.2007689-1-haijie1@huawei.com/

Signed-off-by: Dengdui Huang <huangdengdui@huawei.com>
---
 lib/mbuf/rte_mbuf.c      | 3 ++-
 lib/mbuf/rte_mbuf_core.h | 8 +++++++-
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/lib/mbuf/rte_mbuf.c b/lib/mbuf/rte_mbuf.c
index 559d5ad8a7..c828200ea1 100644
--- a/lib/mbuf/rte_mbuf.c
+++ b/lib/mbuf/rte_mbuf.c
@@ -771,7 +771,7 @@ const char *rte_get_rx_ol_flag_name(uint64_t mask)
 	case RTE_MBUF_F_RX_OUTER_L4_CKSUM_GOOD: return "RTE_MBUF_F_RX_OUTER_L4_CKSUM_GOOD";
 	case RTE_MBUF_F_RX_OUTER_L4_CKSUM_INVALID:
 		return "RTE_MBUF_F_RX_OUTER_L4_CKSUM_INVALID";
-
+	case RTE_MBUF_F_RX_KEEP_CRC: return "RTE_MBUF_F_RX_KEEP_CRC";
 	default: return NULL;
 	}
 }
@@ -818,6 +818,7 @@ rte_get_rx_ol_flag_list(uint64_t mask, char *buf, size_t buflen)
 		  NULL },
 		{ RTE_MBUF_F_RX_OUTER_L4_CKSUM_UNKNOWN, RTE_MBUF_F_RX_OUTER_L4_CKSUM_MASK,
 		  "RTE_MBUF_F_RX_OUTER_L4_CKSUM_UNKNOWN" },
+		{ RTE_MBUF_F_RX_KEEP_CRC, RTE_MBUF_F_RX_KEEP_CRC, NULL },
 	};
 	const char *name;
 	unsigned int i;
diff --git a/lib/mbuf/rte_mbuf_core.h b/lib/mbuf/rte_mbuf_core.h
index a0df265b5d..0c57b929b7 100644
--- a/lib/mbuf/rte_mbuf_core.h
+++ b/lib/mbuf/rte_mbuf_core.h
@@ -180,9 +180,15 @@ extern "C" {
 #define RTE_MBUF_F_RX_OUTER_L4_CKSUM_GOOD	(1ULL << 22)
 #define RTE_MBUF_F_RX_OUTER_L4_CKSUM_INVALID	((1ULL << 21) | (1ULL << 22))
 
+/**
+ * Indicates that there is CRC data at the end of the mbuf chain.
+ * Note: pkt_len and date_len fields are not adjusted for CRC data.
+ */
+#define RTE_MBUF_F_RX_KEEP_CRC	(1ULL << 23)
+
 /* add new RX flags here, don't forget to update RTE_MBUF_F_FIRST_FREE */
 
-#define RTE_MBUF_F_FIRST_FREE (1ULL << 23)
+#define RTE_MBUF_F_FIRST_FREE (1ULL << 24)
 #define RTE_MBUF_F_LAST_FREE (1ULL << 40)
 
 /* add new TX flags here, don't forget to update RTE_MBUF_F_LAST_FREE  */
-- 
2.33.0


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

end of thread, other threads:[~2025-01-24 17:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-24  9:59 [PATCH] mbuf: add packet offload Rx flag for keep CRC Dengdui Huang
2025-01-24 14:34 ` Morten Brørup
2025-01-24 17:34 ` Stephen Hemminger

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