From 40d64b33f7eac75ddb0e96cc90dc726de32d15b1 Mon Sep 17 00:00:00 2001 From: Ferruh Yigit Date: Wed, 30 Sep 2020 13:06:37 +0100 Subject: [PATCH] app/procinfo: close devices before exit As well as this is correct thing to close devices before exit, it is also useful to test the closing devices from secondary process. Signed-off-by: Ferruh Yigit --- app/proc-info/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/proc-info/main.c b/app/proc-info/main.c index 64fb83b38d..b0de39489a 100644 --- a/app/proc-info/main.c +++ b/app/proc-info/main.c @@ -1349,6 +1349,9 @@ main(int argc, char **argv) if (enable_iter_mempool) iter_mempool(mempool_iter_name); + RTE_ETH_FOREACH_DEV(i) + rte_eth_dev_close(i); + ret = rte_eal_cleanup(); if (ret) printf("Error from rte_eal_cleanup(), %d\n", ret); -- 2.20.1