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

Commit fd8bb43e authored by Ingo Molnar's avatar Ingo Molnar
Browse files

sched: delta_exec accounting fix



small delta_exec accounting fix: increase delta_exec and increase
sum_exec_runtime even if the task is not on the runqueue anymore.

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent c5dcfe72
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -287,15 +287,15 @@ __update_curr(struct cfs_rq *cfs_rq, struct sched_entity *curr, u64 now)
	struct load_weight *lw = &cfs_rq->load;
	unsigned long load = lw->weight;

	if (unlikely(!load))
		return;

	delta_exec = curr->delta_exec;
	schedstat_set(curr->exec_max, max((u64)delta_exec, curr->exec_max));

	curr->sum_exec_runtime += delta_exec;
	cfs_rq->exec_clock += delta_exec;

	if (unlikely(!load))
		return;

	delta_fair = calc_delta_fair(delta_exec, lw);
	delta_mine = calc_delta_mine(delta_exec, curr->load.weight, lw);