aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAlex Vesker <valex@mellanox.com>2020-07-06 16:32:11 +0300
committerSaeed Mahameed <saeedm@mellanox.com>2020-07-28 02:37:52 -0700
commitffdc8ec0b79f499c21284f4229de02d70204bf6a (patch)
treeb81dc6eb0f7e30c65bbe3d763a1c9e20822f70dc
parentnet/mlx5e: Add support for PCI relaxed ordering (diff)
downloadwireguard-linux-ffdc8ec0b79f499c21284f4229de02d70204bf6a.tar.xz
wireguard-linux-ffdc8ec0b79f499c21284f4229de02d70204bf6a.zip
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 <valex@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
-rw-r--r--drivers/net/ethernet/mellanox/mlx5/core/steering/dr_matcher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_matcher.c b/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_matcher.c
index 31abcbb95ca2..6960aedd33cb 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_matcher.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_matcher.c
@@ -395,7 +395,7 @@ static int dr_matcher_set_ste_builders(struct mlx5dr_matcher *matcher,
/* Check that all mask fields were consumed */
for (i = 0; i < sizeof(struct mlx5dr_match_param); i++) {
if (((u8 *)&mask)[i] != 0) {
- mlx5dr_err(dmn, "Mask contains unsupported parameters\n");
+ mlx5dr_dbg(dmn, "Mask contains unsupported parameters\n");
return -EOPNOTSUPP;
}
}