From 69a6729b3496577536de667e4ea3d814c00e46c8 Mon Sep 17 00:00:00 2001 From: Lee Jones Date: Tue, 21 Sep 2021 16:02:58 +0100 Subject: [PATCH] Revert "ANDROID: Reduce log level for couple of prints in hotplug flow" This reverts commit 074a2b36c1b78eea55cba944d27858dbd07285b3. According to Thomas Gleixner this is a *real* warning and should not be demoted. If this warning is triggered, something is not right with the CPU Hotplug implementation. Signed-off-by: Lee Jones Change-Id: I49ceac16c33199cd829c7022709d6bd02f0338fa --- kernel/irq/cpuhotplug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/irq/cpuhotplug.c b/kernel/irq/cpuhotplug.c index cf8d4f75632e..39a41c56ad4f 100644 --- a/kernel/irq/cpuhotplug.c +++ b/kernel/irq/cpuhotplug.c @@ -42,7 +42,7 @@ static inline bool irq_needs_fixup(struct irq_data *d) * If this happens then there was a missed IRQ fixup at some * point. Warn about it and enforce fixup. */ - pr_debug("Eff. affinity %*pbl of IRQ %u contains only offline CPUs after offlining CPU %u\n", + pr_warn("Eff. affinity %*pbl of IRQ %u contains only offline CPUs after offlining CPU %u\n", cpumask_pr_args(m), d->irq, cpu); return true; }