Merge branch 'net-dsa-mv88e6xxx-fix-IPv6'
authorDavid S. Miller <davem@davemloft.net>
Thu, 21 Feb 2019 22:53:07 +0000 (14:53 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 21 Feb 2019 22:53:07 +0000 (14:53 -0800)
commitdb088ca3c13983b250ea6efc24148e8617d59ffb
tree9c731bcfd01d830f9a31d6ed3769945902258787
parent08e71623c8223723b19d079933974645d52967c6
parentc138806344855cd7c094abbe7507832107e8171e
Merge branch 'net-dsa-mv88e6xxx-fix-IPv6'

Florian Fainelli says:

====================
net: dsa: mv88e6xxx: fix IPv6

We have had some emails in private over this issue, this is my current
patch set rebased on top of net-next which provides working IPv6 (and
probably other protocols as well) over mv88e6xxx DSA switches.

The problem comes down to mv88e6xxx defaulting to not flood unknown
unicast and multicast datagrams, as they would be by dumb switches,
and as the Linux bridge code does by default.

There is also the issue of IPv6 over a vlan that is transparent to the
bridge; the multicast querier will not reach inside the vlan, and so
the switch can not learn about multicast routing within the vlan.

These flood settings can be disabled via the Linux bridge code if it's
desired to make the switch behave more like a managed switch, eg, by
enabling the multicast querier.  However, the multicast querier
defaults to being disabled which effectively means that by default,
mv88e6xxx switches block all multicast traffic.  This is at odds with
the Linux bridge documentation, and the defaults that the Linux bridge
code adopts.

So, this patch set adds DSA support for Linux bridge flags, adds
mv88e6xxx support for the unicast and multicast flooding flags, and
lastly enables flooding of these frames by default to match the
Linux bridge defaults.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>