[dpdk-dev] [PATCH 06/45] examples/fips_validation: add eal cleanup to FIPS example

Min Hu (Connor) humin29 at huawei.com
Wed Apr 14 04:10:31 CEST 2021


From: Chengchang Tang <tangchengchang at huawei.com>

According to the programming guide, the rte_eal_init should be used pairs
with rte_eal_cleanup.

This patch add rte_eal_cleanup to this example to encourage new users of
DPDK to use it.

Fixes: 3d0fad56b74a ("examples/fips_validation: add crypto FIPS application")
Cc: stable at dpdk.org

Signed-off-by: Chengchang Tang <tangchengchang at huawei.com>
Signed-off-by: Min Hu (Connor) <humin29 at huawei.com>
---
 examples/fips_validation/main.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/examples/fips_validation/main.c b/examples/fips_validation/main.c
index b73691d..c175fe6 100644
--- a/examples/fips_validation/main.c
+++ b/examples/fips_validation/main.c
@@ -501,6 +501,9 @@ main(int argc, char *argv[])
 	fips_test_clear();
 	cryptodev_fips_validate_app_uninit();
 
+	/* clean up the EAL */
+	rte_eal_cleanup();
+
 	return ret;
 
 }
-- 
2.7.4



More information about the dev mailing list