]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mlxsw: spectrum_switchdev: Check notification relevance based on upper device
authorIdo Schimmel <idosch@mellanox.com>
Thu, 11 Oct 2018 07:47:52 +0000 (07:47 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 11 Oct 2018 17:08:22 +0000 (10:08 -0700)
VxLAN FDB updates are sent with the VxLAN device which is not our upper
and will therefore be ignored by current code.

Solve this by checking whether the upper device (bridge) is our upper.

Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Reviewed-by: Petr Machata <petrm@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c

index c9c605fdce10b92f0e123efdabe603309f781b98..9edaec95ddd23115eed7d9d9c55fe6446ee96e1f 100644 (file)
@@ -2344,8 +2344,15 @@ static int mlxsw_sp_switchdev_event(struct notifier_block *unused,
        struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
        struct mlxsw_sp_switchdev_event_work *switchdev_work;
        struct switchdev_notifier_fdb_info *fdb_info = ptr;
+       struct net_device *br_dev;
 
-       if (!mlxsw_sp_port_dev_lower_find_rcu(dev))
+       /* Tunnel devices are not our uppers, so check their master instead */
+       br_dev = netdev_master_upper_dev_get_rcu(dev);
+       if (!br_dev)
+               return NOTIFY_DONE;
+       if (!netif_is_bridge_master(br_dev))
+               return NOTIFY_DONE;
+       if (!mlxsw_sp_port_dev_lower_find_rcu(br_dev))
                return NOTIFY_DONE;
 
        switchdev_work = kzalloc(sizeof(*switchdev_work), GFP_ATOMIC);