diff options
author | Igor Mammedov | 2021-09-24 14:27:43 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2021-10-05 23:30:57 +0200 |
commit | 255bf20f2e047be1068f90cf8eaf3fc07cbba7d5 (patch) | |
tree | 26eb6ff82d08e5f3391873e0d46fa3b2807f73ce /include/hw/acpi/acpi-defs.h | |
parent | acpi: build_tpm_tcpa: use acpi_table_begin()/acpi_table_end() instead of buil... (diff) | |
download | qemu-255bf20f2e047be1068f90cf8eaf3fc07cbba7d5.tar.gz qemu-255bf20f2e047be1068f90cf8eaf3fc07cbba7d5.tar.xz qemu-255bf20f2e047be1068f90cf8eaf3fc07cbba7d5.zip |
acpi: arm/x86: build_srat: use acpi_table_begin()/acpi_table_end() instead of build_header()
it replaces error-prone pointer arithmetic for build_header() API,
with 2 calls to start and finish table creation,
which hides offsets magic from API user.
While at it switch to build_append_int_noprefix() to build
table entries (which also removes some manual offset
calculations)
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Message-Id: <20210924122802.1455362-17-imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/hw/acpi/acpi-defs.h')
-rw-r--r-- | include/hw/acpi/acpi-defs.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/hw/acpi/acpi-defs.h b/include/hw/acpi/acpi-defs.h index 3b42b138f0..5826ee04b6 100644 --- a/include/hw/acpi/acpi-defs.h +++ b/include/hw/acpi/acpi-defs.h @@ -358,17 +358,6 @@ struct AcpiGenericTimerTable { } QEMU_PACKED; typedef struct AcpiGenericTimerTable AcpiGenericTimerTable; -/* - * SRAT (NUMA topology description) table - */ - -struct AcpiSystemResourceAffinityTable { - ACPI_TABLE_HEADER_DEF - uint32_t reserved1; - uint32_t reserved2[2]; -} QEMU_PACKED; -typedef struct AcpiSystemResourceAffinityTable AcpiSystemResourceAffinityTable; - #define ACPI_SRAT_PROCESSOR_APIC 0 #define ACPI_SRAT_MEMORY 1 #define ACPI_SRAT_PROCESSOR_x2APIC 2 |