[PATCH v2] app/procinfo: Fix memory leak by rte_service_init
From: Vipin Varghese <hidden>
Date: 2018-01-11 19:47:34
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Vipin Varghese <hidden>
Date: 2018-01-11 19:47:34
Subsystem:
the rest · Maintainer:
Linus Torvalds
When procinfo is run multiple times against primary application, it consumes huge page memory by rte_service_init. Which is not released at exit of application. Invoking rte_service_finalize to real memory and prevent memory leak. Signed-off-by: Vipin Varghese <redacted> --- 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 94d53f5..1884e06 100644
--- a/app/proc_info/main.c
+++ b/app/proc_info/main.c@@ -29,6 +29,7 @@ #include <rte_branch_prediction.h> #include <rte_string_fns.h> #include <rte_metrics.h> +#include <rte_service.h> /* Maximum long option length for option parsing. */ #define MAX_LONG_OPT_SZ 64
@@ -660,5 +661,7 @@ static void collectd_resolve_cnt_type(char *cnt_type, size_t cnt_type_len, if (enable_metrics) metrics_display(RTE_METRICS_GLOBAL); + rte_service_finalize(); + return 0; }
--
1.9.1