From 8650e9350de807e8ef1a8a64a039f62fc1934646 Mon Sep 17 00:00:00 2001 From: Erik Gabriel Carrillo Date: Mon, 6 May 2019 16:03:51 -0500 Subject: [PATCH] test: call timer subsystem finalize at exit The eal_flags_autotest checks that no hugepage map files are left behind after a process exits, which can only be the case if all allocations made from DPDK heaps were freed back to the freelist, resulting in the hugepage map files being unlinked automatically. Add a call to rte_timer_subsystem_finalize() at application exit time to release allocations now made by the timer library. Fixes: c0749f7096c7 ("timer: allow management in shared memory") Signed-off-by: Erik Gabriel Carrillo --- app/test/test.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/test/test.c b/app/test/test.c index fbe446440f..ea1e98f2ec 100644 --- a/app/test/test.c +++ b/app/test/test.c @@ -187,6 +187,9 @@ main(int argc, char **argv) ret = 0; out: +#ifdef RTE_LIBRTE_TIMER + rte_timer_subsystem_finalize(); +#endif rte_eal_cleanup(); return ret; } -- 2.20.1