]> Git Repo - linux.git/commitdiff
net-loopback: set lo dev initial state to UP
authorJian Yang <[email protected]>
Mon, 1 Feb 2021 23:34:45 +0000 (15:34 -0800)
committerJakub Kicinski <[email protected]>
Fri, 5 Feb 2021 02:37:08 +0000 (18:37 -0800)
Traditionally loopback devices come up with initial state as DOWN for
any new network-namespace. This would mean that anyone needing this
device would have to bring this UP by issuing something like 'ip link
set lo up'. This can be avoided if the initial state is set as UP.

Signed-off-by: Mahesh Bandewar <[email protected]>
Signed-off-by: Jian Yang <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
drivers/net/loopback.c

index a1c77cc0041657de79b562c84408acabf9e8b99b..24487ec17f8b125ab260484f4f7ea83cdadad48d 100644 (file)
@@ -219,6 +219,12 @@ static __net_init int loopback_net_init(struct net *net)
 
        BUG_ON(dev->ifindex != LOOPBACK_IFINDEX);
        net->loopback_dev = dev;
+
+       /* bring loopback device UP */
+       rtnl_lock();
+       dev_open(dev, NULL);
+       rtnl_unlock();
+
        return 0;
 
 out_free_netdev:
This page took 0.060733 seconds and 4 git commands to generate.