Re: [dpdk-dev] [PATCH v2] app/procinfo: Fix memory leak by rte_service_init

2018-01-26 Thread Van Haaren, Harry
> From: Varghese, Vipin > Sent: Thursday, January 11, 2018 7:48 PM > To: Van Haaren, Harry ; dev@dpdk.org > Cc: sta...@dpdk.org; Varghese, Vipin > Subject: [PATCH v2] app/procinfo: Fix memory leak by rte_service_init > > When procinfo is run multiple times against primary application, it > consum

[dpdk-dev] [PATCH v2] app/procinfo: Fix memory leak by rte_service_init

2018-01-11 Thread Vipin Varghese
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 --- app/proc_info/main.c | 3 +++