[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190807174026.31242-4-valentin.schneider@arm.com>
Date: Wed, 7 Aug 2019 18:40:26 +0100
From: Valentin Schneider <valentin.schneider@....com>
To: linux-kernel@...r.kernel.org
Cc: mingo@...nel.org, peterz@...radead.org, vincent.guittot@...aro.org
Subject: [PATCH 3/3] sched/fair: Check for CFS tasks in active_load_balance_cpu_stop()
We should really only be looking for CFS tasks, since that's all
detach_one_task() can ever pull.
Replace the rq.nr_running check with a rq.cfs.h_nr_running one to do
just that.
Signed-off-by: Valentin Schneider <valentin.schneider@....com>
---
kernel/sched/fair.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 79bd6ead589c..099aad1930bb 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -9206,8 +9206,8 @@ static int active_load_balance_cpu_stop(void *data)
!busiest_rq->active_balance))
goto out_unlock;
- /* Is there any task to move? */
- if (busiest_rq->nr_running <= 1)
+ /* Is there any CFS task to move? */
+ if (busiest_rq->cfs.h_nr_running < 1)
goto out_unlock;
/*
--
2.22.0
Powered by blists - more mailing lists