]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
vlan: Match underlying dev carrier on vlan add
authorPhil Oester <kernel@linuxace.com>
Tue, 17 Aug 2010 18:45:08 +0000 (18:45 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 19 Aug 2010 07:26:46 +0000 (00:26 -0700)
When adding a new vlan, if the underlying interface has no carrier,
then the newly added vlan interface should also have no carrier.
At present, this is not true - the newly added vlan is added with
carrier up.  Fix by checking state of real device.

Signed-off-by: Phil Oester <kernel@linuxace.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/8021q/vlan_dev.c

index 3d59c9bf8febf5064150ff50d22db9d569453131..3bccdd12a2642a06e1c5078b5c4065419a57428a 100644 (file)
@@ -510,7 +510,8 @@ static int vlan_dev_open(struct net_device *dev)
        if (vlan->flags & VLAN_FLAG_GVRP)
                vlan_gvrp_request_join(dev);
 
-       netif_carrier_on(dev);
+       if (netif_carrier_ok(real_dev))
+               netif_carrier_on(dev);
        return 0;
 
 clear_allmulti: