octeon_ep: cancel tx_timeout_task later in remove sequence
authorMichal Schmidt <mschmidt@redhat.com>
Thu, 10 Aug 2023 15:01:12 +0000 (17:01 +0200)
committerJakub Kicinski <kuba@kernel.org>
Tue, 15 Aug 2023 02:08:13 +0000 (19:08 -0700)
tx_timeout_task is canceled too early when removing the driver. Nothing
prevents .ndo_tx_timeout from triggering and queuing the work again.

Better cancel it after the netdev is unregistered.
It's harmless for octep_tx_timeout_task to run in the window between the
unregistration and cancelation, because it checks netif_running.

Fixes: 862cd659a6fb ("octeon_ep: Add driver framework and device initialization")
Signed-off-by: Michal Schmidt <mschmidt@redhat.com>
Link: https://lore.kernel.org/r/20230810150114.107765-3-mschmidt@redhat.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/marvell/octeon_ep/octep_main.c

index 43eb6e8..d8066bf 100644 (file)
@@ -1200,12 +1200,12 @@ static void octep_remove(struct pci_dev *pdev)
        if (!oct)
                return;
 
-       cancel_work_sync(&oct->tx_timeout_task);
        cancel_work_sync(&oct->ctrl_mbox_task);
        netdev = oct->netdev;
        if (netdev->reg_state == NETREG_REGISTERED)
                unregister_netdev(netdev);
 
+       cancel_work_sync(&oct->tx_timeout_task);
        oct->poll_non_ioq_intr = false;
        cancel_delayed_work_sync(&oct->intr_poll_task);
        octep_device_cleanup(oct);