From: Patrick McHardy Date: Tue, 20 May 2008 21:37:36 +0000 (-0700) Subject: vlan: Correctly handle device notifications for layered VLAN devices X-Git-Tag: 2.1b_release~18606^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=81d85346b3fcd8b3167eac8b5fb415a210bd4345;p=platform%2Fkernel%2Fkernel-mfld-blackbay.git 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 Acked-by: Pavel Emelyanov Signed-off-by: David S. Miller --- diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c index 2a739ad..b934159 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, int i, flgs; struct net_device *vlandev; - if (is_vlan_dev(dev)) { + if (is_vlan_dev(dev)) __vlan_device_event(dev, event); - goto out; - } grp = __vlan_find_group(dev); if (!grp)