We should skip !SD_LOAD_BALANCE domains. Signed-off-by: Peter Zijlstra CC: stable@kernel.org --- kernel/sched_fair.c | 3 +++ 1 file changed, 3 insertions(+) Index: linux-2.6/kernel/sched_fair.c =================================================================== --- linux-2.6.orig/kernel/sched_fair.c +++ linux-2.6/kernel/sched_fair.c @@ -1429,6 +1429,9 @@ static int select_task_rq_fair(struct ta } 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. -- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/