]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
net/mlx5: Simplify eswitch mode check
authorLeon Romanovsky <leonro@nvidia.com>
Sat, 10 Oct 2020 08:57:26 +0000 (11:57 +0300)
committerLeon Romanovsky <leonro@nvidia.com>
Sun, 6 Dec 2020 05:43:54 +0000 (07:43 +0200)
Provide mlx5_core device instead of "priv" pointer while checking
eswith mode.

Reviewed-by: Roi Dayan <roid@nvidia.com>
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
drivers/infiniband/hw/mlx5/counters.c
drivers/infiniband/hw/mlx5/ib_rep.c
drivers/infiniband/hw/mlx5/ib_rep.h
drivers/net/ethernet/mellanox/mlx5/core/dev.c
drivers/net/ethernet/mellanox/mlx5/core/devlink.c
drivers/net/ethernet/mellanox/mlx5/core/en_main.c
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
drivers/net/ethernet/mellanox/mlx5/core/eswitch.c
include/linux/mlx5/eswitch.h

index 70c8fd67ee2f60cfb0802141540cf80d1b9bc151..084652e2b15aa22098eeab35f2ae95510a06299d 100644 (file)
@@ -138,13 +138,6 @@ static int mlx5_ib_create_counters(struct ib_counters *counters,
 }
 
 
