aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/exit.c')
-rw-r--r--kernel/exit.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/kernel/exit.c b/kernel/exit.c
index 2ef2ad540201..c2bdf6fb61a5 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -793,6 +793,17 @@ fastcall NORET_TYPE void do_exit(long code)
793 ptrace_notify((PTRACE_EVENT_EXIT << 8) | SIGTRAP); 793 ptrace_notify((PTRACE_EVENT_EXIT << 8) | SIGTRAP);
794 } 794 }
795 795
796 /*
797 * We're taking recursive faults here in do_exit. Safest is to just
798 * leave this task alone and wait for reboot.
799 */
800 if (unlikely(tsk->flags & PF_EXITING)) {
801 printk(KERN_ALERT
802 "Fixing recursive fault but reboot is needed!\n");
803 set_current_state(TASK_UNINTERRUPTIBLE);
804 schedule();
805 }
806
796 tsk->flags |= PF_EXITING; 807 tsk->flags |= PF_EXITING;
797 808
798 /* 809 /*