Skip to content

Commit dd238b7

Browse files
Jianbo LiuSaeed Mahameed
authored andcommitted
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: ae2ee3b ("net/mlx5: CT: Remove warning of ignore_flow_level support for VFs") Signed-off-by: Jianbo Liu <[email protected]> Suggested-by: Elliott, Robert (Servers) <[email protected]> Reviewed-by: Roi Dayan <[email protected]> Signed-off-by: Saeed Mahameed <[email protected]>
1 parent 5e6107b commit dd238b7

File tree

1 file changed

+1
-1
lines changed
  • drivers/net/ethernet/mellanox/mlx5/core/en/tc

1 file changed

+1
-1
lines changed

drivers/net/ethernet/mellanox/mlx5/core/en/tc/post_act.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ mlx5e_tc_post_act_init(struct mlx5e_priv *priv, struct mlx5_fs_chains *chains,
3737

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

0 commit comments

Comments
 (0)