# HG changeset patch # Parent 1126b3079bef37e1bb5a97b90c14a51d4e1c91c3 kexec/noreboot: Don't kexec_crash() if noreboot has been requested. The noreboot option is for debugging, to be able to see the dying output. To that end, continuing and possibly booting into the crash kernel defeats one of the purposes of noreboot. Signed-off-by: Andrew Cooper diff -r 1126b3079bef xen/drivers/char/console.c --- a/xen/drivers/char/console.c +++ b/xen/drivers/char/console.c @@ -963,16 +963,15 @@ void panic(const char *fmt, ...) debugger_trap_immediate(); -#ifdef CONFIG_KEXEC - kexec_crash(); -#endif - if ( opt_noreboot ) { machine_halt(); } else { +#ifdef CONFIG_KEXEC + kexec_crash(); +#endif watchdog_disable(); machine_restart(5000); }