Re: [dpdk-dev] [PATCH] net/octeontx: fix memory leak of MAC address table

2020-02-03 Thread Jerin Jacob
On Wed, Jan 29, 2020 at 5:58 PM Harman Kalra wrote: > > On Wed, Jan 29, 2020 at 02:47:04PM +0530, Sunil Kumar Kori wrote: > > MAC address table is allocated during octeontx device create and > > same is used to maintain list of MAC address associated to port. > > This table is not getting freed ni

Re: [dpdk-dev] [PATCH] net/octeontx: fix memory leak of MAC address table

2020-01-29 Thread Harman Kalra
On Wed, Jan 29, 2020 at 02:47:04PM +0530, Sunil Kumar Kori wrote: > MAC address table is allocated during octeontx device create and > same is used to maintain list of MAC address associated to port. > This table is not getting freed niether in case of error nor during > graceful shutdown of port.

[dpdk-dev] [PATCH] net/octeontx: fix memory leak of MAC address table

2020-01-29 Thread Sunil Kumar Kori
MAC address table is allocated during octeontx device create and same is used to maintain list of MAC address associated to port. This table is not getting freed niether in case of error nor during graceful shutdown of port. Patch fixes memory required memory for both the cases as mentioned. Fixe