From: Helge Deller Date: Tue, 25 Jul 2017 19:41:41 +0000 (+0200) Subject: parisc: Suspend lockup detectors before system halt X-Git-Tag: v4.9.41~97 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa2aa76efe7d07b8920defea92072bf1df2df7b1;p=platform%2Fkernel%2Flinux-amlogic.git parisc: Suspend lockup detectors before system halt commit 56188832a50f09998cb570ba3771a1d25c193c0e upstream. Some machines can't power off the machine, so disable the lockup detectors to avoid this watchdog BUG to show up every few seconds: watchdog: BUG: soft lockup - CPU#0 stuck for 22s! [systemd-shutdow:1] Signed-off-by: Helge Deller Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/parisc/kernel/process.c b/arch/parisc/kernel/process.c index e7ffde2..7593787 100644 --- a/arch/parisc/kernel/process.c +++ b/arch/parisc/kernel/process.c @@ -50,6 +50,7 @@ #include #include #include +#include #include #include @@ -142,6 +143,7 @@ void machine_power_off(void) /* prevent soft lockup/stalled CPU messages for endless loop. */ rcu_sysrq_start(); + lockup_detector_suspend(); for (;;); }