From: "Michael S. Tsirkin" <mst@redhat.com>
To: Zeng Tao <prime.zeng@hisilicon.com>
Cc: qemu-devel@nongnu.org, qemu-trivial@nongnu.org,
Shannon Zhao <shannon.zhaosl@gmail.com>,
Peter Maydell <peter.maydell@linaro.org>,
Igor Mammedov <imammedo@redhat.com>,
qemu-arm@nongnu.org
Subject: Re: [PATCH] hw/arm/acpi: Pack the SRAT processors structure by node_id ascending order
Date: Tue, 7 Jan 2020 04:33:10 -0500 [thread overview]
Message-ID: <20200107042918-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <1578388729-55540-1-git-send-email-prime.zeng@hisilicon.com>
On Tue, Jan 07, 2020 at 05:18:49PM +0800, Zeng Tao wrote:
> When booting the guest linux with the following numa configuration:
> -numa node,node_id=1,cpus=0-3
> -numa node,node_id=0,cpus=4-7
> We can get the following numa topology in the guest system:
> Architecture: aarch64
> Byte Order: Little Endian
> CPU(s): 8
> On-line CPU(s) list: 0-7
> Thread(s) per core: 1
> Core(s) per socket: 8
> Socket(s): 1
> NUMA node(s): 2
> L1d cache: unknown size
> L1i cache: unknown size
> L2 cache: unknown size
> NUMA node0 CPU(s): 0-3
> NUMA node1 CPU(s): 4-7
> The Cpus 0-3 is assigned with NUMA node 1 in QEMU while it get NUMA node
> 0 in the guest.
>
> In fact, In the linux kernel, numa_node_id is allocated per the ACPI
> SRAT processors structure order,so the cpu 0 will be the first one to
> allocate its NUMA node id, so it gets the NUMA node 0.
>
> To fix this issue, we pack the SRAT processors structure in numa node id
> order but not the default cpu number order.
>
> Signed-off-by: Zeng Tao <prime.zeng@hisilicon.com>
Does this matter? If yes fixing linux to take node id from proximity
field in ACPI seems cleaner ...
> ---
> hw/arm/virt-acpi-build.c | 23 +++++++++++++++--------
> 1 file changed, 15 insertions(+), 8 deletions(-)
>
> diff --git a/hw/arm/virt-acpi-build.c b/hw/arm/virt-acpi-build.c
> index bd5f771..497192b 100644
> --- a/hw/arm/virt-acpi-build.c
> +++ b/hw/arm/virt-acpi-build.c
> @@ -520,7 +520,8 @@ build_srat(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> AcpiSystemResourceAffinityTable *srat;
> AcpiSratProcessorGiccAffinity *core;
> AcpiSratMemoryAffinity *numamem;
> - int i, srat_start;
> + int i, j, srat_start;
> + uint32_t node_id;
> uint64_t mem_base;
> MachineClass *mc = MACHINE_GET_CLASS(vms);
> MachineState *ms = MACHINE(vms);
> @@ -530,13 +531,19 @@ build_srat(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> srat = acpi_data_push(table_data, sizeof(*srat));
> srat->reserved1 = cpu_to_le32(1);
>
> - for (i = 0; i < cpu_list->len; ++i) {
> - core = acpi_data_push(table_data, sizeof(*core));
> - core->type = ACPI_SRAT_PROCESSOR_GICC;
> - core->length = sizeof(*core);
> - core->proximity = cpu_to_le32(cpu_list->cpus[i].props.node_id);
> - core->acpi_processor_uid = cpu_to_le32(i);
> - core->flags = cpu_to_le32(1);
> + for (i = 0; i < ms->numa_state->num_nodes; ++i) {
> + for (j = 0; j < cpu_list->len; ++j) {
Hmm O(n ^2) isn't great ...
> + node_id = cpu_to_le32(cpu_list->cpus[j].props.node_id);
> + if (node_id != i) {
> + continue;
> + }
> + core = acpi_data_push(table_data, sizeof(*core));
> + core->type = ACPI_SRAT_PROCESSOR_GICC;
> + core->length = sizeof(*core);
> + core->proximity = node_id;
> + core->acpi_processor_uid = cpu_to_le32(j);
> + core->flags = cpu_to_le32(1);
> + }
> }
is the issue arm specific? wouldn't it affect x86 too?
> mem_base = vms->memmap[VIRT_MEM].base;
> --
> 2.8.1
WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Zeng Tao <prime.zeng@hisilicon.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
qemu-trivial@nongnu.org, qemu-devel@nongnu.org,
Shannon Zhao <shannon.zhaosl@gmail.com>,
qemu-arm@nongnu.org, Igor Mammedov <imammedo@redhat.com>
Subject: Re: [PATCH] hw/arm/acpi: Pack the SRAT processors structure by node_id ascending order
Date: Tue, 7 Jan 2020 04:33:10 -0500 [thread overview]
Message-ID: <20200107042918-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <1578388729-55540-1-git-send-email-prime.zeng@hisilicon.com>
On Tue, Jan 07, 2020 at 05:18:49PM +0800, Zeng Tao wrote:
> When booting the guest linux with the following numa configuration:
> -numa node,node_id=1,cpus=0-3
> -numa node,node_id=0,cpus=4-7
> We can get the following numa topology in the guest system:
> Architecture: aarch64
> Byte Order: Little Endian
> CPU(s): 8
> On-line CPU(s) list: 0-7
> Thread(s) per core: 1
> Core(s) per socket: 8
> Socket(s): 1
> NUMA node(s): 2
> L1d cache: unknown size
> L1i cache: unknown size
> L2 cache: unknown size
> NUMA node0 CPU(s): 0-3
> NUMA node1 CPU(s): 4-7
> The Cpus 0-3 is assigned with NUMA node 1 in QEMU while it get NUMA node
> 0 in the guest.
>
> In fact, In the linux kernel, numa_node_id is allocated per the ACPI
> SRAT processors structure order,so the cpu 0 will be the first one to
> allocate its NUMA node id, so it gets the NUMA node 0.
>
> To fix this issue, we pack the SRAT processors structure in numa node id
> order but not the default cpu number order.
>
> Signed-off-by: Zeng Tao <prime.zeng@hisilicon.com>
Does this matter? If yes fixing linux to take node id from proximity
field in ACPI seems cleaner ...
> ---
> hw/arm/virt-acpi-build.c | 23 +++++++++++++++--------
> 1 file changed, 15 insertions(+), 8 deletions(-)
>
> diff --git a/hw/arm/virt-acpi-build.c b/hw/arm/virt-acpi-build.c
> index bd5f771..497192b 100644
> --- a/hw/arm/virt-acpi-build.c
> +++ b/hw/arm/virt-acpi-build.c
> @@ -520,7 +520,8 @@ build_srat(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> AcpiSystemResourceAffinityTable *srat;
> AcpiSratProcessorGiccAffinity *core;
> AcpiSratMemoryAffinity *numamem;
> - int i, srat_start;
> + int i, j, srat_start;
> + uint32_t node_id;
> uint64_t mem_base;
> MachineClass *mc = MACHINE_GET_CLASS(vms);
> MachineState *ms = MACHINE(vms);
> @@ -530,13 +531,19 @@ build_srat(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> srat = acpi_data_push(table_data, sizeof(*srat));
> srat->reserved1 = cpu_to_le32(1);
>
> - for (i = 0; i < cpu_list->len; ++i) {
> - core = acpi_data_push(table_data, sizeof(*core));
> - core->type = ACPI_SRAT_PROCESSOR_GICC;
> - core->length = sizeof(*core);
> - core->proximity = cpu_to_le32(cpu_list->cpus[i].props.node_id);
> - core->acpi_processor_uid = cpu_to_le32(i);
> - core->flags = cpu_to_le32(1);
> + for (i = 0; i < ms->numa_state->num_nodes; ++i) {
> + for (j = 0; j < cpu_list->len; ++j) {
Hmm O(n ^2) isn't great ...
> + node_id = cpu_to_le32(cpu_list->cpus[j].props.node_id);
> + if (node_id != i) {
> + continue;
> + }
> + core = acpi_data_push(table_data, sizeof(*core));
> + core->type = ACPI_SRAT_PROCESSOR_GICC;
> + core->length = sizeof(*core);
> + core->proximity = node_id;
> + core->acpi_processor_uid = cpu_to_le32(j);
> + core->flags = cpu_to_le32(1);
> + }
> }
is the issue arm specific? wouldn't it affect x86 too?
> mem_base = vms->memmap[VIRT_MEM].base;
> --
> 2.8.1
next prev parent reply other threads:[~2020-01-07 9:33 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-07 9:18 [PATCH] hw/arm/acpi: Pack the SRAT processors structure by node_id ascending order Zeng Tao
2020-01-07 9:18 ` Zeng Tao
2020-01-07 9:33 ` Michael S. Tsirkin [this message]
2020-01-07 9:33 ` Michael S. Tsirkin
2020-01-07 10:29 ` Zengtao (B)
2020-01-07 10:29 ` Zengtao (B)
2020-01-07 15:49 ` Igor Mammedov
2020-01-07 15:49 ` Igor Mammedov
2020-01-08 4:02 ` Zengtao (B)
2020-01-08 4:02 ` Zengtao (B)
2020-01-08 16:38 ` Igor Mammedov
2020-01-08 16:38 ` Igor Mammedov
2020-01-09 2:45 ` Zengtao (B)
2020-01-09 2:45 ` Zengtao (B)
2020-01-09 9:53 ` Igor Mammedov
2020-01-09 9:53 ` Igor Mammedov
2020-01-10 2:56 ` Zengtao (B)
2020-01-10 2:56 ` Zengtao (B)
2020-01-13 9:05 ` Igor Mammedov
2020-01-14 2:07 ` Zengtao (B)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200107042918-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=imammedo@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=prime.zeng@hisilicon.com \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=shannon.zhaosl@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.