Re: [dpdk-dev] [PATCH v4 1/4] test/crypto: remove illegal header include
From: Hemant Agrawal <hidden>
Date: 2021-09-08 06:38:34
On 9/8/2021 12:52 AM, Akhil Goyal wrote:
rte_cryptodev_pmd.h is an interface between driver and library and it is mentioned in the file that application cannot use it directly. Hence, removing the include. Signed-off-by: Akhil Goyal <redacted> Acked-by: Matan Azrad <redacted>
Series- Acked-by: Hemant Agrawal <redacted>
quoted hunk ↗ jump to hunk
--- app/test/test_cryptodev.c | 1 - app/test/test_cryptodev_asym.c | 1 - app/test/test_cryptodev_blockcipher.c | 1 - app/test/test_cryptodev_security_pdcp.c | 1 - app/test/test_ipsec.c | 1 - 5 files changed, 5 deletions(-)diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 843d07ba37..9e823db1e6 100644 --- a/app/test/test_cryptodev.c +++ b/app/test/test_cryptodev.c@@ -16,7 +16,6 @@ #include <rte_crypto.h> #include <rte_cryptodev.h> -#include <rte_cryptodev_pmd.h> #include <rte_string_fns.h> #ifdef RTE_CRYPTO_SCHEDULERdiff --git a/app/test/test_cryptodev_asym.c b/app/test/test_cryptodev_asym.c index 847b074a4f..9d19a6d6d9 100644 --- a/app/test/test_cryptodev_asym.c +++ b/app/test/test_cryptodev_asym.c@@ -12,7 +12,6 @@ #include <rte_pause.h> #include <rte_cryptodev.h> -#include <rte_cryptodev_pmd.h> #include <rte_crypto.h> #include "test_cryptodev.h"diff --git a/app/test/test_cryptodev_blockcipher.c b/app/test/test_cryptodev_blockcipher.c index 53fd4718af..1c948eb008 100644 --- a/app/test/test_cryptodev_blockcipher.c +++ b/app/test/test_cryptodev_blockcipher.c@@ -11,7 +11,6 @@ #include <rte_crypto.h> #include <rte_cryptodev.h> -#include <rte_cryptodev_pmd.h> #include "test.h" #include "test_cryptodev.h"diff --git a/app/test/test_cryptodev_security_pdcp.c b/app/test/test_cryptodev_security_pdcp.c index 30f3eb892c..a7641bab7a 100644 --- a/app/test/test_cryptodev_security_pdcp.c +++ b/app/test/test_cryptodev_security_pdcp.c@@ -17,7 +17,6 @@ #include <rte_crypto.h> #include <rte_cryptodev.h> -#include <rte_cryptodev_pmd.h> #include <rte_security.h> #include <rte_lcore.h>diff --git a/app/test/test_ipsec.c b/app/test/test_ipsec.c index fb90130ae2..c6d6b88d6d 100644 --- a/app/test/test_ipsec.c +++ b/app/test/test_ipsec.c@@ -15,7 +15,6 @@ #include <rte_crypto.h> #include <rte_cryptodev.h> -#include <rte_cryptodev_pmd.h> #include <rte_lcore.h> #include <rte_ipsec.h> #include <rte_random.h>