Re: [regression] 3.0-rc boot failure -- bisected to cd4ea6ae3982
From: Peter Zijlstra <hidden>
Date: 2011-07-20 16:43:35
Also in:
lkml
On Wed, 2011-07-20 at 09:04 -0700, Linus Torvalds wrote:
On Wed, Jul 20, 2011 at 7:58 AM, Peter Zijlstra [off-list ref] =
wrote:
quoted
Right, so we can either merge my scary patches now and have 3.0 boot on 16+ node machines (and risk breaking something), or delay them until 3.0.1 and have 16+ node machines suffer a little.=20 So how much impact does your scary patch have on machines that don't have multiple nodes? If it's a "the code isn't even called by normal machines" kind of setup, I don't think I care a lot.
Hmm, it does get called, but it looks relatively straight forward to make it so that it doesn't. Let me try that. Yes, the below works nicely (on top of the previous two). Built and boot tested on a single-node and multi-node x86_64. --- Subject: sched: Avoid creating superfluous domains From: Peter Zijlstra <redacted> Date: Wed Jul 20 18:34:30 CEST 2011 When creating sched_domains, stop when we've covered the entire target span instead of continuing to create domains, only to later find they're redundant and throw them away again. This avoids single node systems from touching funny NUMA sched_domain creation code. Requested-by: Linus Torvalds [off-list ref] Signed-off-by: Peter Zijlstra <redacted> --- kernel/sched.c | 2 ++ 1 file changed, 2 insertions(+) Index: linux-2.6/kernel/sched.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- linux-2.6.orig/kernel/sched.c
+++ linux-2.6/kernel/sched.c@@ -7436,6 +7436,8 @@ static int build_sched_domains(const str sd =3D build_sched_domain(tl, &d, cpu_map, attr, sd, i); if (tl->flags & SDTL_OVERLAP || sched_feat(FORCE_SD_OVERLAP)) sd->flags |=3D SD_OVERLAP; + if (cpumask_equal(cpu_map, sched_domain_span(sd))) + break; }
=20 while (sd->child)