summaryrefslogtreecommitdiff
path: root/kernel/irq
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2021-08-16 16:48:17 +0300
committerThomas Gleixner <tglx@linutronix.de>2021-08-24 10:16:20 +0300
commit88ffe2d0a55a165e55cedad1693f239d47e3e17e (patch)
treea28febd0c47f6a9dcfae0d27a9e83bc44a4adf24 /kernel/irq
parent04c2721d3530f0723b4c922a8fa9f26b202a20de (diff)
downloadlinux-88ffe2d0a55a165e55cedad1693f239d47e3e17e.tar.xz
genirq/cpuhotplug: Demote debug printk to KERN_DEBUG
This sort of information is only generally useful when debugging. No need to have these sprinkled through the kernel log otherwise. Real world problem: During pre-release testing these have an affect on performance on real products. To the point where so much logging builds up, that it sets off the watchdog(s) on some high profile consumer devices. Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/r/20210816134817.1503661-1-lee.jones@linaro.org
Diffstat (limited to 'kernel/irq')
-rw-r--r--kernel/irq/cpuhotplug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/irq/cpuhotplug.c b/kernel/irq/cpuhotplug.c
index 02236b13b359..39a41c56ad4f 100644
--- a/kernel/irq/cpuhotplug.c
+++ b/kernel/irq/cpuhotplug.c
@@ -166,7 +166,7 @@ void irq_migrate_all_off_this_cpu(void)
raw_spin_unlock(&desc->lock);
if (affinity_broken) {
- pr_warn_ratelimited("IRQ %u: no longer affine to CPU%u\n",
+ pr_debug_ratelimited("IRQ %u: no longer affine to CPU%u\n",
irq, smp_processor_id());
}
}