[v1] crypto/qat: fix IPsec MB header include for ARM
From: Emma Finn <hidden>
Date: 2026-06-30 10:01:12
Subsystem:
crypto api, the rest · Maintainers:
Herbert Xu, "David S. Miller", Linus Torvalds
From: Emma Finn <hidden>
Date: 2026-06-30 10:01:12
Subsystem:
crypto api, the rest · Maintainers:
Herbert Xu, "David S. Miller", Linus Torvalds
Update the header file to always include the platform-specific
IPsec MB header.
Fixes: 03c475d609eb ("crypto/qat: require IPsec MB for HMAC precomputes")
Reported-by: Thomas Monjalon <redacted>
Signed-off-by: Emma Finn <redacted>
---
drivers/crypto/qat/qat_sym_session.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/crypto/qat/qat_sym_session.h b/drivers/crypto/qat/qat_sym_session.h
index 0c7b9cc6cf..b18673a1f7 100644
--- a/drivers/crypto/qat/qat_sym_session.h
+++ b/drivers/crypto/qat/qat_sym_session.h@@ -14,11 +14,11 @@ #include "icp_qat_fw.h" #include "icp_qat_fw_la.h" -#ifndef RTE_QAT_OPENSSL -#ifndef RTE_ARCH_ARM +#ifdef RTE_ARCH_ARM +#include <ipsec-mb.h> +#else #include <intel-ipsec-mb.h> #endif -#endif /* * Key Modifier (KM) value used in KASUMI algorithm in F9 mode to XOR
--
2.43.0