Commit c97f54fe authored by Peter Zijlstra's avatar Peter Zijlstra
Browse files

sched/fair: Cleanup pick_task_fair()'s curr



With 4c456c9a ("sched/fair: Remove unused 'curr' argument from
pick_next_entity()") curr is no longer being used, so no point in
clearing it.

Signed-off-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: default avatarValentin Schneider <vschneid@redhat.com>
Tested-by: default avatarValentin Schneider <vschneid@redhat.com>
Link: https://lkml.kernel.org/r/20240727105028.614707623@infradead.org
parent 8e2e13ac
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -8463,15 +8463,9 @@ static struct task_struct *pick_task_fair(struct rq *rq)
		return NULL;

	do {
		struct sched_entity *curr = cfs_rq->curr;

		/* When we pick for a remote RQ, we'll not have done put_prev_entity() */
		if (curr) {
			if (curr->on_rq)
		if (cfs_rq->curr && cfs_rq->curr->on_rq)
			update_curr(cfs_rq);
			else
				curr = NULL;
		}

		if (unlikely(check_cfs_rq_runtime(cfs_rq)))
			goto again;