diff options
-rw-r--r-- | kernel/sched.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 7f83be35d65c..1b529efe8872 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -3461,9 +3461,10 @@ static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, | |||
3461 | { | 3461 | { |
3462 | const struct sched_class *class; | 3462 | const struct sched_class *class; |
3463 | 3463 | ||
3464 | for (class = sched_class_highest; class; class = class->next) | 3464 | for_each_class(class) { |
3465 | if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle)) | 3465 | if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle)) |
3466 | return 1; | 3466 | return 1; |
3467 | } | ||
3467 | 3468 | ||
3468 | return 0; | 3469 | return 0; |
3469 | } | 3470 | } |