[dpdk-dev] [PATCH 1/2] net/bnxt: fix freeing aggregation rings

2021-10-29 Thread Kalesh A P
From: Kalesh AP During port stop, we clear "eth_dev->data->scattered_rx" at the beginning. As a result, in bnxt_free_hwrm_rx_ring() the check bnxt_need_agg_ring() returns false and we end up not freeing the Rx aggregation rings which results in resource leak in the FW. Fixes: 657c2a7f1dd4 ("net/

Re: [dpdk-dev] [PATCH 1/2] net/bnxt: fix freeing aggregation rings

2021-10-31 Thread Ajit Khaparde
On Fri, Oct 29, 2021 at 8:30 PM Kalesh A P wrote: > > From: Kalesh AP > > During port stop, we clear "eth_dev->data->scattered_rx" at the > beginning. As a result, in bnxt_free_hwrm_rx_ring() the check > bnxt_need_agg_ring() returns false and we end up not freeing > the Rx aggregation rings which