[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <b8b58d52-691c-11f0-2d26-a51e03430771@redhat.com>
Date: Fri, 14 Oct 2016 17:27:58 +0200
From: Laszlo Ersek <lersek@...hat.com>
To: Andrew Jones <drjones@...hat.com>,
Zhen Lei <thunder.leizhen@...wei.com>,
Will Deacon <will.deacon@....com>,
Lorenzo Pieralisi <lorenzo.pieralisi@....com>,
Hanjun Guo <hanjun.guo@...aro.org>
Cc: main kernel list <linux-kernel@...r.kernel.org>,
linux-arm-kernel@...ts.infradead.org,
Ard Biesheuvel <ard.biesheuvel@...aro.org>,
Shannon Zhao <shannon.zhao@...aro.org>,
Wei Huang <wei@...hat.com>
Subject: Re: aarch64 ACPI boot regressed by commit 7ba5f605f3a0 ("arm64/numa:
remove the limitation that cpu0 must bind to node0")
On 10/14/16 17:01, Laszlo Ersek wrote:
> Maybe the code I
> tried to analyze in this email was never *meant* to associate CPU#0 with
> any NUMA node at all (not even node 0); instead, other code -- for
> example code removed by 7ba5f605f3a0 -- was meant to perform that
> association.
Staring a bit more at the code, this looks very likely; in acpi_map_gic_cpu_interface() we have
> /* Check if GICC structure of boot CPU is available in the MADT */
> if (cpu_logical_map(0) == hwid) {
> if (bootcpu_valid) {
> pr_err("duplicate boot CPU MPIDR: 0x%llx in MADT\n",
> hwid);
> return;
> }
> bootcpu_valid = true;
> return;
> }
which means that this callback function (for parsing the GICC structures in the MADT) expects to find the boot processor as well.
Upon finding the boot processor, we set bootcpu_valid to true, and that's it -- no association with any NUMA node, and no incrementing of "cpu_count".
Thanks
Laszlo
Powered by blists - more mailing lists