DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] net/iavf: fix IAVF_TX_OFFLOAD_MASK definition
@ 2023-10-24  9:13 Radu Nicolau
  2023-10-24  9:49 ` David Marchand
  2023-10-25  1:50 ` Zhang, Qi Z
  0 siblings, 2 replies; 10+ messages in thread
From: Radu Nicolau @ 2023-10-24  9:13 UTC (permalink / raw)
  To: Jingjing Wu, Beilei Xing; +Cc: dev, Radu Nicolau, stable

IAVF_TX_OFFLOAD_MASK definition contained
RTE_ETH_TX_OFFLOAD_SECURITY instead of
RTE_MBUF_F_TX_SEC_OFFLOAD.

Fixes: 6bc987ecb860 ("net/iavf: support IPsec inline crypto")
Cc: stable@dpdk.org

Signed-off-by: Radu Nicolau <radu.nicolau@intel.com>
---
 drivers/net/iavf/iavf_rxtx.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/iavf/iavf_rxtx.h b/drivers/net/iavf/iavf_rxtx.h
index 605ea3f824..f29c90fb21 100644
--- a/drivers/net/iavf/iavf_rxtx.h
+++ b/drivers/net/iavf/iavf_rxtx.h
@@ -98,7 +98,7 @@
 		RTE_MBUF_F_TX_TUNNEL_MASK |	\
 		RTE_MBUF_F_TX_OUTER_IP_CKSUM |  \
 		RTE_MBUF_F_TX_OUTER_UDP_CKSUM | \
-		RTE_ETH_TX_OFFLOAD_SECURITY)
+		RTE_MBUF_F_TX_SEC_OFFLOAD)
 
 #define IAVF_TX_OFFLOAD_NOTSUP_MASK \
 		(RTE_MBUF_F_TX_OFFLOAD_MASK ^ IAVF_TX_OFFLOAD_MASK)
-- 
2.25.1


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

end of thread, other threads:[~2023-10-25 10:15 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-24  9:13 [PATCH] net/iavf: fix IAVF_TX_OFFLOAD_MASK definition Radu Nicolau
2023-10-24  9:49 ` David Marchand
2023-10-24 10:22   ` Radu Nicolau
2023-10-24 11:24     ` Zhang, Qi Z
2023-10-24 14:48       ` Radu Nicolau
2023-10-24 23:30         ` Zhang, Qi Z
2023-10-25  9:01           ` Radu Nicolau
2023-10-25  9:07             ` David Marchand
2023-10-25 10:14               ` Radu Nicolau
2023-10-25  1:50 ` Zhang, Qi Z

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