From: Adam Dybkowski Date: Fri, 9 Apr 2021 12:13:00 +0000 (+0100) Subject: test/crypto: close device after tests X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=97f13c97eb45464f0c17c20b5ac7bb4bc25e2067;p=dpdk.git test/crypto: close device after tests This patch adds closing of the PMD after running the tests. Signed-off-by: Adam Dybkowski Acked-by: Akhil Goyal --- diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index f91debc168..d68855c442 100644 --- a/app/test/test_cryptodev.c +++ b/app/test/test_cryptodev.c @@ -842,6 +842,7 @@ static void testsuite_teardown(void) { struct crypto_testsuite_params *ts_params = &testsuite_params; + int res; if (ts_params->mbuf_pool != NULL) { RTE_LOG(DEBUG, USER1, "CRYPTO_MBUFPOOL count %u\n", @@ -863,6 +864,10 @@ testsuite_teardown(void) rte_mempool_free(ts_params->session_mpool); ts_params->session_mpool = NULL; } + + res = rte_cryptodev_close(ts_params->valid_devs[0]); + if (res) + RTE_LOG(ERR, USER1, "Crypto device close error %d\n", res); } static int