]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
bnxt_en: unlink page pool when stopping Rx queue
authorDavid Wei <dw@davidwei.uk>
Thu, 27 Jun 2024 03:02:00 +0000 (20:02 -0700)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 2 Jul 2024 13:00:11 +0000 (15:00 +0200)
Have bnxt call page_pool_disable_direct_recycling() to unlink the old
page pool when resetting a queue prior to destroying it, instead of
touching a netdev core struct directly.

Signed-off-by: David Wei <dw@davidwei.uk>
Reviewed-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
drivers/net/ethernet/broadcom/bnxt/bnxt.c

index a1690207d7935f1a9b34409e1a9180c703d61123..6fc34ccb86e3a9060535986444ae6e8fa5457d73 100644 (file)
@@ -15081,11 +15081,6 @@ static void bnxt_queue_mem_free(struct net_device *dev, void *qmem)
        bnxt_free_one_rx_ring(bp, rxr);
        bnxt_free_one_rx_agg_ring(bp, rxr);
 
-       /* At this point, this NAPI instance has another page pool associated
-        * with it. Disconnect here before freeing the old page pool to avoid
-        * warnings.
-        */
-       rxr->page_pool->p.napi = NULL;
        page_pool_destroy(rxr->page_pool);
        rxr->page_pool = NULL;
 
@@ -15205,6 +15200,7 @@ static int bnxt_queue_stop(struct net_device *dev, void *qmem, int idx)
        bnxt_hwrm_rx_ring_free(bp, rxr, false);
        bnxt_hwrm_rx_agg_ring_free(bp, rxr, false);
        rxr->rx_next_cons = 0;
+       page_pool_disable_direct_recycling(rxr->page_pool);
 
        memcpy(qmem, rxr, sizeof(*rxr));
        bnxt_init_rx_ring_struct(bp, qmem);