Skip to content

Commit 3fe33bc

Browse files
Xunlei PangIngo Molnar
authored andcommitted
sched/deadline: Remove a redundant condition from task_woken_dl()
'p' has been already queued at this point, so "!task_running(rq, p)" and "p->nr_cpus_allowed > 1" imply that "has_pushable_dl_tasks(rq)" is true, so it can be removed. Signed-off-by: Xunlei Pang <pang.xunlei@linaro.org> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Acked-by: Steven Rostedt <rostedt@goodmis.org> Cc: Juri Lelli <juri.lelli@gmail.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Mike Galbraith <efault@gmx.de> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Link: http://lkml.kernel.org/r/1435995563-3723-2-git-send-email-xlpang@126.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
1 parent 8fd3735 commit 3fe33bc

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

kernel/sched/deadline.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1657,7 +1657,6 @@ static void task_woken_dl(struct rq *rq, struct task_struct *p)
16571657
{
16581658
if (!task_running(rq, p) &&
16591659
!test_tsk_need_resched(rq->curr) &&
1660-
has_pushable_dl_tasks(rq) &&
16611660
p->nr_cpus_allowed > 1 &&
16621661
dl_task(rq->curr) &&
16631662
(rq->curr->nr_cpus_allowed < 2 ||

0 commit comments

Comments
 (0)