From a5579ee79ef8546dd47abe34d73dc9a69a14bbda Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roger=20Pau=20Monn=C3=A9?= Date: Wed, 24 Jan 2018 18:02:14 +0100 Subject: [PATCH] x86/acpi: process softirqs while printing CPU ACPI data MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Or else the watchdog triggers on boxes with a huge number of CPUs Reported-by: Simon Crowe Signed-off-by: Roger Pau Monné Acked-by: Andrew Cooper Acked-by: Jan Beulich --- xen/arch/x86/acpi/cpu_idle.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xen/arch/x86/acpi/cpu_idle.c b/xen/arch/x86/acpi/cpu_idle.c index cb1c5da36c..bad2785e37 100644 --- a/xen/arch/x86/acpi/cpu_idle.c +++ b/xen/arch/x86/acpi/cpu_idle.c @@ -352,7 +352,10 @@ static void dump_cx(unsigned char key) printk("'%c' pressed -> printing ACPI Cx structures\n", key); for_each_online_cpu ( cpu ) if (processor_powers[cpu]) + { print_acpi_power(cpu, processor_powers[cpu]); + process_pending_softirqs(); + } } static int __init cpu_idle_key_init(void) -- 2.30.2