e1000e: call ndo_stop() instead of dev_close() when running offline selftest
Calling dev_close() causes IFF_UP to be cleared which will remove the interfaces routes and some addresses. That's probably not what the user intended when running the offline selftest. Besides this does not happen if the interface is brought down before the test, so the current behaviour is inconsistent. Instead call the net_device_ops ndo_stop function directly and avoid touching IFF_UP at all. Signed-off-by: Stefan Assmann <sassmann@kpanic.de> Tested-by: Aaron Brown <aaron.f.brown@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:

committed by
Jeff Kirsher

parent
efea95d45e
commit
d5ea45da1f
@@ -1816,7 +1816,7 @@ static void e1000_diag_test(struct net_device *netdev,
|
||||
|
||||
if (if_running)
|
||||
/* indicate we're in test mode */
|
||||
dev_close(netdev);
|
||||
e1000e_close(netdev);
|
||||
|
||||
if (e1000_reg_test(adapter, &data[0]))
|
||||
eth_test->flags |= ETH_TEST_FL_FAILED;
|
||||
@@ -1849,7 +1849,7 @@ static void e1000_diag_test(struct net_device *netdev,
|
||||
|
||||
clear_bit(__E1000_TESTING, &adapter->state);
|
||||
if (if_running)
|
||||
dev_open(netdev);
|
||||
e1000e_open(netdev);
|
||||
} else {
|
||||
/* Online tests */
|
||||
|
||||
|
Reference in New Issue
Block a user