qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: "Thomas Huth" <thuth@redhat.com>,
	"Beraldo Leal" <bleal@redhat.com>,
	"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
	"Wainer dos Santos Moschetta" <wainersm@redhat.com>,
	qemu-devel@nongnu.org, "Ani Sinha" <ani@anisinha.ca>,
	"Igor Mammedov" <imammedo@redhat.com>,
	"Alex Bennée" <alex.bennee@linaro.org>
Subject: Re: [PATCH v2 07/11] tests/acpi: update expected data files
Date: Fri, 11 Mar 2022 10:29:18 -0500	[thread overview]
Message-ID: <20220311102909-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20220311053759.875785-8-kraxel@redhat.com>

On Fri, Mar 11, 2022 at 06:37:55AM +0100, Gerd Hoffmann wrote:
> The switch to edk2 RELEASE builds changes the memory layout a bit,
> resulting in a acpi table change.
> 
>  DefinitionBlock ("", "SSDT", 1, "BOCHS ", "NVDIMM", 0x00000001)
>  {
>      Scope (\_SB)
>      {
>          Device (NVDR)
>          {
>              Name (_HID, "ACPI0012" /* NVDIMM Root Device */)  // _HID: Hardware ID
>              Method (NCAL, 5, Serialized)
>              {
>                  Local6 = MEMA /* \MEMA */
>                  {
>                      Return (NCAL (Arg0, Arg1, Arg2, Arg3, 0x02))
>                  }
>              }
> 
>              Device (NV02)
>              {
>                  Name (_ADR, 0x03)  // _ADR: Address
>                  Method (_DSM, 4, NotSerialized)  // _DSM: Device-Specific Method
>                  {
>                      Return (NCAL (Arg0, Arg1, Arg2, Arg3, 0x03))
>                  }
>              }
>          }
>      }
> 
> -    Name (MEMA, 0x43D10000)
> +    Name (MEMA, 0x43F50000)
>  }
> 
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>

Reviewed-by: Michael S. Tsirkin <mst@redhat.com>

> ---
>  tests/data/acpi/virt/SSDT.memhp | Bin 736 -> 736 bytes
>  1 file changed, 0 insertions(+), 0 deletions(-)
> 
> diff --git a/tests/data/acpi/virt/SSDT.memhp b/tests/data/acpi/virt/SSDT.memhp
> index 375d7b6fc85a484f492a26ccd355c205f2c34473..4c363a6d95a7e2e826568c85f5719127748e7932 100644
> GIT binary patch
> delta 22
> dcmaFB`hb-yIM^lR0TTlQqx43uD@;sZodHo~2HXGu
> 
> delta 22
> dcmaFB`hb-yIM^lR0TTlQqy0v%D@;rmodHrj2HXGu
> 
> -- 
> 2.35.1



  parent reply	other threads:[~2022-03-11 15:33 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-11  5:37 [PATCH v2 00/11] edk2: update to stable202202 Gerd Hoffmann
2022-03-11  5:37 ` [PATCH v2 01/11] tests/acpi: allow virt memory hotplug changes Gerd Hoffmann
2022-03-11 10:00   ` Igor Mammedov
2022-03-11 15:28   ` Michael S. Tsirkin
2022-03-11  5:37 ` [PATCH v2 02/11] edk2: update submodule to stable202202 Gerd Hoffmann
2022-03-11  5:37 ` [PATCH v2 03/11] edk2: switch to release builds Gerd Hoffmann
2022-03-11  5:37 ` [PATCH v2 04/11] edk2: .git can be a file Gerd Hoffmann
2022-03-11 16:13   ` Eric Blake
2022-03-13 13:52   ` Philippe Mathieu-Daudé
2022-03-11  5:37 ` [PATCH v2 05/11] edk2: add microvm build Gerd Hoffmann
2022-03-11  5:37 ` [PATCH v2 06/11] edk2: update binaries to stable202202 Gerd Hoffmann
2022-03-11  5:37 ` [PATCH v2 07/11] tests/acpi: update expected data files Gerd Hoffmann
2022-03-11 10:02   ` Igor Mammedov
2022-03-11 12:19   ` Ani Sinha
2022-03-11 15:29   ` Michael S. Tsirkin [this message]
2022-03-11  5:37 ` [PATCH v2 08/11] tests/acpi: disallow virt memory hotplug changes Gerd Hoffmann
2022-03-11 10:02   ` Igor Mammedov
2022-03-11  5:37 ` [PATCH v2 09/11] edk2/docker: install python3 Gerd Hoffmann
2022-03-13 13:52   ` Philippe Mathieu-Daudé
2022-03-11  5:37 ` [PATCH v2 10/11] edk2/docker: use ubuntu 18.04 Gerd Hoffmann
2022-03-13 13:52   ` Philippe Mathieu-Daudé
2022-03-11  5:37 ` [PATCH v2 11/11] MAINTAINERS: take edk2 Gerd Hoffmann

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=20220311102909-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=alex.bennee@linaro.org \
    --cc=ani@anisinha.ca \
    --cc=bleal@redhat.com \
    --cc=f4bug@amsat.org \
    --cc=imammedo@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=thuth@redhat.com \
    --cc=wainersm@redhat.com \
    /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).