Skip to content

Commit e400c74

Browse files
jdamato-fslyanguy11
authored andcommitted
e1000: Hold RTNL when e1000_down can be called
e1000_down calls netif_queue_set_napi, which assumes that RTNL is held. There are a few paths for e1000_down to be called in e1000 where RTNL is not currently being held: - e1000_shutdown (pci shutdown) - e1000_suspend (power management) - e1000_reinit_locked (via e1000_reset_task delayed work) - e1000_io_error_detected (via pci error handler) Hold RTNL in three places to fix this issue: - e1000_reset_task: igc, igb, and e100e all hold rtnl in this path. - e1000_io_error_detected (pci error handler): e1000e and ixgbe hold rtnl in this path. A patch has been posted for igc to do the same [1]. - __e1000_shutdown (which is called from both e1000_shutdown and e1000_suspend): igb, ixgbe, and e1000e all hold rtnl in the same path. The other paths which call e1000_down seemingly hold RTNL and are OK: - e1000_close (ndo_stop) - e1000_change_mtu (ndo_change_mtu) Based on the above analysis and mailing list discussion [2], I believe adding rtnl in the three places mentioned above is correct. Fixes: 8f7ff18 ("e1000: Link NAPI instances to queues and IRQs") Reported-by: Dmitry Antipov <dmantipov@yandex.ru> Closes: https://lore.kernel.org/netdev/8cf62307-1965-46a0-a411-ff0080090ff9@yandex.ru/ Link: https://lore.kernel.org/netdev/20241022215246.307821-3-jdamato@fastly.com/ [1] Link: https://lore.kernel.org/netdev/ZxgVRX7Ne-lTjwiJ@LQ3V64L9R2/ [2] Signed-off-by: Joe Damato <jdamato@fastly.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
1 parent 4d26b6e commit e400c74

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

drivers/net/ethernet/intel/e1000/e1000_main.c

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3509,7 +3509,9 @@ static void e1000_reset_task(struct work_struct *work)
35093509
container_of(work, struct e1000_adapter, reset_task);
35103510

35113511
e_err(drv, "Reset adapter\n");
3512+
rtnl_lock();
35123513
e1000_reinit_locked(adapter);
3514+
rtnl_unlock();
35133515
}
35143516

35153517
/**
@@ -5074,7 +5076,9 @@ static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake)
50745076
usleep_range(10000, 20000);
50755077

50765078
WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
5079+
rtnl_lock();
50775080
e1000_down(adapter);
5081+
rtnl_unlock();
50785082
}
50795083

50805084
status = er32(STATUS);
@@ -5235,16 +5239,20 @@ static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
52355239
struct net_device *netdev = pci_get_drvdata(pdev);
52365240
struct e1000_adapter *adapter = netdev_priv(netdev);
52375241

5242+
rtnl_lock();
52385243
netif_device_detach(netdev);
52395244

5240-
if (state == pci_channel_io_perm_failure)
5245+
if (state == pci_channel_io_perm_failure) {
5246+
rtnl_unlock();
52415247
return PCI_ERS_RESULT_DISCONNECT;
5248+
}
52425249

52435250
if (netif_running(netdev))
52445251
e1000_down(adapter);
52455252

52465253
if (!test_and_set_bit(__E1000_DISABLED, &adapter->flags))
52475254
pci_disable_device(pdev);
5255+
rtnl_unlock();
52485256

52495257
/* Request a slot reset. */
52505258
return PCI_ERS_RESULT_NEED_RESET;

0 commit comments

Comments
 (0)