diff options
author | Shannon Zhao | 2016-05-12 14:22:27 +0200 |
---|---|---|
committer | Peter Maydell | 2016-05-12 14:22:27 +0200 |
commit | e6e400d54f092e3aeb17889120640bd24cda2ce1 (patch) | |
tree | 66de00e3616af4411d9b55bedd988c1b6eb65971 /hw | |
parent | ARM: Virt: Set numa-node-id for cpu and memory nodes (diff) | |
download | qemu-e6e400d54f092e3aeb17889120640bd24cda2ce1.tar.gz qemu-e6e400d54f092e3aeb17889120640bd24cda2ce1.tar.xz qemu-e6e400d54f092e3aeb17889120640bd24cda2ce1.zip |
ACPI: Add GICC Affinity Structure
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Shannon Zhao <shannon.zhao@linaro.org>
Reviewed-by: Andrew Jones <drjones@redhat.com>
Message-id: 1461667229-9216-3-git-send-email-zhaoshenglong@huawei.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/i386/acpi-build.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c index 64770034ff..9ae4c0d4ea 100644 --- a/hw/i386/acpi-build.c +++ b/hw/i386/acpi-build.c @@ -2474,7 +2474,7 @@ build_srat(GArray *table_data, GArray *linker, MachineState *machine) int apic_id = apic_ids->cpus[i].arch_id; core = acpi_data_push(table_data, sizeof *core); - core->type = ACPI_SRAT_PROCESSOR; + core->type = ACPI_SRAT_PROCESSOR_APIC; core->length = sizeof(*core); core->local_apic_id = apic_id; curnode = pcms->node_cpu[apic_id]; |