Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3902e476 authored by Michael Holzheu's avatar Michael Holzheu Committed by Martin Schwidefsky
Browse files

[S390] No panic for failed reboot



If reboot fails (e.g. because wrong devno has been specified by the user),
we should just stop all cpus, but should not trigger a kernel panic.

Signed-off-by: default avatarMichael Holzheu <holzheu@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 654452a4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -697,7 +697,8 @@ void do_reipl(void)
		diag308(DIAG308_IPL, NULL);
		break;
	}
	panic("reipl failed!\n");
	printk(KERN_EMERG "reboot failed!\n");
	signal_processor(smp_processor_id(), sigp_stop_and_store_status);
}

static void do_dump(void)