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: aec9c13c5257 ("eal: add function to release internal resources") Cc: sta...@dpdk.org Signed-off-by: Chengchang Tang <tangchengch...@huawei.com> Signed-off-by: Min Hu (Connor) <humi...@huawei.com> --- examples/vm_power_manager/guest_cli/main.c | 3 +++ examples/vm_power_manager/main.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/examples/vm_power_manager/guest_cli/main.c b/examples/vm_power_manager/guest_cli/main.c index 4e17f7f..b8fa65e 100644 --- a/examples/vm_power_manager/guest_cli/main.c +++ b/examples/vm_power_manager/guest_cli/main.c @@ -200,5 +200,8 @@ main(int argc, char **argv) } run_cli(NULL); + /* clean up the EAL */ + rte_eal_cleanup(); + return 0; } diff --git a/examples/vm_power_manager/main.c b/examples/vm_power_manager/main.c index 799d7b9..7d5bf68 100644 --- a/examples/vm_power_manager/main.c +++ b/examples/vm_power_manager/main.c @@ -468,5 +468,8 @@ main(int argc, char **argv) free(ci->cd); + /* clean up the EAL */ + rte_eal_cleanup(); + return 0; } -- 2.7.4