// SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB
 /* Copyright (c) 2021, Mellanox Technologies inc. All rights reserved. */
 
-#include <linux/netdevice.h>
 #include "en/fs_tt_redirect.h"
 #include "fs_core.h"
+#include "mlx5_core.h"
 
 enum fs_udp_type {
        FS_IPV4_UDP,
 }
 
 struct mlx5_flow_handle *
-mlx5e_fs_tt_redirect_udp_add_rule(struct mlx5e_priv *priv,
+mlx5e_fs_tt_redirect_udp_add_rule(struct mlx5e_flow_steering *fs,
                                  enum mlx5_traffic_types ttc_type,
                                  u32 tir_num, u16 d_port)
 {
-       struct mlx5e_fs_udp *fs_udp = mlx5e_fs_get_udp(priv->fs);
+       struct mlx5e_fs_udp *fs_udp = mlx5e_fs_get_udp(fs);
        enum fs_udp_type type = tt2fs_udp(ttc_type);
        struct mlx5_flow_destination dest = {};
        struct mlx5_flow_table *ft = NULL;
 
        if (IS_ERR(rule)) {
                err = PTR_ERR(rule);
-               netdev_err(priv->netdev, "%s: add %s rule failed, err %d\n",
-                          __func__, fs_udp_type2str(type), err);
+               mlx5_core_err(mlx5e_fs_get_mdev(fs), "%s: add %s rule failed, err %d\n",
+                             __func__, fs_udp_type2str(type), err);
        }
        return rule;
 }
 
-static int fs_udp_add_default_rule(struct mlx5e_priv *priv, enum fs_udp_type type)
+static int fs_udp_add_default_rule(struct mlx5e_flow_steering *fs, enum fs_udp_type type)
 {
-       struct mlx5_ttc_table *ttc = mlx5e_fs_get_ttc(priv->fs, false);
-       struct mlx5e_fs_udp *fs_udp = mlx5e_fs_get_udp(priv->fs);
+       struct mlx5_ttc_table *ttc = mlx5e_fs_get_ttc(fs, false);
+       struct mlx5e_fs_udp *fs_udp = mlx5e_fs_get_udp(fs);
        struct mlx5e_flow_table *fs_udp_t;
        struct mlx5_flow_destination dest;
        MLX5_DECLARE_FLOW_ACT(flow_act);
        rule = mlx5_add_flow_rules(fs_udp_t->t, NULL, &flow_act, &dest, 1);
        if (IS_ERR(rule)) {
                err = PTR_ERR(rule);
-               netdev_err(priv->netdev,
-                          "%s: add default rule failed, fs type=%d, err %d\n",
-                          __func__, type, err);
+               mlx5_core_err(mlx5e_fs_get_mdev(fs),
+                             "%s: add default rule failed, fs type=%d, err %d\n",
+                             __func__, type, err);
                return err;
        }
 
        return err;
 }
 
-static int fs_udp_create_table(struct mlx5e_priv *priv, enum fs_udp_type type)
+static int fs_udp_create_table(struct mlx5e_flow_steering *fs, enum fs_udp_type type)
 {
-       struct mlx5_flow_namespace *ns = mlx5e_fs_get_ns(priv->fs, false);
-       struct mlx5e_fs_udp *fs_udp = mlx5e_fs_get_udp(priv->fs);
-       struct mlx5e_flow_table *ft = &fs_udp->tables[type];
+       struct mlx5_flow_namespace *ns = mlx5e_fs_get_ns(fs, false);
+       struct mlx5e_fs_udp *fs_udp = mlx5e_fs_get_udp(fs);
        struct mlx5_flow_table_attr ft_attr = {};
+       struct mlx5e_flow_table *ft;
        int err;
 
+       ft = &fs_udp->tables[type];
        ft->num_groups = 0;
 
        ft_attr.max_fte = MLX5E_FS_UDP_TABLE_SIZE;
                return err;
        }
 
-       netdev_dbg(priv->netdev, "Created fs %s table id %u level %u\n",
-                  fs_udp_type2str(type), ft->t->id, ft->t->level);
+       mlx5_core_dbg(mlx5e_fs_get_mdev(fs), "Created fs %s table id %u level %u\n",
+                     fs_udp_type2str(type), ft->t->id, ft->t->level);
 
        err = fs_udp_create_groups(ft, type);
        if (err)
                goto err;
 
-       err = fs_udp_add_default_rule(priv, type);
+       err = fs_udp_add_default_rule(fs, type);
        if (err)
                goto err;
 
        fs_udp->tables[i].t = NULL;
 }
 
