diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2017-11-08 10:50:10 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-11-11 15:45:09 +0900 |
commit | 2118df93b5e1742931da358c2b8804c46fd64490 (patch) | |
tree | 164f16f86631b705edea08104baa9dd30bc60ae8 /net/dsa | |
parent | b0b38a1c6684b10dd0462bef4fef038917115012 (diff) | |
download | op-kernel-dev-2118df93b5e1742931da358c2b8804c46fd64490.zip op-kernel-dev-2118df93b5e1742931da358c2b8804c46fd64490.tar.gz |
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 <vivien.didelot@savoirfairelinux.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa')
-rw-r--r-- | net/dsa/switch.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/dsa/switch.c b/net/dsa/switch.c index 73746fa..1e2929f 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) |