Commit 83dfd523 authored by Alex Shi's avatar Alex Shi Committed by Ingo Molnar
Browse files

sched: Update cpu load after task_tick



To get the latest runnable info, we need do this cpuload update after
task_tick.

Signed-off-by: default avatarAlex Shi <alex.shi@intel.com>
Reviewed-by: default avatarPaul Turner <pjt@google.com>
Signed-off-by: default avatarPeter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1371694737-29336-6-git-send-email-alex.shi@intel.com


Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 282cf499
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2165,8 +2165,8 @@ void scheduler_tick(void)

	raw_spin_lock(&rq->lock);
	update_rq_clock(rq);
	update_cpu_load_active(rq);
	curr->sched_class->task_tick(rq, curr, 0);
	update_cpu_load_active(rq);
	raw_spin_unlock(&rq->lock);

	perf_event_task_tick();