mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-17 03:44:00 +00:00
sched: fix a find_busiest_group buglet
In one of the group load balancer patches:
commit 408ed066b1
Author: Peter Zijlstra <a.p.zijlstra@chello.nl>
Date: Fri Jun 27 13:41:28 2008 +0200
Subject: sched: hierarchical load vs find_busiest_group
The following change:
- if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
+ if (max_load - this_load + 2*busiest_load_per_task >=
busiest_load_per_task * imbn) {
made the condition always true, because imbn is [1,2].
Therefore, remove the 2*, and give the it a fair chance.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Acked-by: Mike Galbraith <efault@gmx.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
8c82a17e9c
commit
01c8c57d66
1 changed files with 1 additions and 1 deletions
|
@ -3344,7 +3344,7 @@ small_imbalance:
|
||||||
} else
|
} else
|
||||||
this_load_per_task = cpu_avg_load_per_task(this_cpu);
|
this_load_per_task = cpu_avg_load_per_task(this_cpu);
|
||||||
|
|
||||||
if (max_load - this_load + 2*busiest_load_per_task >=
|
if (max_load - this_load + busiest_load_per_task >=
|
||||||
busiest_load_per_task * imbn) {
|
busiest_load_per_task * imbn) {
|
||||||
*imbalance = busiest_load_per_task;
|
*imbalance = busiest_load_per_task;
|
||||||
return busiest;
|
return busiest;
|
||||||
|
|
Loading…
Add table
Reference in a new issue