mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-23 07:01:23 +00:00
net: dsa: provide an option for drivers to always receive bridge VLANs
DSA assumes that a bridge which has vlan filtering disabled is not vlan aware, and ignores all vlan configuration. However, the kernel software bridge code allows configuration in this state. This causes the kernel's idea of the bridge vlan state and the hardware state to disagree, so "bridge vlan show" indicates a correct configuration but the hardware lacks all configuration. Even worse, enabling vlan filtering on a DSA bridge immediately blocks all traffic which, given the output of "bridge vlan show", is very confusing. Provide an option that drivers can set to indicate they want to receive vlan configuration even when vlan filtering is disabled. At the very least, this is safe for Marvell DSA bridges, which do not look up ingress traffic in the VTU if the port is in 8021Q disabled state. It is also safe for the Ocelot switch family. Whether this change is suitable for all DSA bridges is not known. Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk> Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
26831d7814
commit
54a0ed0df4
4 changed files with 26 additions and 4 deletions
|
@ -314,7 +314,7 @@ static int dsa_slave_vlan_add(struct net_device *dev,
|
|||
if (obj->orig_dev != dev)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
if (dp->bridge_dev && !br_vlan_enabled(dp->bridge_dev))
|
||||
if (dsa_port_skip_vlan_configuration(dp))
|
||||
return 0;
|
||||
|
||||
vlan = *SWITCHDEV_OBJ_PORT_VLAN(obj);
|
||||
|
@ -381,7 +381,7 @@ static int dsa_slave_vlan_del(struct net_device *dev,
|
|||
if (obj->orig_dev != dev)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
if (dp->bridge_dev && !br_vlan_enabled(dp->bridge_dev))
|
||||
if (dsa_port_skip_vlan_configuration(dp))
|
||||
return 0;
|
||||
|
||||
/* Do not deprogram the CPU port as it may be shared with other user
|
||||
|
@ -1240,7 +1240,7 @@ static int dsa_slave_vlan_rx_add_vid(struct net_device *dev, __be16 proto,
|
|||
* need to emulate the switchdev prepare + commit phase.
|
||||
*/
|
||||
if (dp->bridge_dev) {
|
||||
if (!br_vlan_enabled(dp->bridge_dev))
|
||||
if (dsa_port_skip_vlan_configuration(dp))
|
||||
return 0;
|
||||
|
||||
/* br_vlan_get_info() returns -EINVAL or -ENOENT if the
|
||||
|
@ -1274,7 +1274,7 @@ static int dsa_slave_vlan_rx_kill_vid(struct net_device *dev, __be16 proto,
|
|||
* need to emulate the switchdev prepare + commit phase.
|
||||
*/
|
||||
if (dp->bridge_dev) {
|
||||
if (!br_vlan_enabled(dp->bridge_dev))
|
||||
if (dsa_port_skip_vlan_configuration(dp))
|
||||
return 0;
|
||||
|
||||
/* br_vlan_get_info() returns -EINVAL or -ENOENT if the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue