From: Vivien Didelot Date: Wed, 8 Nov 2017 15:50:10 +0000 (-0500) Subject: net: dsa: return after vlan prepare phase X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2118df93b5e1742931da358c2b8804c46fd64490;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git net: dsa: return after vlan prepare phase The current code does not return after successfully preparing the VLAN addition on every ports member of a it. Fix this. Fixes: 1ca4aa9cd4cc ("net: dsa: check VLAN capability of every switch") Signed-off-by: Vivien Didelot Reviewed-by: Andrew Lunn Signed-off-by: David S. Miller --- diff --git a/net/dsa/switch.c b/net/dsa/switch.c index 73746fa148f1..1e2929f4290a 100644 --- a/net/dsa/switch.c +++ b/net/dsa/switch.c @@ -182,6 +182,8 @@ static int dsa_switch_vlan_add(struct dsa_switch *ds, if (err) return err; } + + return 0; } for_each_set_bit(port, members, ds->num_ports)