Re: [dpdk-dev] [PATCH] timer: fix resource leak in finalize

2019-05-02 Thread Carrillo, Erik G
> -Original Message- > From: Burakov, Anatoly > Sent: Thursday, May 2, 2019 8:04 AM > To: Carrillo, Erik G ; rsanf...@akamai.com; > tho...@monjalon.net > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] timer: fix resource leak in finalize > > On 02-May-1

Re: [dpdk-dev] [PATCH] timer: fix resource leak in finalize

2019-05-02 Thread Burakov, Anatoly
On 02-May-19 1:19 PM, Carrillo, Erik G wrote: -Original Message- From: Burakov, Anatoly Sent: Thursday, May 2, 2019 4:18 AM To: Carrillo, Erik G ; rsanf...@akamai.com; tho...@monjalon.net Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] timer: fix resource leak in finalize On 01-May

Re: [dpdk-dev] [PATCH] timer: fix resource leak in finalize

2019-05-02 Thread Carrillo, Erik G
> -Original Message- > From: Burakov, Anatoly > Sent: Thursday, May 2, 2019 4:18 AM > To: Carrillo, Erik G ; rsanf...@akamai.com; > tho...@monjalon.net > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] timer: fix resource leak in finalize > > On 01-M

Re: [dpdk-dev] [PATCH] timer: fix resource leak in finalize

2019-05-02 Thread Burakov, Anatoly
On 01-May-19 8:00 PM, Erik Gabriel Carrillo wrote: The finalize function should free the memzone created in the init function, rather than freeing the allocation the memzone references, otherwise a memzone descriptor can be leaked. Fixes: c0749f7096c7 ("timer: allow management in shared memory")

[dpdk-dev] [PATCH] timer: fix resource leak in finalize

2019-05-01 Thread Erik Gabriel Carrillo
The finalize function should free the memzone created in the init function, rather than freeing the allocation the memzone references, otherwise a memzone descriptor can be leaked. Fixes: c0749f7096c7 ("timer: allow management in shared memory") Signed-off-by: Erik Gabriel Carrillo --- lib/libr