-static int fs_udp_disable(struct mlx5e_priv *priv)
+static int fs_udp_disable(struct mlx5e_flow_steering *fs)
 {
-       struct mlx5_ttc_table *ttc = mlx5e_fs_get_ttc(priv->fs, false);
+       struct mlx5_ttc_table *ttc = mlx5e_fs_get_ttc(fs, false);
        int err, i;
 
        for (i = 0; i < FS_UDP_NUM_TYPES; i++) {
                /* Modify ttc rules destination to point back to the indir TIRs */
                err = mlx5_ttc_fwd_default_dest(ttc, fs_udp2tt(i));
                if (err) {
-                       netdev_err(priv->netdev,
-                                  "%s: modify ttc[%d] default destination failed, err(%d)\n",
-                                  __func__, fs_udp2tt(i), err);
+                       mlx5_core_err(mlx5e_fs_get_mdev(fs),
+                                     "%s: modify ttc[%d] default destination failed, err(%d)\n",
+                                     __func__, fs_udp2tt(i), err);
                        return err;
                }
        }
        return 0;
 }
 
-static int fs_udp_enable(struct mlx5e_priv *priv)
+static int fs_udp_enable(struct mlx5e_flow_steering *fs)
 {
-       struct mlx5_ttc_table *ttc = mlx5e_fs_get_ttc(priv->fs, false);
-       struct mlx5e_fs_udp *udp = mlx5e_fs_get_udp(priv->fs);
+       struct mlx5_ttc_table *ttc = mlx5e_fs_get_ttc(fs, false);
+       struct mlx5e_fs_udp *udp = mlx5e_fs_get_udp(fs);
        struct mlx5_flow_destination dest = {};
        int err, i;
 
                /* Modify ttc rules destination to point on the accel_fs FTs */
                err = mlx5_ttc_fwd_dest(ttc, fs_udp2tt(i), &dest);
                if (err) {
-                       netdev_err(priv->netdev,
-                                  "%s: modify ttc[%d] destination to accel failed, err(%d)\n",
-                                  __func__, fs_udp2tt(i), err);
+                       mlx5_core_err(mlx5e_fs_get_mdev(fs),
+                                     "%s: modify ttc[%d] destination to accel failed, err(%d)\n",
+                                     __func__, fs_udp2tt(i), err);
                        return err;
                }
        }
        return 0;
 }
 
-void mlx5e_fs_tt_redirect_udp_destroy(struct mlx5e_priv *priv)
+void mlx5e_fs_tt_redirect_udp_destroy(struct mlx5e_flow_steering *fs)
 {
-       struct mlx5e_fs_udp *fs_udp = mlx5e_fs_get_udp(priv->fs);
+       struct mlx5e_fs_udp *fs_udp = mlx5e_fs_get_udp(fs);
        int i;
 
        if (!fs_udp)
        if (--fs_udp->ref_cnt)
                return;
 
-       fs_udp_disable(priv);
+       fs_udp_disable(fs);
 
        for (i = 0; i < FS_UDP_NUM_TYPES; i++)
                fs_udp_destroy_table(fs_udp, i);
 
        kfree(fs_udp);
-       mlx5e_fs_set_udp(priv->fs, NULL);
+       mlx5e_fs_set_udp(fs, NULL);
 }
 
