]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
mlxsw: spectrum_span: Suppress VLAN on BRIDGE_VLAN_INFO_UNTAGGED
authorPetr Machata <petrm@mellanox.com>
Sat, 2 Jun 2018 18:09:35 +0000 (21:09 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 4 Jun 2018 17:27:57 +0000 (13:27 -0400)
When offloading mirroring to gretap or ip6gretap netdevices, an 802.1q
bridge is one of the soft devices permissible in the underlay when
resolving the packet path. After the packet path is resolved to a
particular bridge egress device, flags on packet VLAN determine whether
the egressed packet should be tagged.

The current logic however only ever sets the VLAN tag, never suppresses
it. Thus if there's a VLAN netdevice above the bridge that determines
the packet VLAN, that VLAN is never unset, and mirroring is configured
with VLAN tagging.

Fix by setting the packet VLAN on both branches: set to zero (for unset)
when BRIDGE_VLAN_INFO_UNTAGGED, copy the resolved VLAN (e.g. from bridge
PVID) otherwise.

Fixes: 946a11e7408e ("mlxsw: spectrum_span: Allow bridge for gretap mirror")
Signed-off-by: Petr Machata <petrm@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlxsw/spectrum_span.c

index da3f7f527360147addf627e1a12ac87eced09e78..3d187d88cc7c5c9025cc5f445cc3fea588ca9a5d 100644 (file)
@@ -191,7 +191,9 @@ mlxsw_sp_span_entry_bridge_8021q(const struct net_device *br_dev,
 
        if (br_vlan_get_info(edev, vid, &vinfo))
                return NULL;
-       if (!(vinfo.flags & BRIDGE_VLAN_INFO_UNTAGGED))
+       if (vinfo.flags & BRIDGE_VLAN_INFO_UNTAGGED)
+               *p_vid = 0;
+       else
                *p_vid = vid;
        return edev;
 }