Commit 0ac820ee authored by Phil Oester's avatar Phil Oester Committed by David S. Miller
Browse files

vlan: Match underlying dev carrier on vlan add



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: default avatarPhil Oester <kernel@linuxace.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0645bab7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -510,6 +510,7 @@ static int vlan_dev_open(struct net_device *dev)
	if (vlan->flags & VLAN_FLAG_GVRP)
		vlan_gvrp_request_join(dev);

	if (netif_carrier_ok(real_dev))
		netif_carrier_on(dev);
	return 0;