From: Igor Mammedov <imammedo@redhat.com>
To: Eric Auger <eauger@redhat.com>
Cc: qemu-devel@nongnu.org, mst@redhat.com
Subject: Re: [PATCH v3 24/35] acpi: x86: madt: use build_append_int_noprefix() API to compose MADT table
Date: Thu, 23 Sep 2021 08:34:50 +0200 [thread overview]
Message-ID: <20210923083450.61817bf3@redhat.com> (raw)
In-Reply-To: <b0f2aac1-f5ba-b709-0cd3-4af259cf2e81@redhat.com>
On Wed, 22 Sep 2021 17:37:40 +0200
Eric Auger <eauger@redhat.com> wrote:
> Hi,
> On 9/22/21 5:30 PM, Igor Mammedov wrote:
> > On Wed, 22 Sep 2021 12:20:54 +0200
> > Eric Auger <eauger@redhat.com> wrote:
> >
> >> On 9/7/21 4:48 PM, Igor Mammedov wrote:
> >>> Drop usage of packed structures and explicit endian conversions
> >>> when building MADT table for arm/x86 and use endian agnostic
> >>> build_append_int_noprefix() API to build it.
> >>>
> >>> Signed-off-by: Igor Mammedov <imammedo@redhat.com>
> >>> ---
> >>> CC: marcel.apfelbaum@gmail.com
> >>> CC: eauger@redhat.com
> >>> ---
> >>> include/hw/acpi/acpi-defs.h | 64 ------------------
> >>> hw/i386/acpi-common.c | 127 ++++++++++++++++++------------------
> >>> 2 files changed, 65 insertions(+), 126 deletions(-)
> >>>
> >>> diff --git a/include/hw/acpi/acpi-defs.h b/include/hw/acpi/acpi-defs.h
> >>> index af4fa412a5..3f174ba208 100644
> >>> --- a/include/hw/acpi/acpi-defs.h
> >>> +++ b/include/hw/acpi/acpi-defs.h
> >>> @@ -165,17 +165,6 @@ typedef struct AcpiFacsDescriptorRev1 AcpiFacsDescriptorRev1;
> >>>
> >>> /* Values for Type in APIC sub-headers */
> >>>
> >>> -#define ACPI_APIC_PROCESSOR 0
> >>> -#define ACPI_APIC_IO 1
> >>> -#define ACPI_APIC_XRUPT_OVERRIDE 2
> >>> -#define ACPI_APIC_NMI 3
> >>> -#define ACPI_APIC_LOCAL_NMI 4
> >>> -#define ACPI_APIC_ADDRESS_OVERRIDE 5
> >>> -#define ACPI_APIC_IO_SAPIC 6
> >>> -#define ACPI_APIC_LOCAL_SAPIC 7
> >>> -#define ACPI_APIC_XRUPT_SOURCE 8
> >>> -#define ACPI_APIC_LOCAL_X2APIC 9
> >>> -#define ACPI_APIC_LOCAL_X2APIC_NMI 10
> >>> #define ACPI_APIC_GENERIC_CPU_INTERFACE 11
> >>> #define ACPI_APIC_GENERIC_DISTRIBUTOR 12
> >>> #define ACPI_APIC_GENERIC_MSI_FRAME 13
> >>> @@ -192,59 +181,6 @@ typedef struct AcpiFacsDescriptorRev1 AcpiFacsDescriptorRev1;
> >>>
> >>> /* Sub-structures for MADT */
> >>>
> >>> -struct AcpiMadtProcessorApic {
> >>> - ACPI_SUB_HEADER_DEF
> >>> - uint8_t processor_id; /* ACPI processor id */
> >>> - uint8_t local_apic_id; /* Processor's local APIC id */
> >>> - uint32_t flags;
> >>> -} QEMU_PACKED;
> >>> -typedef struct AcpiMadtProcessorApic AcpiMadtProcessorApic;
> >>> -
> >>> -struct AcpiMadtIoApic {
> >>> - ACPI_SUB_HEADER_DEF
> >>> - uint8_t io_apic_id; /* I/O APIC ID */
> >>> - uint8_t reserved; /* Reserved - must be zero */
> >>> - uint32_t address; /* APIC physical address */
> >>> - uint32_t interrupt; /* Global system interrupt where INTI
> >>> - * lines start */
> >>> -} QEMU_PACKED;
> >>> -typedef struct AcpiMadtIoApic AcpiMadtIoApic;
> >>> -
> >>> -struct AcpiMadtIntsrcovr {
> >>> - ACPI_SUB_HEADER_DEF
> >>> - uint8_t bus;
> >>> - uint8_t source;
> >>> - uint32_t gsi;
> >>> - uint16_t flags;
> >>> -} QEMU_PACKED;
> >>> -typedef struct AcpiMadtIntsrcovr AcpiMadtIntsrcovr;
> >>> -
> >>> -struct AcpiMadtLocalNmi {
> >>> - ACPI_SUB_HEADER_DEF
> >>> - uint8_t processor_id; /* ACPI processor id */
> >>> - uint16_t flags; /* MPS INTI flags */
> >>> - uint8_t lint; /* Local APIC LINT# */
> >>> -} QEMU_PACKED;
> >>> -typedef struct AcpiMadtLocalNmi AcpiMadtLocalNmi;
> >>> -
> >>> -struct AcpiMadtProcessorX2Apic {
> >>> - ACPI_SUB_HEADER_DEF
> >>> - uint16_t reserved;
> >>> - uint32_t x2apic_id; /* Processor's local x2APIC ID */
> >>> - uint32_t flags;
> >>> - uint32_t uid; /* Processor object _UID */
> >>> -} QEMU_PACKED;
> >>> -typedef struct AcpiMadtProcessorX2Apic AcpiMadtProcessorX2Apic;
> >>> -
> >>> -struct AcpiMadtLocalX2ApicNmi {
> >>> - ACPI_SUB_HEADER_DEF
> >>> - uint16_t flags; /* MPS INTI flags */
> >>> - uint32_t uid; /* Processor object _UID */
> >>> - uint8_t lint; /* Local APIC LINT# */
> >>> - uint8_t reserved[3]; /* Local APIC LINT# */
> >>> -} QEMU_PACKED;
> >>> -typedef struct AcpiMadtLocalX2ApicNmi AcpiMadtLocalX2ApicNmi;
> >>> -
> >>> struct AcpiMadtGenericCpuInterface {
> >>> ACPI_SUB_HEADER_DEF
> >>> uint16_t reserved;
> >>> diff --git a/hw/i386/acpi-common.c b/hw/i386/acpi-common.c
> >>> index 7983a13a93..aa7b5c357e 100644
> >>> --- a/hw/i386/acpi-common.c
> >>> +++ b/hw/i386/acpi-common.c
> >>> @@ -38,7 +38,9 @@ void pc_madt_cpu_entry(AcpiDeviceIf *adev, int uid,
> >>> bool force_enabled)
> >>> {
> >>> uint32_t apic_id = apic_ids->cpus[uid].arch_id;
> >>> - uint32_t flags = apic_ids->cpus[uid].cpu != NULL || force_enabled ? 1 : 0;
> >>> + /* Flags – Local APIC Flags */
> >> nit: move that comment at the place of the build_append_int_noprefix
> >
> > that place(s) already has comment in expected format, here is just reminder
> > about what is initialized here.
> >
> >>> + uint32_t flags = apic_ids->cpus[uid].cpu != NULL || force_enabled ?
> >>> + 1 /* Enabled */ : 0;
> >>>
> >>> /* ACPI spec says that LAPIC entry for non present
> >>> * CPU may be omitted from MADT or it must be marked
> >>> @@ -47,24 +49,47 @@ void pc_madt_cpu_entry(AcpiDeviceIf *adev, int uid,
> >>> * should be put in MADT but kept disabled.
> >>> */
> >>> if (apic_id < 255) {
> >>> - AcpiMadtProcessorApic *apic = acpi_data_push(entry, sizeof *apic);
> >>> -
> >>> - apic->type = ACPI_APIC_PROCESSOR;
> >>> - apic->length = sizeof(*apic);
> >>> - apic->processor_id = uid;
> >>> - apic->local_apic_id = apic_id;
> >>> - apic->flags = cpu_to_le32(flags);
> >>> + /* Rev 1.0b, Table 5-13 Processor Local APIC Structure */
> >>> + build_append_int_noprefix(entry, 0, 1); /* Type */
> >>> + build_append_int_noprefix(entry, 8, 1); /* Length */
> >>> + build_append_int_noprefix(entry, uid, 1); /* ACPI Processor ID */
> >> nit s/ID/UID
> >
> > it's ID in 1.0b
> >
> >>> + build_append_int_noprefix(entry, apic_id, 1); /* APIC ID */
> >>> + build_append_int_noprefix(entry, flags, 4); /* Flags */
> >>> } else {
> >>> - AcpiMadtProcessorX2Apic *apic = acpi_data_push(entry, sizeof *apic);
> >>> -
> >>> - apic->type = ACPI_APIC_LOCAL_X2APIC;
> >>> - apic->length = sizeof(*apic);
> >>> - apic->uid = cpu_to_le32(uid);
> >>> - apic->x2apic_id = cpu_to_le32(apic_id);
> >>> - apic->flags = cpu_to_le32(flags);
> >>> + /* Rev 4.0, 5.2.12.12 Processor Local x2APIC Structure */
> >>> + build_append_int_noprefix(entry, 9, 1); /* Type */
> >>> + build_append_int_noprefix(entry, 16, 1); /* Length */
> >>> + build_append_int_noprefix(entry, 0, 2); /* Reserved */
> >>> + build_append_int_noprefix(entry, apic_id, 4); /* X2APIC ID */
> >>> + build_append_int_noprefix(entry, flags, 4); /* Flags */
> >>> + build_append_int_noprefix(entry, uid, 4); /* ACPI Processor UID */
> >>> }
> >>> }
> >>>
> >>> +static void build_ioapic(GArray *entry, uint8_t id, uint32_t addr, uint32_t irq)
> >>> +{
> >>> + /* Rev 1.0b, 5.2.8.2 IO APIC */
> >>> + build_append_int_noprefix(entry, 1, 1); /* Type */
> >>> + build_append_int_noprefix(entry, 12, 1); /* Length */
> >>> + build_append_int_noprefix(entry, id, 1); /* IO APIC ID */
> >>> + build_append_int_noprefix(entry, 0, 1); /* Reserved */
> >>> + build_append_int_noprefix(entry, addr, 4); /* IO APIC Address */
> >>> + build_append_int_noprefix(entry, irq, 4); /* System Vector Base */
> >>> +}
> >>> +
> >>> +static void
> >>> +build_xrupt_override(GArray *entry, uint8_t src, uint32_t gsi, uint16_t flags)
> >>> +{
> >>> + /* Rev 1.0b, 5.2.8.3.1 Interrupt Source Overrides */
> >>> + build_append_int_noprefix(entry, 2, 1); /* Type */
> >>> + build_append_int_noprefix(entry, 10, 1); /* Length */
> >>> + build_append_int_noprefix(entry, 0, 1); /* Bus */
> >>> + build_append_int_noprefix(entry, src, 1); /* Source */
> >>> + /* Global System Interrupt Vector */
> >>> + build_append_int_noprefix(entry, gsi, 4);
> >>> + build_append_int_noprefix(entry, flags, 2); /* Flags */
> >>> +}
> >>> +
> >>> /*
> >>> * ACPI spec, Revision 1.0b
> >>> * 5.2.8 Multiple APIC Description Table
> >>> @@ -73,14 +98,11 @@ void acpi_build_madt(GArray *table_data, BIOSLinker *linker,
> >>> X86MachineState *x86ms, AcpiDeviceIf *adev,
> >>> const char *oem_id, const char *oem_table_id)
> >>> {
> >>> + int i;
> >>> + bool x2apic_mode = false;
> >>> MachineClass *mc = MACHINE_GET_CLASS(x86ms);
> >>> const CPUArchIdList *apic_ids = mc->possible_cpu_arch_ids(MACHINE(x86ms));
> >>> AcpiDeviceIfClass *adevc = ACPI_DEVICE_IF_GET_CLASS(adev);
> >>> - bool x2apic_mode = false;
> >>> -
> >>> - AcpiMadtIoApic *io_apic;
> >>> - AcpiMadtIntsrcovr *intsrcovr;
> >>> - int i;
> >>> AcpiTable table = { .sig = "APIC", .rev = 1, .oem_id = oem_id,
> >>> .oem_table_id = oem_table_id };
> >>>
> >>> @@ -96,30 +118,14 @@ void acpi_build_madt(GArray *table_data, BIOSLinker *linker,
> >>> }
> >>> }
> >>>
> >>> - io_apic = acpi_data_push(table_data, sizeof *io_apic);
> >>> - io_apic->type = ACPI_APIC_IO;
> >>> - io_apic->length = sizeof(*io_apic);
> >>> - io_apic->io_apic_id = ACPI_BUILD_IOAPIC_ID;
> >>> - io_apic->address = cpu_to_le32(IO_APIC_DEFAULT_ADDRESS);
> >>> - io_apic->interrupt = cpu_to_le32(0);
> >>> -
> >>> + build_ioapic(table_data, ACPI_BUILD_IOAPIC_ID, IO_APIC_DEFAULT_ADDRESS, 0);
> >>> if (x86ms->ioapic2) {
> >>> - AcpiMadtIoApic *io_apic2;
> >>> - io_apic2 = acpi_data_push(table_data, sizeof *io_apic);
> >>> - io_apic2->type = ACPI_APIC_IO;
> >>> - io_apic2->length = sizeof(*io_apic);
> >>> - io_apic2->io_apic_id = ACPI_BUILD_IOAPIC_ID + 1;
> >>> - io_apic2->address = cpu_to_le32(IO_APIC_SECONDARY_ADDRESS);
> >>> - io_apic2->interrupt = cpu_to_le32(IO_APIC_SECONDARY_IRQBASE);
> >>> + build_ioapic(table_data, ACPI_BUILD_IOAPIC_ID + 1,
> >>> + IO_APIC_SECONDARY_ADDRESS, IO_APIC_SECONDARY_IRQBASE);
> >>> }
> >>>
> >>> if (x86ms->apic_xrupt_override) {
> >>> - intsrcovr = acpi_data_push(table_data, sizeof *intsrcovr);
> >>> - intsrcovr->type = ACPI_APIC_XRUPT_OVERRIDE;
> >>> - intsrcovr->length = sizeof(*intsrcovr);
> >>> - intsrcovr->source = 0;
> >>> - intsrcovr->gsi = cpu_to_le32(2);
> >>> - intsrcovr->flags = cpu_to_le16(0); /* conforms to bus specifications */
> >>> + build_xrupt_override(table_data, 0, 2, 0);
> >
> >> lost /* conforms to bus specifications */ comment for the flag during
> >> the battle/ Don't know if it is useful though
> >
> >
> >>> }
> >>>
> >>> for (i = 1; i < 16; i++) {
> >>> @@ -127,32 +133,29 @@ void acpi_build_madt(GArray *table_data, BIOSLinker *linker,
> >>> /* No need for a INT source override structure. */
> >>> continue;
> >>> }
> >>> - intsrcovr = acpi_data_push(table_data, sizeof *intsrcovr);
> >>> - intsrcovr->type = ACPI_APIC_XRUPT_OVERRIDE;
> >>> - intsrcovr->length = sizeof(*intsrcovr);
> >>> - intsrcovr->source = i;
> >>> - intsrcovr->gsi = cpu_to_le32(i);
> >>> - intsrcovr->flags = cpu_to_le16(0xd); /* active high, level triggered */
> >>> + build_xrupt_override(table_data, i, i, 0xd);
> >> Lost for the flag /* active high, level triggered */
> >>> }
> >>>
> >>> if (x2apic_mode) {
> >>> - AcpiMadtLocalX2ApicNmi *local_nmi;
> >>> -
> >>> - local_nmi = acpi_data_push(table_data, sizeof *local_nmi);
> >>> - local_nmi->type = ACPI_APIC_LOCAL_X2APIC_NMI;
> >>> - local_nmi->length = sizeof(*local_nmi);
> >>> - local_nmi->uid = 0xFFFFFFFF; /* all processors */
> >>> - local_nmi->flags = cpu_to_le16(0);
> >>> - local_nmi->lint = 1; /* ACPI_LINT1 */
> >>> + /* Rev 4.0, 5.2.12.13 Local x2APIC NMI Structure*/
> >>> + build_append_int_noprefix(table_data, 0xA, 1); /* Type */
> >>> + build_append_int_noprefix(table_data, 12, 1); /* Length */
> >>> + build_append_int_noprefix(table_data, 0, 2); /* Flags */
> >>> + /* ACPI Processor UID */
> >>> + build_append_int_noprefix(table_data, 0xFFFFFFFF /* all processors */,
> >>> + 4);
> >>> + /* Local x2APIC INTI# */
> >> Local x2APIC LINT#
> >>> + build_append_int_noprefix(table_data, 1 /* ACPI_LINT1 */, 1);
> >>> + build_append_int_noprefix(table_data, 0, 3);
> >> /* reserved */
> >>> } else {
> >>> - AcpiMadtLocalNmi *local_nmi;
> >>> -
> >>> - local_nmi = acpi_data_push(table_data, sizeof *local_nmi);
> >>> - local_nmi->type = ACPI_APIC_LOCAL_NMI;
> >>> - local_nmi->length = sizeof(*local_nmi);
> >>> - local_nmi->processor_id = 0xff; /* all processors */
> >>> - local_nmi->flags = cpu_to_le16(0);
> >>> - local_nmi->lint = 1; /* ACPI_LINT1 */
> >>> + /* Rev 1.0b, 5.2.8.3.3 Local APIC NMI */
> >>> + build_append_int_noprefix(table_data, 4, 1); /* Type */
> >>> + build_append_int_noprefix(table_data, 6, 1); /* Length */
> >>> + /* ACPI Processor ID */
> >>> + build_append_int_noprefix(table_data, 0xff /* all processors */, 1);
> >> 0xFF
> >
> >>> + build_append_int_noprefix(table_data, 0, 2); /* Flags */
> >>> + /* Local APIC INTI# */
> >> Local APIC LINT#
> >
> > it's "Local APIC INTI#" in 1.0b
> OK sorry for the noise. Maybe we should add this link somewhere
> https://uefi.org/acpi/specs
>
> I may have looked at some other references when reviewing.
problems with the links is that they are usually go stale
(good or rather bad example of that is so called Microsoft 'specs' html docs,
ex: early revisions of SRAT)
That's why we put in put in comment spec name and revision which
is usually sufficient to reliably find a spec in question,
regardless of where it's hosted at the moment.
>
> Thanks
>
> Eric
> >
> >>> + build_append_int_noprefix(table_data, 1 /* ACPI_LINT1 */, 1);
> >>> }
> >>>
> >>> acpi_table_end(linker, &table);
> >>>
> >
> > the rest is fixed up
> >
> >> Besides
> >> Reviewed-by: Eric Auger <eric.auger@redhat.com>
> >>
> >> Eric
> >>
> >
>
next prev parent reply other threads:[~2021-09-23 6:37 UTC|newest]
Thread overview: 79+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-07 14:47 [PATCH v3 00/35] acpi: refactor error prone build_header() and packed structures usage in ACPI tables Igor Mammedov
2021-09-07 14:47 ` [PATCH v3 01/35] acpi: add helper routines to initialize " Igor Mammedov
2021-09-20 16:21 ` Eric Auger
2021-09-07 14:47 ` [PATCH v3 02/35] acpi: build_rsdt: use acpi_table_begin()/acpi_table_end() instead of build_header() Igor Mammedov
2021-09-20 16:21 ` Eric Auger
2021-09-21 9:13 ` Igor Mammedov
2021-09-07 14:47 ` [PATCH v3 03/35] acpi: build_xsdt: " Igor Mammedov
2021-09-20 16:21 ` Eric Auger
2021-09-07 14:47 ` [PATCH v3 04/35] acpi: build_slit: " Igor Mammedov
2021-09-20 16:24 ` Eric Auger
2021-09-07 14:47 ` [PATCH v3 05/35] acpi: build_fadt: " Igor Mammedov
2021-09-20 16:25 ` Eric Auger
2021-09-07 14:47 ` [PATCH v3 06/35] acpi: build_tpm2: " Igor Mammedov
2021-09-07 14:47 ` [PATCH v3 07/35] acpi: acpi_build_hest: " Igor Mammedov
2021-09-20 16:27 ` Eric Auger
2021-09-07 14:47 ` [PATCH v3 08/35] acpi: build_mcfg: " Igor Mammedov
2021-09-20 16:28 ` Eric Auger
2021-09-07 14:47 ` [PATCH v3 09/35] acpi: build_hmat: " Igor Mammedov
2021-09-20 16:33 ` Eric Auger
2021-09-07 14:47 ` [PATCH v3 10/35] acpi: nvdimm_build_nfit: " Igor Mammedov
2021-09-20 16:36 ` Eric Auger
2021-09-07 14:47 ` [PATCH v3 11/35] acpi: nvdimm_build_ssdt: " Igor Mammedov
2021-09-20 16:41 ` Eric Auger
2021-09-22 14:38 ` Igor Mammedov
2021-09-07 14:47 ` [PATCH v3 12/35] acpi: vmgenid_build_acpi: " Igor Mammedov
2021-09-22 7:23 ` Eric Auger
2021-09-22 14:46 ` Igor Mammedov
2021-09-07 14:47 ` [PATCH v3 13/35] acpi: x86: build_dsdt: " Igor Mammedov
2021-09-07 14:47 ` [PATCH v3 14/35] acpi: build_hpet: " Igor Mammedov
2021-09-07 14:47 ` [PATCH v3 15/35] acpi: build_tpm_tcpa: " Igor Mammedov
2021-09-22 7:23 ` Eric Auger
2021-09-07 14:47 ` [PATCH v3 16/35] acpi: arm/x86: build_srat: " Igor Mammedov
2021-09-22 7:38 ` Eric Auger
2021-09-22 15:02 ` Igor Mammedov
2021-09-07 14:47 ` [PATCH v3 17/35] acpi: use build_append_int_noprefix() API to compose SRAT table Igor Mammedov
2021-09-22 8:55 ` Eric Auger
2021-09-22 10:02 ` Igor Mammedov
2021-09-22 15:32 ` Eric Auger
2021-09-07 14:47 ` [PATCH v3 18/35] acpi: build_dmar_q35: use acpi_table_begin()/acpi_table_end() instead of build_header() Igor Mammedov
2021-09-22 9:19 ` Eric Auger
2021-09-22 10:06 ` Igor Mammedov
2021-09-07 14:47 ` [PATCH v3 19/35] acpi: build_waet: " Igor Mammedov
2021-09-22 9:20 ` Eric Auger
2021-09-07 14:47 ` [PATCH v3 20/35] acpi: build_amd_iommu: " Igor Mammedov
2021-09-22 9:22 ` Eric Auger
2021-09-07 14:48 ` [PATCH v3 21/35] acpi: madt: arm/x86: " Igor Mammedov
2021-09-22 9:36 ` Eric Auger
2021-09-07 14:48 ` [PATCH v3 22/35] acpi: x86: remove dead code Igor Mammedov
2021-09-22 9:38 ` Eric Auger
2021-09-07 14:48 ` [PATCH v3 23/35] acpi: x86: set enabled when composing _MAT entries Igor Mammedov
2021-09-22 9:50 ` Eric Auger
2021-09-07 14:48 ` [PATCH v3 24/35] acpi: x86: madt: use build_append_int_noprefix() API to compose MADT table Igor Mammedov
2021-09-22 10:20 ` Eric Auger
2021-09-22 15:30 ` Igor Mammedov
2021-09-22 15:37 ` Eric Auger
2021-09-23 6:34 ` Igor Mammedov [this message]
2021-09-07 14:48 ` [PATCH v3 25/35] acpi: arm/virt: " Igor Mammedov
2021-09-07 14:48 ` [PATCH v3 26/35] acpi: build_dsdt_microvm: use acpi_table_begin()/acpi_table_end() instead of build_header() Igor Mammedov
2021-09-22 10:01 ` Eric Auger
2021-09-07 14:48 ` [PATCH v3 27/35] acpi: arm: virt: build_dsdt: " Igor Mammedov
2021-09-07 14:48 ` [PATCH v3 28/35] acpi: arm: virt: build_iort: " Igor Mammedov
2021-09-22 12:31 ` Eric Auger
2021-09-22 12:32 ` Eric Auger
2021-09-07 14:48 ` [PATCH v3 29/35] acpi: arm/virt: convert build_iort() to endian agnostic build_append_FOO() API Igor Mammedov
2021-09-22 13:26 ` Eric Auger
2021-09-22 13:54 ` Igor Mammedov
2021-09-22 15:31 ` Eric Auger
2021-09-23 7:47 ` [PATCH v4 " Igor Mammedov
2021-09-07 14:48 ` [PATCH v3 30/35] acpi: arm/virt: build_spcr: fix invalid cast Igor Mammedov
2021-09-07 14:48 ` [PATCH v3 31/35] acpi: arm/virt: build_spcr: use acpi_table_begin()/acpi_table_end() instead of build_header() Igor Mammedov
2021-09-07 14:48 ` [PATCH v3 32/35] acpi: arm/virt: build_gtdt: " Igor Mammedov
2021-09-07 14:48 ` [PATCH v3 33/35] acpi: build_facs: use build_append_int_noprefix() API to compose table Igor Mammedov
2021-09-22 13:33 ` Eric Auger
2021-09-22 13:58 ` Igor Mammedov
2021-09-07 14:48 ` [PATCH v3 34/35] acpi: remove no longer used build_header() Igor Mammedov
2021-09-22 13:34 ` Eric Auger
2021-09-07 14:48 ` [PATCH v3 35/35] acpi: AcpiGenericAddress no longer used to map/access fields of MMIO, drop packed attribute Igor Mammedov
2021-09-22 13:34 ` Eric Auger
2021-09-22 14:03 ` [PATCH v3 00/35] acpi: refactor error prone build_header() and packed structures usage in ACPI tables Igor Mammedov
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=20210923083450.61817bf3@redhat.com \
--to=imammedo@redhat.com \
--cc=eauger@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).