Re: [Qemu-devel] [PATCH v3 02/13] pc: acpi: x2APIC support for SRAT table

2016-10-18 Thread Igor Mammedov
On Tue, 18 Oct 2016 11:07:21 -0200 Eduardo Habkost wrote: > On Thu, Oct 13, 2016 at 11:52:36AM +0200, Igor Mammedov wrote > [...] > > @@ -2441,18 +2440,33 @@ build_srat(GArray *table_data, BIOSLinker *linker, > > MachineState *machine) > > > > for (i = 0; i < apic_ids->len; i++) { > >

Re: [Qemu-devel] [PATCH v3 02/13] pc: acpi: x2APIC support for SRAT table

2016-10-18 Thread Eduardo Habkost
On Thu, Oct 13, 2016 at 11:52:36AM +0200, Igor Mammedov wrote [...] > @@ -2441,18 +2440,33 @@ build_srat(GArray *table_data, BIOSLinker *linker, > MachineState *machine) > > for (i = 0; i < apic_ids->len; i++) { > int j = numa_get_node_for_cpu(i); > -int apic_id = apic_ids-

[Qemu-devel] [PATCH v3 02/13] pc: acpi: x2APIC support for SRAT table

2016-10-13 Thread Igor Mammedov
Signed-off-by: Igor Mammedov --- rebase on top in 2.7 + updated cpu PXM patches --- include/hw/acpi/acpi-defs.h | 11 +++ hw/i386/acpi-build.c| 34 -- 2 files changed, 35 insertions(+), 10 deletions(-) diff --git a/include/hw/acpi/acpi-defs.h b/inc