summaryrefslogtreecommitdiff
path: root/kernel/resource.c
diff options
context:
space:
mode:
authorManuel Quintero Fonseca <sakunix@yahoo.com>2026-05-22 17:01:31 -0700
committerAndrew Morton <akpm@linux-foundation.org>2026-08-03 21:10:05 -0700
commitd179ee76aba9141666b367528f81972943ab54fe (patch)
tree1f76e9fabe5e29819ccca2fd7fca7aba34c29c4f /kernel/resource.c
parent62cc90241548d5570ee68e01aaba6506964e9811 (diff)
downloadlinux-next-d179ee76aba9141666b367528f81972943ab54fe.tar.gz
linux-next-d179ee76aba9141666b367528f81972943ab54fe.zip
resource: downgrade "resource sanity check" warning to debug level
The "resource sanity check" warning need not mean that there is a functional issue and in the cases when there isn't one, it is just useless and confusing noise. For this reason, downgrade the log level of it from "warn" to "debug". This reduces log clutter while keeping the diagnostic information available for debugging purposes if needed. Link: https://lore.kernel.org/20260523000131.7086-1-sakunix@yahoo.com Signed-off-by: Manuel Quintero Fonseca <sakunix@yahoo.com> Cc: Andriy Shevchenko <andriy.shevchenko@linux.intel.com> Cc: Bjorn Helgaas <bhelgaas@google.com> Cc: Hans de Goede <hansg@kernel.org> Cc: Mika Westeberg <mika.westerberg@linux.intel.com> Cc: "Rafael J. Wysocki" <rafael@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'kernel/resource.c')
-rw-r--r--kernel/resource.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/resource.c b/kernel/resource.c
index 3d17e3196a3e..e60539a55541 100644
--- a/kernel/resource.c
+++ b/kernel/resource.c
@@ -1859,7 +1859,7 @@ int iomem_map_sanity_check(resource_size_t addr, unsigned long size)
if (p->flags & IORESOURCE_BUSY)
continue;
- pr_warn("resource sanity check: requesting [mem %pa-%pa], which spans more than %s %pR\n",
+ pr_debug("resource sanity check: requesting [mem %pa-%pa], which spans more than %s %pR\n",
&addr, &end, p->name, p);
err = -1;
break;