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

Commit 5ce73a4a authored by Ingo Molnar's avatar Ingo Molnar
Browse files

timers: fix itimer/many thread hang, cleanups



Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 0a8eaa4f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1372,9 +1372,9 @@ void run_posix_cpu_timers(struct task_struct *tsk)
	 * tsk->signal is non-NULL; this probably can't happen but cover the
	 * possibility anyway.
	 */
	if (unlikely(!sig) || !fastpath_timer_check(tsk, sig)) {
	if (unlikely(!sig) || !fastpath_timer_check(tsk, sig))
		return;
	}

	sighand = lock_task_sighand(tsk, &flags);
	if (likely(sighand)) {
		/*
+1 −1

File changed.

Contains only whitespace changes.