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

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

Merge branch 'sched/urgent' into sched/core

parents 64b7482d 4cd42620
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1433,9 +1433,10 @@ static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
static unsigned long cpu_avg_load_per_task(int cpu)
{
	struct rq *rq = cpu_rq(cpu);
	unsigned long nr_running = rq->nr_running;

	if (rq->nr_running)
		rq->avg_load_per_task = rq->load.weight / rq->nr_running;
	if (nr_running)
		rq->avg_load_per_task = rq->load.weight / nr_running;
	else
		rq->avg_load_per_task = 0;