Blame SOURCES/0019-netdrv-net-mlx5-Use-debug-message-instead-of-warn.patch

d8f823
From 371f9058e2e9ac34a7db38b39dbf6f64593c0905 Mon Sep 17 00:00:00 2001
d8f823
From: Alaa Hleihel <ahleihel@redhat.com>
d8f823
Date: Sun, 10 May 2020 14:51:40 -0400
d8f823
Subject: [PATCH 019/312] [netdrv] net/mlx5: Use debug message instead of warn
d8f823
d8f823
Message-id: <20200510145245.10054-18-ahleihel@redhat.com>
d8f823
Patchwork-id: 306559
d8f823
Patchwork-instance: patchwork
d8f823
O-Subject: [RHEL8.3 BZ 1789378 v2 17/82] net/mlx5: Use debug message instead of warn
d8f823
Bugzilla: 1789378
d8f823
RH-Acked-by: Kamal Heib <kheib@redhat.com>
d8f823
RH-Acked-by: Jarod Wilson <jarod@redhat.com>
d8f823
RH-Acked-by: Tony Camuso <tcamuso@redhat.com>
d8f823
RH-Acked-by: Jonathan Toppins <jtoppins@redhat.com>
d8f823
d8f823
Bugzilla: http://bugzilla.redhat.com/1789378
d8f823
Upstream: v5.4-rc1
d8f823
d8f823
commit 647d58a989b3b0b788c721a08394aec825e3438c
d8f823
Author: Yishai Hadas <yishaih@mellanox.com>
d8f823
Date:   Thu Aug 8 11:43:55 2019 +0300
d8f823
d8f823
    net/mlx5: Use debug message instead of warn
d8f823
d8f823
    As QP may be created by DEVX, it may be valid to not find the rsn in
d8f823
    mlx5 core tree, change the level to be debug.
d8f823
d8f823
    Signed-off-by: Yishai Hadas <yishaih@mellanox.com>
d8f823
    Reviewed-by: Saeed Mahameed <saeedm@mellanox.com>
d8f823
    Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
d8f823
d8f823
Signed-off-by: Alaa Hleihel <ahleihel@redhat.com>
d8f823
Signed-off-by: Frantisek Hrbata <fhrbata@redhat.com>
d8f823
---
d8f823
 drivers/net/ethernet/mellanox/mlx5/core/qp.c | 2 +-
d8f823
 1 file changed, 1 insertion(+), 1 deletion(-)
d8f823
d8f823
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/qp.c b/drivers/net/ethernet/mellanox/mlx5/core/qp.c
d8f823
index b8ba74de9555..f0f3abe331da 100644
d8f823
--- a/drivers/net/ethernet/mellanox/mlx5/core/qp.c
d8f823
+++ b/drivers/net/ethernet/mellanox/mlx5/core/qp.c
d8f823
@@ -162,7 +162,7 @@ static int rsc_event_notifier(struct notifier_block *nb,
d8f823
 
d8f823
 	common = mlx5_get_rsc(table, rsn);
d8f823
 	if (!common) {
d8f823
-		mlx5_core_warn(dev, "Async event for bogus resource 0x%x\n", rsn);
d8f823
+		mlx5_core_dbg(dev, "Async event for unknown resource 0x%x\n", rsn);
d8f823
 		return NOTIFY_OK;
d8f823
 	}
d8f823
 
d8f823
-- 
d8f823
2.13.6
d8f823