diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-07-30 13:16:45 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-07-30 13:16:45 -0700 |
commit | b4076d1715b8a38138db0805a85932b3b650d583 (patch) | |
tree | 3b7ab6f84953f16a8ea8bed8aa40617e71308fad /net | |
parent | 573dd788ccd919f90c78f971c0da124ffa4b8bff (diff) |
vlan: allow creating vlan when real device is not up
There is no reason for the arbitrary restriction that device must be
up to create a vlan. This patch was added to Vyatta kernel to resolve startup
ordering issues where vlan's are created but real device was disabled.
Note: the vlan already correctly inherits the operstate from real device; so
if vlan is created and real device is marked down, the vlan is marked
down.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/8021q/vlan.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c index 6d37b7e2a76..a1f16303703 100644 --- a/net/8021q/vlan.c +++ b/net/8021q/vlan.c @@ -225,12 +225,6 @@ int vlan_check_real_dev(struct net_device *real_dev, u16 vlan_id) return -EOPNOTSUPP; } - /* The real device must be up and operating in order to - * assosciate a VLAN device with it. - */ - if (!(real_dev->flags & IFF_UP)) - return -ENETDOWN; - if (__find_vlan_dev(real_dev, vlan_id) != NULL) return -EEXIST; |