mlxsw: spectrum_router: Process IP6MR fib notification
authorYuval Mintz <yuvalm@mellanox.com>
Mon, 26 Mar 2018 12:01:44 +0000 (15:01 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 26 Mar 2018 17:14:44 +0000 (13:14 -0400)
Following previous patches driver is ready to handle notifications
arriving from ip6mr - start processing those when they arrive following
the same manner ipmr currently goes through.

This should enable driver to start offloading ipv6 multicast routes.

Signed-off-by: Yuval Mintz <yuvalm@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_router.c

index 14b887b96cbb8a8324d9d9be4a826200df9a7b16..a9ccd974c62051616c26a0707e7616766f66f0cf 100644 (file)
@@ -5396,13 +5396,10 @@ static int __mlxsw_sp_router_set_abort_trap(struct mlxsw_sp *mlxsw_sp,
 static struct mlxsw_sp_mr_table *
 mlxsw_sp_router_fibmr_family_to_table(struct mlxsw_sp_vr *vr, int family)
 {
-       switch (family) {
-       case RTNL_FAMILY_IPMR:
-               return vr->mr_table[MLXSW_SP_L3_PROTO_IPV4];
-       default:
-               WARN_ON(1);
+       if (family == RTNL_FAMILY_IPMR)
                return vr->mr_table[MLXSW_SP_L3_PROTO_IPV4];
-       }
+       else
+               return vr->mr_table[MLXSW_SP_L3_PROTO_IPV6];
 }
 
 static int mlxsw_sp_router_fibmr_add(struct mlxsw_sp *mlxsw_sp,
@@ -5844,6 +5841,10 @@ static int mlxsw_sp_router_fib_rule_event(unsigned long event,
                if (!ipmr_rule_default(rule) && !rule->l3mdev)
                        err = -1;
                break;
+       case RTNL_FAMILY_IP6MR:
+               if (!ip6mr_rule_default(rule) && !rule->l3mdev)
+                       err = -1;
+               break;
        }
 
        if (err < 0)
@@ -5863,7 +5864,8 @@ static int mlxsw_sp_router_fib_event(struct notifier_block *nb,
 
        if (!net_eq(info->net, &init_net) ||
            (info->family != AF_INET && info->family != AF_INET6 &&
-            info->family != RTNL_FAMILY_IPMR))
+            info->family != RTNL_FAMILY_IPMR &&
+            info->family != RTNL_FAMILY_IP6MR))
                return NOTIFY_DONE;
 
        router = container_of(nb, struct mlxsw_sp_router, fib_nb);
@@ -5893,6 +5895,7 @@ static int mlxsw_sp_router_fib_event(struct notifier_block *nb,
                INIT_WORK(&fib_work->work, mlxsw_sp_router_fib6_event_work);
                mlxsw_sp_router_fib6_event(fib_work, info);
                break;
+       case RTNL_FAMILY_IP6MR:
        case RTNL_FAMILY_IPMR:
                INIT_WORK(&fib_work->work, mlxsw_sp_router_fibmr_event_work);
                mlxsw_sp_router_fibmr_event(fib_work, info);