aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/dev.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/core/dev.c')
-rw-r--r--net/core/dev.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index e7e728aea9f3..1e169a541ce7 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -3893,8 +3893,7 @@ void unregister_netdevice(struct net_device *dev)
3893 BUG_ON(dev->reg_state != NETREG_REGISTERED); 3893 BUG_ON(dev->reg_state != NETREG_REGISTERED);
3894 3894
3895 /* If device is running, close it first. */ 3895 /* If device is running, close it first. */
3896 if (dev->flags & IFF_UP) 3896 dev_close(dev);
3897 dev_close(dev);
3898 3897
3899 /* And unlink it from device chain. */ 3898 /* And unlink it from device chain. */
3900 unlist_netdevice(dev); 3899 unlist_netdevice(dev);
@@ -4018,8 +4017,7 @@ int dev_change_net_namespace(struct net_device *dev, struct net *net, const char
4018 */ 4017 */
4019 4018
4020 /* If device is running close it first. */ 4019 /* If device is running close it first. */
4021 if (dev->flags & IFF_UP) 4020 dev_close(dev);
4022 dev_close(dev);
4023 4021
4024 /* And unlink it from device chain */ 4022 /* And unlink it from device chain */
4025 err = -ENODEV; 4023 err = -ENODEV;