All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ani Sinha <ani@anisinha.ca>
To: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Cc: mst@redhat.com, imammedo@redhat.com, jean-philippe@linaro.org,
	 qemu-devel@nongnu.org
Subject: Re: [PATCH 5/6] hw/acpi/viot: sort VIOT ACPI table entries by PCI host bus min_bus
Date: Thu, 19 May 2022 13:20:49 +0530	[thread overview]
Message-ID: <CAARzgwwepTkx0-ss8Ayitg=-kbFajkSW-V6e_cUxLBBTnXY4qQ@mail.gmail.com> (raw)
In-Reply-To: <20220518110839.8681-6-mark.cave-ayland@ilande.co.uk>

On Wed, May 18, 2022 at 4:39 PM Mark Cave-Ayland
<mark.cave-ayland@ilande.co.uk> wrote:
>
> This ensures that the VIOT ACPI table output is always stable for a given PCI
> topology by ensuring that entries are ordered according to min_bus.
>
> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
other than the nit below,
Reviewed-by: Ani Sinha <ani@anisinha.ca>

> ---
>  hw/acpi/viot.c | 17 +++++++++++++++++
>  1 file changed, 17 insertions(+)
>
> diff --git a/hw/acpi/viot.c b/hw/acpi/viot.c
> index ce3b7b8c75..f5714b95bd 100644
> --- a/hw/acpi/viot.c
> +++ b/hw/acpi/viot.c
> @@ -64,6 +64,20 @@ static int pci_host_bridges(Object *obj, void *opaque)
>      return 0;
>  }
>
> +static int pci_host_range_compare(gconstpointer a, gconstpointer b)

nit: shouldn't this have a gint return type since we use gconstpointer
as arguments anyway?
https://docs.gtk.org/glib/callback.CompareFunc.html

> +{
> +    struct viot_pci_host_range *range_a = (struct viot_pci_host_range *)a;
> +    struct viot_pci_host_range *range_b = (struct viot_pci_host_range *)b;
> +
> +    if (range_a->min_bus < range_b->min_bus) {
> +        return -1;
> +    } else if (range_a->min_bus > range_b->min_bus) {
> +        return 1;
> +    } else {
> +        return 0;
> +    }
> +}
> +
>  /*
>   * Generate a VIOT table with one PCI-based virtio-iommu that manages PCI
>   * endpoints.
> @@ -87,6 +101,9 @@ void build_viot(MachineState *ms, GArray *table_data, BIOSLinker *linker,
>      object_child_foreach_recursive(OBJECT(ms), pci_host_bridges,
>                                     pci_host_ranges);
>
> +    /* Sort the pci host ranges by min_bus */
> +    g_array_sort(pci_host_ranges, pci_host_range_compare);
> +
>      /* ACPI table header */
>      acpi_table_begin(&table, table_data);
>      /* Node count */
> --
> 2.20.1
>


  reply	other threads:[~2022-05-19  7:59 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-18 11:08 [PATCH 0/6] hw/acpi/viot: generate stable VIOT ACPI tables Mark Cave-Ayland
2022-05-18 11:08 ` [PATCH 1/6] hw/acpi/viot: rename build_pci_range_node() to pci_host_bridges() Mark Cave-Ayland
2022-05-18 11:36   ` Ani Sinha
2022-05-18 12:27     ` Mark Cave-Ayland
2022-05-19  7:45       ` Ani Sinha
2022-05-22 13:49         ` Mark Cave-Ayland
2022-05-18 11:08 ` [PATCH 2/6] hw/acpi/viot: move the individual PCI host bridge entry generation to a new function Mark Cave-Ayland
2022-05-18 11:49   ` Ani Sinha
2022-05-18 11:08 ` [PATCH 3/6] hw/acpi/viot: build array of PCI host bridges before generating VIOT ACPI table Mark Cave-Ayland
2022-05-20 14:28   ` Ani Sinha
2022-05-22 22:11   ` Philippe Mathieu-Daudé via
2022-05-24 17:15     ` Mark Cave-Ayland
2022-05-18 11:08 ` [PATCH 4/6] tests/acpi: virt: allow VIOT acpi table changes Mark Cave-Ayland
2022-05-19  7:46   ` Ani Sinha
2022-05-18 11:08 ` [PATCH 5/6] hw/acpi/viot: sort VIOT ACPI table entries by PCI host bus min_bus Mark Cave-Ayland
2022-05-19  7:50   ` Ani Sinha [this message]
2022-05-22 13:59     ` Mark Cave-Ayland
2022-05-18 11:08 ` [PATCH 6/6] tests/acpi: virt: update golden masters for VIOT Mark Cave-Ayland
2022-05-22 22:13 ` [PATCH 0/6] hw/acpi/viot: generate stable VIOT ACPI tables Philippe Mathieu-Daudé via

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='CAARzgwwepTkx0-ss8Ayitg=-kbFajkSW-V6e_cUxLBBTnXY4qQ@mail.gmail.com' \
    --to=ani@anisinha.ca \
    --cc=imammedo@redhat.com \
    --cc=jean-philippe@linaro.org \
    --cc=mark.cave-ayland@ilande.co.uk \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.