OSDN Git Service

net: dsa: b53: Fix VLAN usage and how we treat CPU port
authorFlorian Fainelli <f.fainelli@gmail.com>
Tue, 15 Nov 2016 23:58:15 +0000 (15:58 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 17 Nov 2016 04:25:29 +0000 (23:25 -0500)
commite47112d9d6009bf6b7438cedc0270316d6b0370d
tree6c27ac2fc19a99b149bf12391ce250f75c4eae99
parent955e16026d08a601d02b961d13b6db9d6c13c8c9
net: dsa: b53: Fix VLAN usage and how we treat CPU port

We currently have a fundamental problem in how we treat the CPU port and
its VLAN membership. As soon as a second VLAN is configured to be
untagged, the CPU automatically becomes untagged for that VLAN as well,
and yet, we don't gracefully make sure that the CPU becomes tagged in
the other VLANs it could be a member of. This results in only one VLAN
being effectively usable from the CPU's perspective.

Instead of having some pretty complex logic which tries to maintain the
CPU port's default VLAN and its untagged properties, just do something
very simple which consists in neither altering the CPU port's PVID
settings, nor its untagged settings:

- whenever a VLAN is added, the CPU is automatically a member of this
  VLAN group, as a tagged member
- PVID settings for downstream ports do not alter the CPU port's PVID
  since it now is part of all VLANs in the system

This means that a typical example where e.g: LAN ports are in VLAN1, and
WAN port is in VLAN2, now require having two VLAN interfaces for the
host to properly terminate and send traffic from/to.

Fixes: Fixes: a2482d2ce349 ("net: dsa: b53: Plug in VLAN support")
Reported-by: Hartmut Knaack <knaack.h@gmx.de>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/b53/b53_common.c