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

2019-06-05 Thread Burakov, Anatoly
On 05-Jun-19 10:33 AM, Thomas Monjalon wrote: 09/05/2019 10:29, Burakov, Anatoly: On 08-May-19 11:35 PM, Erik Gabriel Carrillo wrote: By using a lock added to the rte_mem_config (which lives in shared memory), we can synchronize multiple processes in init/finalize and safely free allocations ma

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

2019-06-05 Thread Thomas Monjalon
09/05/2019 10:29, Burakov, Anatoly: > On 08-May-19 11:35 PM, Erik Gabriel Carrillo wrote: > > By using a lock added to the rte_mem_config (which lives in shared > > memory), we can synchronize multiple processes in init/finalize and > > safely free allocations made during init. > > > > Signed-off-

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

2019-05-09 Thread Burakov, Anatoly
On 08-May-19 11:35 PM, Erik Gabriel Carrillo wrote: By using a lock added to the rte_mem_config (which lives in shared memory), we can synchronize multiple processes in init/finalize and safely free allocations made during init. Signed-off-by: Erik Gabriel Carrillo --- changes in v3: - The pr