浏览代码

[POWERPC] reboot when panic_timout is set

Only call into RTAS when booted with panic=0 because the RTAS call
does not return.  The system has to be rebooted via the HMC or via the
management console right now.  This is cumbersome and not what the
default panic=180 is supposed to do.

Signed-off-by: Olaf Hering <olh@suse.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Olaf Hering 19 年之前
父节点
当前提交
39ed2fe62c
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      arch/powerpc/kernel/rtas.c

+ 3 - 0
arch/powerpc/kernel/rtas.c

@@ -628,6 +628,9 @@ void rtas_os_term(char *str)
 {
 	int status;
 
+	if (panic_timeout)
+		return;
+
 	if (RTAS_UNKNOWN_SERVICE == rtas_token("ibm,os-term"))
 		return;