-static bool is_mdev_switchdev_mode(const struct mlx5_core_dev *mdev)
-{
-       return MLX5_ESWITCH_MANAGER(mdev) &&
-              mlx5_ib_eswitch_mode(mdev->priv.eswitch) ==
-                      MLX5_ESWITCH_OFFLOADS;
-}
-
 static const struct mlx5_ib_counters *get_counters(struct mlx5_ib_dev *dev,
                                                   u8 port_num)
 {
index 3d889a70130b5a4ead367a6bc49e90b1f85905bf..571b7a0f9188c20fa3a481a0957150449fef7d5b 100644 (file)
@@ -102,11 +102,6 @@ static const struct mlx5_eswitch_rep_ops rep_ops = {
        .get_proto_dev = mlx5_ib_vport_get_proto_dev,
 };
 
-u8 mlx5_ib_eswitch_mode(struct mlx5_eswitch *esw)
-{
-       return mlx5_eswitch_mode(esw);
-}
-
 struct mlx5_ib_dev *mlx5_ib_get_rep_ibdev(struct mlx5_eswitch *esw,
                                          u16 vport_num)
 {
index 94bf51ddd422a24facf43d6e73221c5df3046529..93f562735e894c6d0c9106f95599b05f51440f0f 100644 (file)
@@ -12,7 +12,6 @@
 extern const struct mlx5_ib_profile raw_eth_profile;
 
 #ifdef CONFIG_MLX5_ESWITCH
-u8 mlx5_ib_eswitch_mode(struct mlx5_eswitch *esw);
 struct mlx5_ib_dev *mlx5_ib_get_rep_ibdev(struct mlx5_eswitch *esw,
                                          u16 vport_num);
 struct mlx5_ib_dev *mlx5_ib_get_uplink_ibdev(struct mlx5_eswitch *esw);
@@ -26,11 +25,6 @@ struct mlx5_flow_handle *create_flow_rule_vport_sq(struct mlx5_ib_dev *dev,
 struct net_device *mlx5_ib_get_rep_netdev(struct mlx5_eswitch *esw,
                                          u16 vport_num);
 #else /* CONFIG_MLX5_ESWITCH */
-static inline u8 mlx5_ib_eswitch_mode(struct mlx5_eswitch *esw)
-{
-       return MLX5_ESWITCH_NONE;
-}
-
 static inline
 struct mlx5_ib_dev *mlx5_ib_get_rep_ibdev(struct mlx5_eswitch *esw,
                                          u16 vport_num)
index 3a81c2f1971b00bb6b43f57b9fe7f994f935137b..b051417ede67bdff2fd6bb732f01ba51a5206b4f 100644 (file)
@@ -47,7 +47,7 @@ static bool is_eth_rep_supported(struct mlx5_core_dev *dev)
        if (!MLX5_ESWITCH_MANAGER(dev))
                return false;
 
-       if (mlx5_eswitch_mode(dev->priv.eswitch) != MLX5_ESWITCH_OFFLOADS)
+       if (!is_mdev_switchdev_mode(dev))
                return false;
 
        return true;
@@ -144,7 +144,7 @@ static bool is_ib_rep_supported(struct mlx5_core_dev *dev)
        if (!MLX5_ESWITCH_MANAGER(dev))
                return false;
 
-       if (mlx5_eswitch_mode(dev->priv.eswitch) != MLX5_ESWITCH_OFFLOADS)
+       if (!is_mdev_switchdev_mode(dev))
                return false;
 
        if (mlx5_core_mp_enabled(dev))
index 1a351e2f6aced3fb70ebc549579a1626fa297854..aeffb6b135eea376768f5250247ebd801eb525e0 100644 (file)
@@ -221,7 +221,7 @@ static int mlx5_devlink_fs_mode_validate(struct devlink *devlink, u32 id,
                u8 eswitch_mode;
                bool smfs_cap;
 
-               eswitch_mode = mlx5_eswitch_mode(dev->priv.eswitch);
+               eswitch_mode = mlx5_eswitch_mode(dev);
                smfs_cap = mlx5_fs_dr_is_supported(dev);
 
                if (!smfs_cap) {
index 25490d1e321612bc4225c405b8ddfdc09d5d0054..cd0e2f45134296031b577fe40291b5a8fe20c42a 100644 (file)
@@ -3135,7 +3135,7 @@ static void mlx5e_modify_admin_state(struct mlx5_core_dev *mdev,
 
        mlx5_set_port_admin_status(mdev, state);
 
-       if (!MLX5_ESWITCH_MANAGER(mdev) ||  mlx5_eswitch_mode(esw) == MLX5_ESWITCH_OFFLOADS)
+       if (mlx5_eswitch_mode(mdev) != MLX5_ESWITCH_LEGACY)
                return;
 
        if (state == MLX5_PORT_UP)
index ce710f22b1fffbdf3ae28c5220a3dac00aff44fd..4cdf834fa74af679a0e2c8a9eb827f2b6882b06e 100644 (file)
@@ -271,8 +271,6 @@ mlx5e_tc_match_to_reg_set(struct mlx5_core_dev *mdev,
        return 0;
 }
 
-#define esw_offloads_mode(esw) (mlx5_eswitch_mode(esw) == MLX5_ESWITCH_OFFLOADS)
-
 static struct mlx5_tc_ct_priv *
 get_ct_priv(struct mlx5e_priv *priv)
 {
@@ -280,7 +278,7 @@ get_ct_priv(struct mlx5e_priv *priv)
        struct mlx5_rep_uplink_priv *uplink_priv;
        struct mlx5e_rep_priv *uplink_rpriv;
 
-       if (esw_offloads_mode(esw)) {
+       if (is_mdev_switchdev_mode(priv->mdev)) {
                uplink_rpriv = mlx5_eswitch_get_uplink_priv(esw, REP_ETH);
                uplink_priv = &uplink_rpriv->uplink_priv;
 
@@ -297,7 +295,7 @@ mlx5_tc_rule_insert(struct mlx5e_priv *priv,
 {
        struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
 
-       if (esw_offloads_mode(esw))
+       if (is_mdev_switchdev_mode(priv->mdev))
                return mlx5_eswitch_add_offloaded_rule(esw, spec, attr);
 
        return  mlx5e_add_offloaded_nic_rule(priv, spec, attr);
@@ -310,7 +308,7 @@ mlx5_tc_rule_delete(struct mlx5e_priv *priv,
 {
        struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
 
-       if (esw_offloads_mode(esw)) {
+       if (is_mdev_switchdev_mode(priv->mdev)) {
                mlx5_eswitch_del_offloaded_rule(esw, rule, attr);
 
                return;
index cb06b6e53fdd194478fc8ef030eede28b8f6c832..c23dd95e634d9d641d82f5371412ddb59b1bebe8 100644 (file)
@@ -2436,8 +2436,10 @@ free_out:
        return err;
 }
 
-u8 mlx5_eswitch_mode(struct mlx5_eswitch *esw)
+u8 mlx5_eswitch_mode(struct mlx5_core_dev *dev)
 {
+       struct mlx5_eswitch *esw = dev->priv.eswitch;
+
        return ESW_ALLOWED(esw) ? esw->mode : MLX5_ESWITCH_NONE;
 }
 EXPORT_SYMBOL_GPL(mlx5_eswitch_mode);
index b0ae8020f13e063c3e1659a31b2527b3df7ee8d8..29fd832950e0deed34af5ae4f36861a03188a8dc 100644 (file)
@@ -96,10 +96,10 @@ static inline u32 mlx5_eswitch_get_vport_metadata_mask(void)
 
 u32 mlx5_eswitch_get_vport_metadata_for_match(struct mlx5_eswitch *esw,
                                              u16 vport_num);
-u8 mlx5_eswitch_mode(struct mlx5_eswitch *esw);
+u8 mlx5_eswitch_mode(struct mlx5_core_dev *dev);
 #else  /* CONFIG_MLX5_ESWITCH */
 
-static inline u8 mlx5_eswitch_mode(struct mlx5_eswitch *esw)
+static inline u8 mlx5_eswitch_mode(struct mlx5_core_dev *dev)
 {
        return MLX5_ESWITCH_NONE;
 }
@@ -136,4 +136,8 @@ mlx5_eswitch_get_vport_metadata_mask(void)
 }
 #endif /* CONFIG_MLX5_ESWITCH */
 
+static inline bool is_mdev_switchdev_mode(struct mlx5_core_dev *dev)
+{
+       return mlx5_eswitch_mode(dev) == MLX5_ESWITCH_OFFLOADS;
+}
 #endif