projects
/
GitHub
/
mt8127
/
android_kernel_alcatel_ttab.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e6c8fba
)
sched: Select_task_rq_fair() must honour SD_LOAD_BALANCE
author
Peter Zijlstra
<a.p.zijlstra@chello.nl>
Wed, 16 Dec 2009 17:04:34 +0000
(18:04 +0100)
committer
Ingo Molnar
<mingo@elte.hu>
Wed, 16 Dec 2009 18:01:55 +0000
(19:01 +0100)
We should skip !SD_LOAD_BALANCE domains.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
LKML-Reference: <
20091216170517
.
653578430
@chello.nl>
CC: stable@kernel.org
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/sched_fair.c
patch
|
blob
|
blame
|
history
diff --git
a/kernel/sched_fair.c
b/kernel/sched_fair.c
index 5bedf6e3ebf36e0ed7dc477dde9317fa3f5ec7e4..ec1d2715620c70c8344243e73eaa58dad51b81bd 100644
(file)
--- a/
kernel/sched_fair.c
+++ b/
kernel/sched_fair.c
@@
-1429,6
+1429,9
@@
static int select_task_rq_fair(struct task_struct *p, int sd_flag, int wake_flag
}
for_each_domain(cpu, tmp) {
+ if (!(tmp->flags & SD_LOAD_BALANCE))
+ continue;
+
/*
* If power savings logic is enabled for a domain, see if we
* are not overloaded, if so, don't balance wider.