We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c538938 commit 11cb0a2Copy full SHA for 11cb0a2
arch/powerpc/kernel/traps.c
@@ -503,8 +503,11 @@ void system_reset_exception(struct pt_regs *regs)
503
die("Unrecoverable nested System Reset", regs, SIGABRT);
504
#endif
505
/* Must die if the interrupt is not recoverable */
506
- if (!(regs->msr & MSR_RI))
+ if (!(regs->msr & MSR_RI)) {
507
+ /* For the reason explained in die_mce, nmi_exit before die */
508
+ nmi_exit();
509
die("Unrecoverable System Reset", regs, SIGABRT);
510
+ }
511
512
if (saved_hsrrs) {
513
mtspr(SPRN_HSRR0, hsrr0);
0 commit comments