-int mlx5e_fs_tt_redirect_udp_create(struct mlx5e_priv *priv)
+int mlx5e_fs_tt_redirect_udp_create(struct mlx5e_flow_steering *fs)
 {
-       struct mlx5e_fs_udp *udp = mlx5e_fs_get_udp(priv->fs);
+       struct mlx5e_fs_udp *udp = mlx5e_fs_get_udp(fs);
        int i, err;
 
        if (udp) {
        udp = kzalloc(sizeof(*udp), GFP_KERNEL);
        if (!udp)
                return -ENOMEM;
-       mlx5e_fs_set_udp(priv->fs, udp);
+       mlx5e_fs_set_udp(fs, udp);
 
        for (i = 0; i < FS_UDP_NUM_TYPES; i++) {
-               err = fs_udp_create_table(priv, i);
+               err = fs_udp_create_table(fs, i);
                if (err)
                        goto err_destroy_tables;
        }
 
-       err = fs_udp_enable(priv);
+       err = fs_udp_enable(fs);
        if (err)
                goto err_destroy_tables;
 
                fs_udp_destroy_table(udp, i);
 
        kfree(udp);
-       mlx5e_fs_set_udp(priv->fs, NULL);
+       mlx5e_fs_set_udp(fs, NULL);
        return err;
 }
 
 }
 
 struct mlx5_flow_handle *
-mlx5e_fs_tt_redirect_any_add_rule(struct mlx5e_priv *priv,
+mlx5e_fs_tt_redirect_any_add_rule(struct mlx5e_flow_steering *fs,
                                  u32 tir_num, u16 ether_type)
 {
-       struct mlx5e_fs_any *fs_any = mlx5e_fs_get_any(priv->fs);
+       struct mlx5e_fs_any *fs_any = mlx5e_fs_get_any(fs);
        struct mlx5_flow_destination dest = {};
        struct mlx5_flow_table *ft = NULL;
        MLX5_DECLARE_FLOW_ACT(flow_act);
 
        if (IS_ERR(rule)) {
                err = PTR_ERR(rule);
-               netdev_err(priv->netdev, "%s: add ANY rule failed, err %d\n",
-                          __func__, err);
+               mlx5_core_err(mlx5e_fs_get_mdev(fs), "%s: add ANY rule failed, err %d\n",
+                             __func__, err);
        }
        return rule;
 }
 
-static int fs_any_add_default_rule(struct mlx5e_priv *priv)
+static int fs_any_add_default_rule(struct mlx5e_flow_steering *fs)
 {
-       struct mlx5_ttc_table *ttc = mlx5e_fs_get_ttc(priv->fs, false);
-       struct mlx5e_fs_any *fs_any = mlx5e_fs_get_any(priv->fs);
+       struct mlx5_ttc_table *ttc = mlx5e_fs_get_ttc(fs, false);
+       struct mlx5e_fs_any *fs_any = mlx5e_fs_get_any(fs);
        struct mlx5e_flow_table *fs_any_t;
        struct mlx5_flow_destination dest;
        MLX5_DECLARE_FLOW_ACT(flow_act);
        rule = mlx5_add_flow_rules(fs_any_t->t, NULL, &flow_act, &dest, 1);
        if (IS_ERR(rule)) {
                err = PTR_ERR(rule);
-               netdev_err(priv->netdev,
-                          "%s: add default rule failed, fs type=ANY, err %d\n",
-                          __func__, err);
+               mlx5_core_err(mlx5e_fs_get_mdev(fs),
+                             "%s: add default rule failed, fs type=ANY, err %d\n",
+                             __func__, err);
                return err;
        }
 
        return err;
 }
 
-static int fs_any_create_table(struct mlx5e_priv *priv)
+static int fs_any_create_table(struct mlx5e_flow_steering *fs)
 {
-       struct mlx5_flow_namespace *ns = mlx5e_fs_get_ns(priv->fs, false);
-       struct mlx5e_fs_any *fs_any = mlx5e_fs_get_any(priv->fs);
+       struct mlx5_flow_namespace *ns = mlx5e_fs_get_ns(fs, false);
+       struct mlx5e_fs_any *fs_any = mlx5e_fs_get_any(fs);
        struct mlx5e_flow_table *ft = &fs_any->table;
        struct mlx5_flow_table_attr ft_attr = {};
        int err;
                return err;
        }
 
-       netdev_dbg(priv->netdev, "Created fs ANY table id %u level %u\n",
-                  ft->t->id, ft->t->level);
+       mlx5_core_dbg(mlx5e_fs_get_mdev(fs), "Created fs ANY table id %u level %u\n",
+                     ft->t->id, ft->t->level);
 
        err = fs_any_create_groups(ft);
        if (err)
                goto err;
 
-       err = fs_any_add_default_rule(priv);
+       err = fs_any_add_default_rule(fs);
        if (err)
                goto err;
 
        return err;
 }
 
