summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2017-03-18 17:13:27 +0100
committerHelge Deller <deller@gmx.de>2017-03-18 17:27:45 +0100
commit73580dac7618e4bcd21679f553cf3c97323fec46 (patch)
treeff973c428ccfd92a2476fee7bdd9759badf2ba57 /arch
parent74e3f6e63da6c8e8246fba1689e040bc926b4a1a (diff)
downloadlinux-0-day-73580dac7618e4bcd21679f553cf3c97323fec46.tar.gz
linux-0-day-73580dac7618e4bcd21679f553cf3c97323fec46.tar.xz
parisc: Fix system shutdown halt
On those parisc machines which don't provide a software power off function, the system currently kills the init process at the end of a shutdown and unexpectedly restarts insteads of halting. Fix it by adding a loop which will not return. Signed-off-by: Helge Deller <deller@gmx.de> Cc: stable@vger.kernel.org # 4.9+
Diffstat (limited to 'arch')
-rw-r--r--arch/parisc/kernel/process.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/parisc/kernel/process.c b/arch/parisc/kernel/process.c
index 06f7ca7fe70b6..b76f503eee4a8 100644
--- a/arch/parisc/kernel/process.c
+++ b/arch/parisc/kernel/process.c
@@ -142,6 +142,8 @@ void machine_power_off(void)
printk(KERN_EMERG "System shut down completed.\n"
"Please power this system off now.");
+
+ for (;;);
}
void (*pm_power_off)(void) = machine_power_off;