From: Mike Rapoport Date: Tue, 25 Jun 2013 13:01:56 +0000 (+0300) Subject: vxlan: fdb: allow specifying multiple destinations for zero MAC X-Git-Tag: v3.11-rc1~64^2~62^2~1^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=58e4c767046a35f11a55af6ce946054ddf4a8580;p=karo-tx-linux.git vxlan: fdb: allow specifying multiple destinations for zero MAC The zero MAC entry in the fdb is used as default destination. With multiple default destinations it is possible to use vxlan in environments that disable multicast on the infrastructure level, e.g. public clouds. Signed-off-by: Mike Rapoport Signed-off-by: Stephen Hemminger --- diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c index c1825201f9e2..3e75f9726c33 100644 --- a/drivers/net/vxlan.c +++ b/drivers/net/vxlan.c @@ -458,7 +458,8 @@ static int vxlan_fdb_create(struct vxlan_dev *vxlan, notify = 1; } if ((flags & NLM_F_APPEND) && - is_multicast_ether_addr(f->eth_addr)) { + (is_multicast_ether_addr(f->eth_addr) || + is_zero_ether_addr(f->eth_addr))) { int rc = vxlan_fdb_append(f, ip, port, vni, ifindex); if (rc < 0)