diff options
Diffstat (limited to 'kernel/exit.c')
-rw-r--r-- | kernel/exit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 22399caf7574..bc0ec674d3f4 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -114,10 +114,11 @@ static void __exit_signal(struct task_struct *tsk) | |||
114 | __unhash_process(tsk); | 114 | __unhash_process(tsk); |
115 | 115 | ||
116 | tsk->signal = NULL; | 116 | tsk->signal = NULL; |
117 | cleanup_sighand(tsk); | 117 | tsk->sighand = NULL; |
118 | spin_unlock(&sighand->siglock); | 118 | spin_unlock(&sighand->siglock); |
119 | rcu_read_unlock(); | 119 | rcu_read_unlock(); |
120 | 120 | ||
121 | __cleanup_sighand(sighand); | ||
121 | clear_tsk_thread_flag(tsk,TIF_SIGPENDING); | 122 | clear_tsk_thread_flag(tsk,TIF_SIGPENDING); |
122 | flush_sigqueue(&tsk->pending); | 123 | flush_sigqueue(&tsk->pending); |
123 | if (sig) { | 124 | if (sig) { |