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:
@@ -5674,17 +5674,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;
|
||||
|
||||
Reference in New Issue
Block a user