summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDENG Qingfang <dqfext@gmail.com>2021-08-11 17:50:43 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-09-03 10:08:16 +0200
commit620681d7201a6795a485123e943a138d5c434414 (patch)
tree2b4e9a18d8220a6f90d0d8d31fda44593b0edbdd
parent38adbf21f37e2de03569c8bf5af294a5c8c9d233 (diff)
downloadlinux-620681d7201a6795a485123e943a138d5c434414.tar.gz
linux-620681d7201a6795a485123e943a138d5c434414.tar.bz2
linux-620681d7201a6795a485123e943a138d5c434414.zip
net: dsa: mt7530: fix VLAN traffic leaks again
commit 7428022b50d0fbb4846dd0f00639ea09d36dff02 upstream. When a port leaves a VLAN-aware bridge, the current code does not clear other ports' matrix field bit. If the bridge is later set to VLAN-unaware mode, traffic in the bridge may leak to that port. Remove the VLAN filtering check in mt7530_port_bridge_leave. Fixes: 474a2ddaa192 ("net: dsa: mt7530: fix VLAN traffic leaks") Fixes: 83163f7dca56 ("net: dsa: mediatek: add VLAN support for MT7530") Signed-off-by: DENG Qingfang <dqfext@gmail.com> Reviewed-by: Vladimir Oltean <olteanv@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/net/dsa/mt7530.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
index e1a3c33fdad9..2d8382eb9add 100644
--- a/drivers/net/dsa/mt7530.c
+++ b/drivers/net/dsa/mt7530.c
@@ -842,11 +842,8 @@ mt7530_port_bridge_leave(struct dsa_switch *ds, int port,
/* Remove this port from the port matrix of the other ports
* in the same bridge. If the port is disabled, port matrix
* is kept and not being setup until the port becomes enabled.
- * And the other port's port matrix cannot be broken when the
- * other port is still a VLAN-aware port.
*/
- if (dsa_is_user_port(ds, i) && i != port &&
- !dsa_port_is_vlan_filtering(&ds->ports[i])) {
+ if (dsa_is_user_port(ds, i) && i != port) {
if (dsa_to_port(ds, i)->bridge_dev != bridge)
continue;
if (priv->ports[i].enable)