Skip to content

Commit ffdc8ec

Browse files
alexveskerSaeed Mahameed
authored andcommitted
net/mlx5: DR, Reduce print level for matcher print
There is no need to print on each unsuccessful matcher ip_version combination since it probably will happen when trying to create all the possible combinations. On a real failure we have a print in the calling function. Signed-off-by: Alex Vesker <[email protected]> Signed-off-by: Saeed Mahameed <[email protected]>
1 parent 17347d5 commit ffdc8ec

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

drivers/net/ethernet/mellanox/mlx5/core/steering/dr_matcher.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ static int dr_matcher_set_ste_builders(struct mlx5dr_matcher *matcher,
395395
/* Check that all mask fields were consumed */
396396
for (i = 0; i < sizeof(struct mlx5dr_match_param); i++) {
397397
if (((u8 *)&mask)[i] != 0) {
398-
mlx5dr_err(dmn, "Mask contains unsupported parameters\n");
398+
mlx5dr_dbg(dmn, "Mask contains unsupported parameters\n");
399399
return -EOPNOTSUPP;
400400
}
401401
}

0 commit comments

Comments
 (0)