From: Auger Eric <eric.auger@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>,
Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>,
Ard Biesheuvel <ard.biesheuvel@linaro.org>,
QEMU Developers <qemu-devel@nongnu.org>,
Xu Wei <xuwei5@hisilicon.com>, Linuxarm <linuxarm@huawei.com>,
Shannon Zhao <shannon.zhaosl@gmail.com>,
qemu-arm <qemu-arm@nongnu.org>,
Igor Mammedov <imammedo@redhat.com>,
sebastien.boeuf@intel.com, Laszlo Ersek <lersek@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v6 0/8] ARM virt: ACPI memory hotplug support
Date: Mon, 1 Jul 2019 21:12:47 +0200 [thread overview]
Message-ID: <453c5edf-0e42-4e07-9d17-7a69085aa231@redhat.com> (raw)
In-Reply-To: <41f46a4b-5796-169a-1193-996ac94022c4@redhat.com>
Hi Peter,
On 7/1/19 5:55 PM, Auger Eric wrote:
> Hi Peter,
>
> On 7/1/19 3:52 PM, Peter Maydell wrote:
>> On Tue, 25 Jun 2019 at 13:15, Shameer Kolothum
>> <shameerali.kolothum.thodi@huawei.com> wrote:
>>>
>>> This series is an attempt to provide device memory hotplug support
>>> on ARM virt platform. This is based on Eric's recent works here[1]
>>> and carries some of the pc-dimm related patches dropped from his
>>> series.
>>>
>>> The kernel support for arm64 memory hot add was added recently by
>>> Robin and hence the guest kernel should be => 5.0-rc1.
>>>
>>> NVDIM support is not included currently as we still have an unresolved
>>> issue while hot adding NVDIMM[2]. However NVDIMM cold plug patches
>>> can be included, but not done for now, for keeping it simple.
>>>
>>> This makes use of GED device to sent hotplug ACPI events to the
>>> Guest. GED code is based on Nemu. Thanks to the efforts of Samuel and
>>> Sebastien to add the hardware-reduced support to Nemu using GED
>>> device[3]. (Please shout if I got the author/signed-off wrong for
>>> those patches or missed any names).
>>>
>>> This is sanity tested on a HiSilicon ARM64 platform and appreciate
>>> any further testing.
>>
>> Hi; this seems to fail 'make check' (on an x86 host):
>>
>> acpi-test: Warning! DSDT binary file mismatch. Actual
>> [aml:/tmp/aml-01P83Z], Expected [aml:tests/data/acpi/virt/DSDT].
>> acpi-test: Warning! DSDT mismatch. Actual [asl:/tmp/asl-4ZP83Z.dsl,
>> aml:/tmp/aml-01P83Z], Expected [asl:/tmp/asl-H7UE4Z.dsl,
>> aml:tests/data/acpi/virt/DSDT].
>> **
>> ERROR:/home/petmay01/linaro/qemu-from-laptop/qemu/tests/bios-tables-test.c:434:test_acpi_asl:
>> assertion failed: (all_tables_match)
> I fail to reproduce on my laptop:
>
> make check-qtest-x86_64 executes
>
> TEST check-qtest-x86_64: tests/bios-tables-test
>
> and it does not seem to complain. But maybe I misunderstand the framework.
>
> If I were able to reproduce I understand this is a matter to regenerate
> the files we compare with by using
> tests/data/acpi/rebuild-expected-aml.sh, right?
I reproduced the failure with a TCG aarch64 target on x86.
I sent a separate
"[PATCH] tests: Update DSDT ACPI table for arm/virt board with PCDIMM
related changes" patch that should fix the issue.
checkpatch complains with an "ERROR: Does not appear to be a
unified-diff format patch" but I checked similar patches like d2a1b1d602
("tests: update acpi expected files") produce the same so I hope it's fine.
Thanks
Eric
Thanks
Eric
>
> Thanks
>
> Eric
>
>
>> ERROR - Bail out!
>> ERROR:/home/petmay01/linaro/qemu-from-laptop/qemu/tests/bios-tables-test.c:434:test_acpi_asl:
>> assertion failed: (all_tables_match)
>> Aborted (core dumped)
>> /home/petmay01/linaro/qemu-from-laptop/qemu/tests/Makefile.include:894:
>> recipe for target 'check-qtest-aarch64' failed
>>
>> Is there a need to update the reference DSDT used by the test?
>>
>> thanks
>> -- PMM
>>
>
next prev parent reply other threads:[~2019-07-01 21:20 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-25 12:14 [Qemu-devel] [PATCH v6 0/8] ARM virt: ACPI memory hotplug support Shameer Kolothum
2019-06-25 12:14 ` [Qemu-devel] [PATCH v6 1/8] hw/acpi: Make ACPI IO address space configurable Shameer Kolothum
2019-06-25 12:14 ` [Qemu-devel] [PATCH v6 2/8] hw/acpi: Do not create memory hotplug method when handler is not defined Shameer Kolothum
2019-06-25 12:14 ` [Qemu-devel] [PATCH v6 3/8] hw/acpi: Add ACPI Generic Event Device Support Shameer Kolothum
2019-06-25 12:14 ` [Qemu-devel] [PATCH v6 4/8] hw/arm/virt: Add memory hotplug framework Shameer Kolothum
2019-07-01 14:21 ` Peter Maydell
2019-06-25 12:14 ` [Qemu-devel] [PATCH v6 5/8] hw/arm/virt: Enable device memory cold/hot plug with ACPI boot Shameer Kolothum
2019-06-25 12:14 ` [Qemu-devel] [PATCH v6 6/8] hw/arm/virt-acpi-build: Add PC-DIMM in SRAT Shameer Kolothum
2019-06-25 12:14 ` [Qemu-devel] [PATCH v6 7/8] hw/acpi: Add system power down support to GED Shameer Kolothum
2019-06-25 12:14 ` [Qemu-devel] [PATCH v6 8/8] hw/arm: Use GED for system_powerdown event Shameer Kolothum
2019-06-28 16:56 ` [Qemu-devel] [PATCH v6 0/8] ARM virt: ACPI memory hotplug support Auger Eric
2019-07-01 13:52 ` Peter Maydell
2019-07-01 15:55 ` Auger Eric
2019-07-01 19:12 ` Auger Eric [this message]
2019-07-02 11:07 ` Igor Mammedov
2019-07-02 11:46 ` Peter Maydell
2019-07-02 12:00 ` Auger Eric
2019-07-02 13:18 ` Shameerali Kolothum Thodi
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=453c5edf-0e42-4e07-9d17-7a69085aa231@redhat.com \
--to=eric.auger@redhat.com \
--cc=ard.biesheuvel@linaro.org \
--cc=imammedo@redhat.com \
--cc=lersek@redhat.com \
--cc=linuxarm@huawei.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=sameo@linux.intel.com \
--cc=sebastien.boeuf@intel.com \
--cc=shameerali.kolothum.thodi@huawei.com \
--cc=shannon.zhaosl@gmail.com \
--cc=xuwei5@hisilicon.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).