[dpdk-dev] [PATCH] raw/ioat: fix memory leak in device configure

2021-06-17 Thread Kevin Laatz
During device configure, memory is allocated for "hdl_ring_flags". In the event of another call to the device configure function (reconfigure), a memory leak would occur. This patch fixes the memory leak by free'ing the memory before reallocating it. Fixes: 245efe544d8e ("raw/ioat: report status o

Re: [dpdk-dev] [PATCH] raw/ioat: fix memory leak in device configure

2021-06-17 Thread Bruce Richardson
On Thu, Jun 17, 2021 at 02:17:52PM +, Kevin Laatz wrote: > During device configure, memory is allocated for "hdl_ring_flags". In the > event of another call to the device configure function (reconfigure), a > memory leak would occur. This patch fixes the memory leak by free'ing the > memory bef

Re: [dpdk-dev] [PATCH] raw/ioat: fix memory leak in device configure

2021-06-22 Thread Thomas Monjalon
17/06/2021 16:20, Bruce Richardson: > On Thu, Jun 17, 2021 at 02:17:52PM +, Kevin Laatz wrote: > > During device configure, memory is allocated for "hdl_ring_flags". In the > > event of another call to the device configure function (reconfigure), a > > memory leak would occur. This patch fixes