|
|
@@ -2723,6 +2723,7 @@ static void mlxsw_sp_nexthop_type_fini(struct mlxsw_sp *mlxsw_sp,
|
|
|
mlxsw_sp_nexthop_rif_fini(nh);
|
|
|
break;
|
|
|
case MLXSW_SP_NEXTHOP_TYPE_IPIP:
|
|
|
+ mlxsw_sp_nexthop_rif_fini(nh);
|
|
|
mlxsw_sp_nexthop_ipip_fini(mlxsw_sp, nh);
|
|
|
break;
|
|
|
}
|
|
|
@@ -2742,7 +2743,11 @@ static int mlxsw_sp_nexthop4_type_init(struct mlxsw_sp *mlxsw_sp,
|
|
|
router->ipip_ops_arr[ipipt]->can_offload(mlxsw_sp, dev,
|
|
|
MLXSW_SP_L3_PROTO_IPV4)) {
|
|
|
nh->type = MLXSW_SP_NEXTHOP_TYPE_IPIP;
|
|
|
- return mlxsw_sp_nexthop_ipip_init(mlxsw_sp, ipipt, nh, dev);
|
|
|
+ err = mlxsw_sp_nexthop_ipip_init(mlxsw_sp, ipipt, nh, dev);
|
|
|
+ if (err)
|
|
|
+ return err;
|
|
|
+ mlxsw_sp_nexthop_rif_init(nh, &nh->ipip_entry->ol_lb->common);
|
|
|
+ return 0;
|
|
|
}
|
|
|
|
|
|
nh->type = MLXSW_SP_NEXTHOP_TYPE_ETH;
|
|
|
@@ -4009,7 +4014,11 @@ static int mlxsw_sp_nexthop6_type_init(struct mlxsw_sp *mlxsw_sp,
|
|
|
router->ipip_ops_arr[ipipt]->can_offload(mlxsw_sp, dev,
|
|
|
MLXSW_SP_L3_PROTO_IPV6)) {
|
|
|
nh->type = MLXSW_SP_NEXTHOP_TYPE_IPIP;
|
|
|
- return mlxsw_sp_nexthop_ipip_init(mlxsw_sp, ipipt, nh, dev);
|
|
|
+ err = mlxsw_sp_nexthop_ipip_init(mlxsw_sp, ipipt, nh, dev);
|
|
|
+ if (err)
|
|
|
+ return err;
|
|
|
+ mlxsw_sp_nexthop_rif_init(nh, &nh->ipip_entry->ol_lb->common);
|
|
|
+ return 0;
|
|
|
}
|
|
|
|
|
|
nh->type = MLXSW_SP_NEXTHOP_TYPE_ETH;
|
|
|
@@ -5068,6 +5077,7 @@ mlxsw_sp_rif_create(struct mlxsw_sp *mlxsw_sp,
|
|
|
vr = mlxsw_sp_vr_get(mlxsw_sp, tb_id ? : RT_TABLE_MAIN);
|
|
|
if (IS_ERR(vr))
|
|
|
return ERR_CAST(vr);
|
|
|
+ vr->rif_count++;
|
|
|
|
|
|
err = mlxsw_sp_rif_index_alloc(mlxsw_sp, &rif_index);
|
|
|
if (err)
|
|
|
@@ -5099,7 +5109,6 @@ mlxsw_sp_rif_create(struct mlxsw_sp *mlxsw_sp,
|
|
|
|
|
|
mlxsw_sp_rif_counters_alloc(rif);
|
|
|
mlxsw_sp->router->rifs[rif_index] = rif;
|
|
|
- vr->rif_count++;
|
|
|
|
|
|
return rif;
|
|
|
|
|
|
@@ -5110,6 +5119,7 @@ err_fid_get:
|
|
|
kfree(rif);
|
|
|
err_rif_alloc:
|
|
|
err_rif_index_alloc:
|
|
|
+ vr->rif_count--;
|
|
|
mlxsw_sp_vr_put(vr);
|
|
|
return ERR_PTR(err);
|
|
|
}
|
|
|
@@ -5124,7 +5134,6 @@ void mlxsw_sp_rif_destroy(struct mlxsw_sp_rif *rif)
|
|
|
mlxsw_sp_router_rif_gone_sync(mlxsw_sp, rif);
|
|
|
vr = &mlxsw_sp->router->vrs[rif->vr_id];
|
|
|
|
|
|
- vr->rif_count--;
|
|
|
mlxsw_sp->router->rifs[rif->rif_index] = NULL;
|
|
|
mlxsw_sp_rif_counters_free(rif);
|
|
|
ops->deconfigure(rif);
|
|
|
@@ -5132,6 +5141,7 @@ void mlxsw_sp_rif_destroy(struct mlxsw_sp_rif *rif)
|
|
|
/* Loopback RIFs are not associated with a FID. */
|
|
|
mlxsw_sp_fid_put(fid);
|
|
|
kfree(rif);
|
|
|
+ vr->rif_count--;
|
|
|
mlxsw_sp_vr_put(vr);
|
|
|
}
|
|
|
|