-static int fs_any_disable(struct mlx5e_priv *priv)
+static int fs_any_disable(struct mlx5e_flow_steering *fs)
 {
-       struct mlx5_ttc_table *ttc = mlx5e_fs_get_ttc(priv->fs, false);
+       struct mlx5_ttc_table *ttc = mlx5e_fs_get_ttc(fs, false);
        int err;
 
        /* Modify ttc rules destination to point back to the indir TIRs */
        err = mlx5_ttc_fwd_default_dest(ttc, MLX5_TT_ANY);
        if (err) {
-               netdev_err(priv->netdev,
-                          "%s: modify ttc[%d] default destination failed, err(%d)\n",
-                          __func__, MLX5_TT_ANY, err);
+               mlx5_core_err(mlx5e_fs_get_mdev(fs),
+                             "%s: modify ttc[%d] default destination failed, err(%d)\n",
+                             __func__, MLX5_TT_ANY, err);
                return err;
        }
        return 0;
 }
 
-static int fs_any_enable(struct mlx5e_priv *priv)
+static int fs_any_enable(struct mlx5e_flow_steering *fs)
 {
-       struct mlx5_ttc_table *ttc = mlx5e_fs_get_ttc(priv->fs, false);
-       struct mlx5e_fs_any *any = mlx5e_fs_get_any(priv->fs);
+       struct mlx5_ttc_table *ttc = mlx5e_fs_get_ttc(fs, false);
+       struct mlx5e_fs_any *any = mlx5e_fs_get_any(fs);
        struct mlx5_flow_destination dest = {};
        int err;
 
        /* Modify ttc rules destination to point on the accel_fs FTs */
        err = mlx5_ttc_fwd_dest(ttc, MLX5_TT_ANY, &dest);
        if (err) {
-               netdev_err(priv->netdev,
-                          "%s: modify ttc[%d] destination to accel failed, err(%d)\n",
-                          __func__, MLX5_TT_ANY, err);
+               mlx5_core_err(mlx5e_fs_get_mdev(fs),
+                             "%s: modify ttc[%d] destination to accel failed, err(%d)\n",
+                             __func__, MLX5_TT_ANY, err);
                return err;
        }
        return 0;
        fs_any->table.t = NULL;
 }
 
-void mlx5e_fs_tt_redirect_any_destroy(struct mlx5e_priv *priv)
+void mlx5e_fs_tt_redirect_any_destroy(struct mlx5e_flow_steering *fs)
 {
-       struct mlx5e_fs_any *fs_any = mlx5e_fs_get_any(priv->fs);
+       struct mlx5e_fs_any *fs_any = mlx5e_fs_get_any(fs);
 
        if (!fs_any)
                return;
        if (--fs_any->ref_cnt)
                return;
 
-       fs_any_disable(priv);
+       fs_any_disable(fs);
 
        fs_any_destroy_table(fs_any);
 
        kfree(fs_any);
-       mlx5e_fs_set_any(priv->fs, NULL);
+       mlx5e_fs_set_any(fs, NULL);
 }
 
-int mlx5e_fs_tt_redirect_any_create(struct mlx5e_priv *priv)
+int mlx5e_fs_tt_redirect_any_create(struct mlx5e_flow_steering *fs)
 {
-       struct mlx5e_fs_any *fs_any = mlx5e_fs_get_any(priv->fs);
+       struct mlx5e_fs_any *fs_any = mlx5e_fs_get_any(fs);
        int err;
 
        if (fs_any) {
        fs_any = kzalloc(sizeof(*fs_any), GFP_KERNEL);
        if (!fs_any)
                return -ENOMEM;
-       mlx5e_fs_set_any(priv->fs, fs_any);
+       mlx5e_fs_set_any(fs, fs_any);
 
-       err = fs_any_create_table(priv);
+       err = fs_any_create_table(fs);
        if (err)
                return err;
 
-       err = fs_any_enable(priv);
+       err = fs_any_enable(fs);
        if (err)
                goto err_destroy_table;
 
        fs_any_destroy_table(fs_any);
 
        kfree(fs_any);
-       mlx5e_fs_set_any(priv->fs, NULL);
+       mlx5e_fs_set_any(fs, NULL);
        return err;
 }