Re: [dpdk-dev] [PATCH 05/31] net/bnxt: fix dev close operation

2018-06-28 Thread Ajit Khaparde
> > > + PMD_DRV_LOG(INFO, "Calling Device uninit\n"); > > This looks like can be a debug message, what do you think? > ​Yes. Changed it to debug. ​ > > <...> > > > @@ -3456,7 +3469,7 @@ static int bnxt_pci_remove(struct rte_pci_device > *pci_dev) > > static struct rte_pci_driver bnxt_rte_pmd

Re: [dpdk-dev] [PATCH 05/31] net/bnxt: fix dev close operation

2018-06-26 Thread Ferruh Yigit
On 6/19/2018 10:30 PM, Ajit Khaparde wrote: > We are not cleaning up all the memory and also not unregistering > the driver during device close operation. This patch fixes the issue. > > Fixes: 893074951314 (net/bnxt: free memory in close operation) > Cc: sta...@dpdk.org > > Signed-off-by: Ajit K

[dpdk-dev] [PATCH 05/31] net/bnxt: fix dev close operation

2018-06-19 Thread Ajit Khaparde
We are not cleaning up all the memory and also not unregistering the driver during device close operation. This patch fixes the issue. Fixes: 893074951314 (net/bnxt: free memory in close operation) Cc: sta...@dpdk.org Signed-off-by: Ajit Khaparde --- drivers/net/bnxt/bnxt_ethdev.c | 23