Commit dd238b70 authored by Jianbo Liu's avatar Jianbo Liu Committed by Saeed Mahameed
Browse files

net/mlx5e: Change the warning when ignore_flow_level is not supported



Downgrade the print from mlx5_core_warn() to mlx5_core_dbg(), as it
is just a statement of fact that firmware doesn't support ignore flow
level.

And change the wording to "firmware flow level support is missing", to
make it more accurate.

Fixes: ae2ee3be ("net/mlx5: CT: Remove warning of ignore_flow_level support for VFs")
Signed-off-by: default avatarJianbo Liu <jianbol@nvidia.com>
Suggested-by: default avatarElliott, Robert (Servers) <elliott@hpe.com>
Reviewed-by: default avatarRoi Dayan <roid@nvidia.com>
Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
parent 5e6107b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ mlx5e_tc_post_act_init(struct mlx5e_priv *priv, struct mlx5_fs_chains *chains,

	if (!MLX5_CAP_FLOWTABLE_TYPE(priv->mdev, ignore_flow_level, table_type)) {
		if (priv->mdev->coredev_type == MLX5_COREDEV_PF)
			mlx5_core_warn(priv->mdev, "firmware level support is missing\n");
			mlx5_core_dbg(priv->mdev, "firmware flow level support is missing\n");
		err = -EOPNOTSUPP;
		goto err_check;
	}