eas/sched/fair: Fixing comments in find_best_target.
Change-Id: I83f5b9887e98f9fdb81318cde45408e7ebfc4b13 Signed-off-by: Srinath Sridharan <srinathsr@google.com>
This commit is contained in:
parent
e931652d1b
commit
09c5f91afe
1 changed files with 7 additions and 5 deletions
|
@ -5710,17 +5710,19 @@ static inline int find_best_target(struct task_struct *p, bool boosted, bool pre
|
|||
|
||||
if (new_util < cur_capacity) {
|
||||
if (cpu_rq(i)->nr_running) {
|
||||
if(prefer_idle) {
|
||||
// Find a target cpu with lowest
|
||||
// utilization.
|
||||
if (prefer_idle) {
|
||||
/* Find a target cpu with highest
|
||||
* utilization.
|
||||
*/
|
||||
if (target_util == 0 ||
|
||||
target_util < new_util) {
|
||||
target_cpu = i;
|
||||
target_util = new_util;
|
||||
}
|
||||
} else {
|
||||
// Find a target cpu with highest
|
||||
// utilization.
|
||||
/* Find a target cpu with lowest
|
||||
* utilization.
|
||||
*/
|
||||
if (target_util == 0 ||
|
||||
target_util > new_util) {
|
||||
target_cpu = i;
|
||||
|
|
Loading…
Add table
Reference in a new issue