Commit caf2857a authored by Ingo Molnar's avatar Ingo Molnar Committed by Linus Torvalds

[PATCH] timer exit cleanup

Do all timer zapping in exit_itimers.
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 97008082
...@@ -811,10 +811,8 @@ fastcall NORET_TYPE void do_exit(long code) ...@@ -811,10 +811,8 @@ fastcall NORET_TYPE void do_exit(long code)
acct_update_integrals(tsk); acct_update_integrals(tsk);
update_mem_hiwater(tsk); update_mem_hiwater(tsk);
group_dead = atomic_dec_and_test(&tsk->signal->live); group_dead = atomic_dec_and_test(&tsk->signal->live);
if (group_dead) { if (group_dead)
del_timer_sync(&tsk->signal->real_timer);
acct_process(code); acct_process(code);
}
exit_mm(tsk); exit_mm(tsk);
exit_sem(tsk); exit_sem(tsk);
......
...@@ -1197,6 +1197,7 @@ void exit_itimers(struct signal_struct *sig) ...@@ -1197,6 +1197,7 @@ void exit_itimers(struct signal_struct *sig)
tmr = list_entry(sig->posix_timers.next, struct k_itimer, list); tmr = list_entry(sig->posix_timers.next, struct k_itimer, list);
itimer_delete(tmr); itimer_delete(tmr);
} }
del_timer_sync(&sig->real_timer);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment