From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: Gustavo Romero <gustavo.romero@linaro.org>,
qemu-devel@nongnu.org, eric.auger@redhat.com, mst@redhat.com
Cc: qemu-arm@nongnu.org, alex.bennee@linaro.org, udo@hypervisor.org,
ajones@ventanamicro.com, peter.maydell@linaro.org,
imammedo@redhat.com, anisinha@redhat.com,
Richard Henderson <richard.henderson@linaro.org>
Subject: Re: [PATCH v4 1/8] hw/intc/gicv3_its: Do not check its_class_name()
Date: Mon, 16 Jun 2025 15:33:28 +0200 [thread overview]
Message-ID: <70853fdc-ef08-40ad-85a9-5cb02146cf23@linaro.org> (raw)
In-Reply-To: <20250616131824.425315-2-gustavo.romero@linaro.org>
Hi Gustavo, why reset authorship?
On 16/6/25 15:18, Gustavo Romero wrote:
> Since commit cc5e719e2c8 ("kvm: require KVM_CAP_SIGNAL_MSI"), the single
> implementation of its_class_name() no longer returns NULL (it now always
> returns a valid char pointer). Hence, update the prototype docstring and
> remove the tautological checks that use the its_class_name() returned
> value.
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org>
> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
> Reviewed-by: Eric Auger <eric.auger@redhat.com>
> ---
> hw/arm/virt-acpi-build.c | 32 +++++++++++---------------
> include/hw/intc/arm_gicv3_its_common.h | 2 +-
> 2 files changed, 15 insertions(+), 19 deletions(-)
>
> diff --git a/hw/arm/virt-acpi-build.c b/hw/arm/virt-acpi-build.c
> index 7e8e0f0298..9eee284c80 100644
> --- a/hw/arm/virt-acpi-build.c
> +++ b/hw/arm/virt-acpi-build.c
> @@ -737,20 +737,18 @@ build_madt(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> memmap[VIRT_HIGH_GIC_REDIST2].size);
> }
>
> - if (its_class_name()) {
> - /*
> - * ACPI spec, Revision 6.0 Errata A
> - * (original 6.0 definition has invalid Length)
> - * 5.2.12.18 GIC ITS Structure
> - */
> - build_append_int_noprefix(table_data, 0xF, 1); /* Type */
> - build_append_int_noprefix(table_data, 20, 1); /* Length */
> - build_append_int_noprefix(table_data, 0, 2); /* Reserved */
> - build_append_int_noprefix(table_data, 0, 4); /* GIC ITS ID */
> - /* Physical Base Address */
> - build_append_int_noprefix(table_data, memmap[VIRT_GIC_ITS].base, 8);
> - build_append_int_noprefix(table_data, 0, 4); /* Reserved */
> - }
> + /*
> + * ACPI spec, Revision 6.0 Errata A
> + * (original 6.0 definition has invalid Length)
> + * 5.2.12.18 GIC ITS Structure
> + */
> + build_append_int_noprefix(table_data, 0xF, 1); /* Type */
> + build_append_int_noprefix(table_data, 20, 1); /* Length */
> + build_append_int_noprefix(table_data, 0, 2); /* Reserved */
> + build_append_int_noprefix(table_data, 0, 4); /* GIC ITS ID */
> + /* Physical Base Address */
> + build_append_int_noprefix(table_data, memmap[VIRT_GIC_ITS].base, 8);
> + build_append_int_noprefix(table_data, 0, 4); /* Reserved */
> } else {
> const uint16_t spi_base = vms->irqmap[VIRT_GIC_V2M] + ARM_SPI_BASE;
>
> @@ -969,10 +967,8 @@ void virt_acpi_build(VirtMachineState *vms, AcpiBuildTables *tables)
> vms->oem_table_id);
> }
>
> - if (its_class_name()) {
> - acpi_add_table(table_offsets, tables_blob);
> - build_iort(tables_blob, tables->linker, vms);
> - }
> + acpi_add_table(table_offsets, tables_blob);
> + build_iort(tables_blob, tables->linker, vms);
>
> #ifdef CONFIG_TPM
> if (tpm_get_version(tpm_find()) == TPM_VERSION_2_0) {
> diff --git a/include/hw/intc/arm_gicv3_its_common.h b/include/hw/intc/arm_gicv3_its_common.h
> index 7dc712b38d..3c7b543b01 100644
> --- a/include/hw/intc/arm_gicv3_its_common.h
> +++ b/include/hw/intc/arm_gicv3_its_common.h
> @@ -128,7 +128,7 @@ struct GICv3ITSCommonClass {
> * Return the ITS class name to use depending on whether KVM acceleration
> * and KVM CAP_SIGNAL_MSI are supported
> *
> - * Returns: class name to use or NULL
> + * Returns: class name to use
> */
> const char *its_class_name(void);
>
next prev parent reply other threads:[~2025-06-16 13:34 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-16 13:18 [PATCH-for-10.1 v4 0/8] hw/arm: GIC 'its=off' ACPI table fixes Gustavo Romero
2025-06-16 13:18 ` [PATCH v4 1/8] hw/intc/gicv3_its: Do not check its_class_name() Gustavo Romero
2025-06-16 13:33 ` Philippe Mathieu-Daudé [this message]
2025-06-16 13:57 ` Gustavo Romero
2025-06-16 13:18 ` [PATCH v4 2/8] hw/arm/virt: Simplify logic for setting instance's 'tcg_its' variable Gustavo Romero
2025-06-17 9:46 ` Eric Auger
2025-06-16 13:18 ` [PATCH v4 3/8] hw/arm/virt: Simplify create_its() Gustavo Romero
2025-06-16 13:18 ` [PATCH v4 4/8] hw/arm/virt-acpi-build: Fix comment in build_iort Gustavo Romero
2025-06-17 13:22 ` Eric Auger
2025-06-19 17:07 ` Gustavo Romero
2025-06-20 6:52 ` Eric Auger
2025-06-16 13:18 ` [PATCH v4 5/8] qtest/bios-tables-test: Add test for when ITS is off on aarch64 Gustavo Romero
2025-06-17 13:34 ` Eric Auger
2025-06-17 15:12 ` Gustavo Romero
2025-06-17 15:51 ` Eric Auger
2025-06-17 16:01 ` Gustavo Romero
2025-06-17 17:01 ` Eric Auger
2025-06-17 16:06 ` Gustavo Romero
2025-06-16 13:18 ` [PATCH v4 6/8] qtest/bios-tables-test: Add blobs for its=off test " Gustavo Romero
2025-06-16 13:18 ` [PATCH v4 7/8] hw/arm/virt-acpi-build: Fix ACPI IORT and MADT tables when its=off Gustavo Romero
2025-06-17 14:04 ` Eric Auger
2025-06-16 13:18 ` [PATCH v4 8/8] qtest/bios-tables-test: Update blobs for its=off test on aarch64 Gustavo Romero
2025-06-17 9:35 ` [PATCH-for-10.1 v4 0/8] hw/arm: GIC 'its=off' ACPI table fixes Eric Auger
2025-06-17 13:01 ` Gustavo Romero
2025-06-17 13:26 ` Eric Auger
2025-06-23 18:54 ` Gustavo Romero
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=70853fdc-ef08-40ad-85a9-5cb02146cf23@linaro.org \
--to=philmd@linaro.org \
--cc=ajones@ventanamicro.com \
--cc=alex.bennee@linaro.org \
--cc=anisinha@redhat.com \
--cc=eric.auger@redhat.com \
--cc=gustavo.romero@linaro.org \
--cc=imammedo@redhat.com \
--cc=mst@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=udo@hypervisor.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).