|
@@ -3666,6 +3666,15 @@ static int mlxsw_sp_init(struct mlxsw_core *mlxsw_core,
|
|
|
goto err_lag_init;
|
|
|
}
|
|
|
|
|
|
+ /* Initialize SPAN before router and switchdev, so that those components
|
|
|
+ * can call mlxsw_sp_span_respin().
|
|
|
+ */
|
|
|
+ err = mlxsw_sp_span_init(mlxsw_sp);
|
|
|
+ if (err) {
|
|
|
+ dev_err(mlxsw_sp->bus_info->dev, "Failed to init span system\n");
|
|
|
+ goto err_span_init;
|
|
|
+ }
|
|
|
+
|
|
|
err = mlxsw_sp_switchdev_init(mlxsw_sp);
|
|
|
if (err) {
|
|
|
dev_err(mlxsw_sp->bus_info->dev, "Failed to initialize switchdev\n");
|
|
@@ -3684,15 +3693,6 @@ static int mlxsw_sp_init(struct mlxsw_core *mlxsw_core,
|
|
|
goto err_afa_init;
|
|
|
}
|
|
|
|
|
|
- err = mlxsw_sp_span_init(mlxsw_sp);
|
|
|
- if (err) {
|
|
|
- dev_err(mlxsw_sp->bus_info->dev, "Failed to init span system\n");
|
|
|
- goto err_span_init;
|
|
|
- }
|
|
|
-
|
|
|
- /* Initialize router after SPAN is initialized, so that the FIB and
|
|
|
- * neighbor event handlers can issue SPAN respin.
|
|
|
- */
|
|
|
err = mlxsw_sp_router_init(mlxsw_sp);
|
|
|
if (err) {
|
|
|
dev_err(mlxsw_sp->bus_info->dev, "Failed to initialize router\n");
|
|
@@ -3739,14 +3739,14 @@ err_acl_init:
|
|
|
err_netdev_notifier:
|
|
|
mlxsw_sp_router_fini(mlxsw_sp);
|
|
|
err_router_init:
|
|
|
- mlxsw_sp_span_fini(mlxsw_sp);
|
|
|
-err_span_init:
|
|
|
mlxsw_sp_afa_fini(mlxsw_sp);
|
|
|
err_afa_init:
|
|
|
mlxsw_sp_counter_pool_fini(mlxsw_sp);
|
|
|
err_counter_pool_init:
|
|
|
mlxsw_sp_switchdev_fini(mlxsw_sp);
|
|
|
err_switchdev_init:
|
|
|
+ mlxsw_sp_span_fini(mlxsw_sp);
|
|
|
+err_span_init:
|
|
|
mlxsw_sp_lag_fini(mlxsw_sp);
|
|
|
err_lag_init:
|
|
|
mlxsw_sp_buffers_fini(mlxsw_sp);
|
|
@@ -3768,10 +3768,10 @@ static void mlxsw_sp_fini(struct mlxsw_core *mlxsw_core)
|
|
|
mlxsw_sp_acl_fini(mlxsw_sp);
|
|
|
unregister_netdevice_notifier(&mlxsw_sp->netdevice_nb);
|
|
|
mlxsw_sp_router_fini(mlxsw_sp);
|
|
|
- mlxsw_sp_span_fini(mlxsw_sp);
|
|
|
mlxsw_sp_afa_fini(mlxsw_sp);
|
|
|
mlxsw_sp_counter_pool_fini(mlxsw_sp);
|
|
|
mlxsw_sp_switchdev_fini(mlxsw_sp);
|
|
|
+ mlxsw_sp_span_fini(mlxsw_sp);
|
|
|
mlxsw_sp_lag_fini(mlxsw_sp);
|
|
|
mlxsw_sp_buffers_fini(mlxsw_sp);
|
|
|
mlxsw_sp_traps_fini(mlxsw_sp);
|