From: Dongli Zhang Date: Tue, 26 Oct 2021 21:50:31 +0000 (-0700) Subject: vmxnet3: do not stop tx queues after netif_device_detach() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9159f102402a64ac85e676b75cc1f9c62c5b4b73;p=linux.git vmxnet3: do not stop tx queues after netif_device_detach() The netif_device_detach() conditionally stops all tx queues if the queues are running. There is no need to call netif_tx_stop_all_queues() again. Signed-off-by: Dongli Zhang Signed-off-by: David S. Miller --- diff --git a/drivers/net/vmxnet3/vmxnet3_drv.c b/drivers/net/vmxnet3/vmxnet3_drv.c index 142f70670f5c0..8799854bacb29 100644 --- a/drivers/net/vmxnet3/vmxnet3_drv.c +++ b/drivers/net/vmxnet3/vmxnet3_drv.c @@ -3833,7 +3833,6 @@ vmxnet3_suspend(struct device *device) vmxnet3_free_intr_resources(adapter); netif_device_detach(netdev); - netif_tx_stop_all_queues(netdev); /* Create wake-up filters. */ pmConf = adapter->pm_conf;