diff options
author | Patrick McHardy <kaber@trash.net> | 2008-05-20 17:37:36 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-05-20 17:37:36 -0400 |
commit | 81d85346b3fcd8b3167eac8b5fb415a210bd4345 (patch) | |
tree | 5a5827b8f6d2e8b06f31ccb69ce94ce28ac51439 /net/8021q | |
parent | 0e91796eb46e29edc791131c832a2232bcaed9dd (diff) |
vlan: Correctly handle device notifications for layered VLAN devices
Commit 30688a9 ([VLAN]: Handle vlan devices net namespace changing)
changed the device notifier to special-case notifications for VLAN
devices, effectively disabling state propagation to underlying VLAN
devices. This is needed for layered VLANs though, so restore the
original behaviour.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Acked-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q')
-rw-r--r-- | net/8021q/vlan.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c index 2a739adaa92b..b934159a6f07 100644 --- a/net/8021q/vlan.c +++ b/net/8021q/vlan.c | |||
@@ -410,10 +410,8 @@ static int vlan_device_event(struct notifier_block *unused, unsigned long event, | |||
410 | int i, flgs; | 410 | int i, flgs; |
411 | struct net_device *vlandev; | 411 | struct net_device *vlandev; |
412 | 412 | ||
413 | if (is_vlan_dev(dev)) { | 413 | if (is_vlan_dev(dev)) |
414 | __vlan_device_event(dev, event); | 414 | __vlan_device_event(dev, event); |
415 | goto out; | ||
416 | } | ||
417 | 415 | ||
418 | grp = __vlan_find_group(dev); | 416 | grp = __vlan_find_group(dev); |
419 | if (!grp) | 417 | if (!grp) |