From: Shannon Zhao <zhaoshenglong@huawei.com>
To: Laszlo Ersek <lersek@redhat.com>,
Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: qemu-devel@nongnu.org, peter.maydell@linaro.org, p.fedin@samsung.com
Subject: Re: [Qemu-devel] [PATCH] hw/arm/virt: fix limit of 64-bit ACPI/ECAM PCI MMIO range
Date: Tue, 24 May 2016 17:01:51 +0800 [thread overview]
Message-ID: <5744187F.1030507@huawei.com> (raw)
In-Reply-To: <cdf03f39-05be-8036-e50a-3b6189f13925@redhat.com>
On 2016/5/24 16:18, Laszlo Ersek wrote:
> On 05/21/16 20:43, Ard Biesheuvel wrote:
>> Set the MMIO range limit field to 'base + size - 1' as required.
>>
>> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Shannon Zhao <shannon.zhao@linaro.org>
>> ---
>> hw/arm/virt-acpi-build.c | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/hw/arm/virt-acpi-build.c b/hw/arm/virt-acpi-build.c
>> index f51fe396ce9c..60a70370dd96 100644
>> --- a/hw/arm/virt-acpi-build.c
>> +++ b/hw/arm/virt-acpi-build.c
>> @@ -230,7 +230,8 @@ static void acpi_dsdt_add_pci(Aml *scope, const MemMapEntry *memmap,
>> aml_append(rbuf,
>> aml_qword_memory(AML_POS_DECODE, AML_MIN_FIXED, AML_MAX_FIXED,
>> AML_NON_CACHEABLE, AML_READ_WRITE, 0x0000,
>> - base_mmio_high, base_mmio_high, 0x0000,
>> + base_mmio_high,
>> + base_mmio_high + size_mmio_high - 1, 0x0000,
>> size_mmio_high));
>> }
>>
>>
>
> $ scripts/get_maintainer.pl -f hw/arm/virt-acpi-build.c
>
> "Michael S. Tsirkin" <mst@redhat.com> (supporter:ACPI/SMBIOS)
> Igor Mammedov <imammedo@redhat.com> (supporter:ACPI/SMBIOS)
> Shannon Zhao <zhaoshenglong@huawei.com> (maintainer:ARM ACPI Subsystem)
> Peter Maydell <peter.maydell@linaro.org> (maintainer:ARM)
> qemu-arm@nongnu.org (open list:ARM ACPI Subsystem)
> qemu-devel@nongnu.org (open list:All patches CC here)
>
> For this patch specifically, I'm CC'ing Shannon.
>
Thanks, Laszlo :)
--
Shannon
next prev parent reply other threads:[~2016-05-24 9:02 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-21 18:43 [Qemu-devel] [PATCH] hw/arm/virt: fix limit of 64-bit ACPI/ECAM PCI MMIO range Ard Biesheuvel
2016-05-24 8:18 ` Laszlo Ersek
2016-05-24 9:01 ` Shannon Zhao [this message]
2016-05-24 15:51 ` Peter Maydell
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=5744187F.1030507@huawei.com \
--to=zhaoshenglong@huawei.com \
--cc=ard.biesheuvel@linaro.org \
--cc=lersek@redhat.com \
--cc=p.fedin@samsung.com \
--cc=peter.maydell@linaro.org \
--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.