qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Marcel Apfelbaum <marcel@redhat.com>
To: Laszlo Ersek <lersek@redhat.com>, qemu-devel@nongnu.org
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 2/4] i386/acpi-build: fix PXB workarounds for unsupported BIOSes
Date: Wed, 10 Jun 2015 12:17:07 +0300	[thread overview]
Message-ID: <55780093.9060409@redhat.com> (raw)
In-Reply-To: <1433547989-7238-3-git-send-email-lersek@redhat.com>

On 06/06/2015 02:46 AM, Laszlo Ersek wrote:
> The patch
>
>    apci: fix PXB behaviour if used with unsupported BIOS
>
> uses the following condition to see if a "PXB mem/IO chunk" has *not* been
> configured by the BIOS:
>
>    (!range_base || range_base > range_limit)
>
> When this condition evaluates to true, said patch *omits* the
> corresponding entry from the _CRS.
>
> Later on the patch checks for the opposite condition (with the intent of
> *adding* entries to the _CRS if the "PXB mem/IO chunks" *have* been
> configured). Unfortunately, the condition was negated incorrectly: only
> the first ! operator was removed, which led to the nonsensical expression
>
>    (range_base || range_base > range_limit)
>
> leading to bogus entries in the _CRS, and causing BSOD in Windows Server
> 2012 R2 when it runs on OVMF.
Thanks for catching this!

>
> The correct negative of the condition seen at the top is
>
>    (range_base && range_base <= range_limit)
>
> Fix the expressions.
>
> Cc: Marcel Apfelbaum <marcel@redhat.com>
> Cc: Michael S. Tsirkin <mst@redhat.com>
> Signed-off-by: Laszlo Ersek <lersek@redhat.com>
> ---
>   hw/i386/acpi-build.c | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
> index 52c2591..b71e942 100644
> --- a/hw/i386/acpi-build.c
> +++ b/hw/i386/acpi-build.c
> @@ -833,7 +833,7 @@ static Aml *build_crs(PCIHostState *host,
>                * Work-around for old bioses
>                * that do not support multiple root buses
>                */
> -            if (range_base || range_base > range_limit) {
> +            if (range_base && range_base <= range_limit) {
>                   aml_append(crs,
>                              aml_word_io(AML_MIN_FIXED, AML_MAX_FIXED,
>                                          AML_POS_DECODE, AML_ENTIRE_RANGE,
> @@ -854,7 +854,7 @@ static Aml *build_crs(PCIHostState *host,
>                * Work-around for old bioses
>                * that do not support multiple root buses
>                */
> -            if (range_base || range_base > range_limit) {
> +            if (range_base && range_base <= range_limit) {
>                   aml_append(crs,
>                              aml_dword_memory(AML_POS_DECODE, AML_MIN_FIXED,
>                                               AML_MAX_FIXED, AML_NON_CACHEABLE,
> @@ -865,7 +865,7 @@ static Aml *build_crs(PCIHostState *host,
>                                               0,
>                                               range_limit - range_base + 1));
>                   crs_range_insert(mem_ranges, range_base, range_limit);
> -          }
> +            }
>
>               range_base =
>                   pci_bridge_get_base(dev, PCI_BASE_ADDRESS_MEM_PREFETCH);
> @@ -876,7 +876,7 @@ static Aml *build_crs(PCIHostState *host,
>                * Work-around for old bioses
>                * that do not support multiple root buses
>                */
> -            if (range_base || range_base > range_limit) {
> +            if (range_base && range_base <= range_limit) {
>                   aml_append(crs,
>                              aml_dword_memory(AML_POS_DECODE, AML_MIN_FIXED,
>                                               AML_MAX_FIXED, AML_NON_CACHEABLE,
>

Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>

Thanks,
Marcel

  reply	other threads:[~2015-06-10  9:17 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-05 23:45 [Qemu-devel] PXB fixes for QEMU, and extra root buses for OVMF Laszlo Ersek
2015-06-05 23:46 ` [Qemu-devel] [PATCH 0/4] PXB tweaks and fixes Laszlo Ersek
2015-06-05 23:46   ` [Qemu-devel] [PATCH 1/4] i386/acpi-build: more traditional _UID and _HID for PXB root buses Laszlo Ersek
2015-06-10  9:16     ` Marcel Apfelbaum
2015-06-05 23:46   ` [Qemu-devel] [PATCH 2/4] i386/acpi-build: fix PXB workarounds for unsupported BIOSes Laszlo Ersek
2015-06-10  9:17     ` Marcel Apfelbaum [this message]
2015-06-05 23:46   ` [Qemu-devel] [PATCH 3/4] hw/pci: allow the caller of pci_bar_address() to ignore command register Laszlo Ersek
2015-06-05 23:46   ` [Qemu-devel] [PATCH 4/4] i386/acpi-build: build_crs(): fetch BAR from PCI config space directly Laszlo Ersek
2015-06-07  9:23     ` Michael S. Tsirkin
2015-06-08  7:56       ` Laszlo Ersek
2015-06-08  9:40         ` Michael S. Tsirkin
2015-06-09 20:34       ` Laszlo Ersek
2015-06-10 10:06         ` Marcel Apfelbaum
2015-06-10 11:07           ` Laszlo Ersek
2015-06-10 16:21             ` Michael S. Tsirkin
2015-06-10 16:19         ` Michael S. Tsirkin
2015-06-10  9:09 ` [Qemu-devel] PXB fixes for QEMU, and extra root buses for OVMF Marcel Apfelbaum
2015-06-10 11:04   ` Laszlo Ersek
2015-06-10 11:55     ` Marcel Apfelbaum
2015-06-10 12:05       ` Laszlo Ersek

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=55780093.9060409@redhat.com \
    --to=marcel@redhat.com \
    --cc=lersek@redhat.com \
    --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 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).