Re: [dpdk-dev] [PATCH v3] net/vhost: fix potential memory leak

2020-04-10 Thread Maxime Coquelin
On 3/5/20 3:54 AM, Itsuro Oda wrote: > If a vhost device is closed before eth_dev_configure is done > to the device, internal resources allocated to the device > would not be freed. This patch fixes it. > > Fixes: 3d01b759d267 ("net/vhost: delay driver setup") > Cc: sta...@dpdk.org > > Signed-

Re: [dpdk-dev] [PATCH v3] net/vhost: fix potential memory leak

2020-03-20 Thread Kevin Traynor
On 20/03/2020 16:23, Maxime Coquelin wrote: > > > On 3/19/20 6:15 PM, Kevin Traynor wrote: >> Hi Itsuro, >> >> On 05/03/2020 02:54, Itsuro Oda wrote: >>> If a vhost device is closed before eth_dev_configure is done >>> to the device, internal resources allocated to the device >>> would not be fre

Re: [dpdk-dev] [PATCH v3] net/vhost: fix potential memory leak

2020-03-20 Thread Maxime Coquelin
On 3/19/20 6:15 PM, Kevin Traynor wrote: > Hi Itsuro, > > On 05/03/2020 02:54, Itsuro Oda wrote: >> If a vhost device is closed before eth_dev_configure is done >> to the device, internal resources allocated to the device >> would not be freed. This patch fixes it. >> >> Fixes: 3d01b759d267 ("n

Re: [dpdk-dev] [PATCH v3] net/vhost: fix potential memory leak

2020-03-19 Thread Kevin Traynor
Hi Itsuro, On 05/03/2020 02:54, Itsuro Oda wrote: > If a vhost device is closed before eth_dev_configure is done > to the device, internal resources allocated to the device > would not be freed. This patch fixes it. > > Fixes: 3d01b759d267 ("net/vhost: delay driver setup") > Cc: sta...@dpdk.org >

[dpdk-dev] [PATCH v3] net/vhost: fix potential memory leak

2020-03-04 Thread Itsuro Oda
If a vhost device is closed before eth_dev_configure is done to the device, internal resources allocated to the device would not be freed. This patch fixes it. Fixes: 3d01b759d267 ("net/vhost: delay driver setup") Cc: sta...@dpdk.org Signed-off-by: Itsuro Oda Reviewed-by: Xiaolong Ye --- v2: -