From: Chengchang Tang <tangchengch...@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: sta...@dpdk.org Signed-off-by: Chengchang Tang <tangchengch...@huawei.com> Signed-off-by: Min Hu (Connor) <humi...@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