[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <12267175.FvlCJYWCa5@vostro.rjw.lan>
Date: Wed, 21 Jan 2015 01:45:50 +0100
From: "Rafael J. Wysocki" <rjw@...ysocki.net>
To: Jiang Liu <jiang.liu@...ux.intel.com>
Cc: Thomas Gleixner <tglx@...utronix.de>,
Bjorn Helgaas <bhelgaas@...gle.com>,
Yinghai Lu <yinghai@...nel.org>,
Borislav Petkov <bp@...en8.de>, Len Brown <lenb@...nel.org>,
Tony Luck <tony.luck@...el.com>, x86@...nel.org,
linux-kernel@...r.kernel.org, linux-pci@...r.kernel.org,
linux-acpi@...r.kernel.org
Subject: Re: [RFC Patch 12/19] ACPI: Enforce stricter checks for address space descriptors
On Thursday, January 08, 2015 10:32:59 AM Jiang Liu wrote:
> Enforce stricter checks for address space descriptors according to
> ACPI spec.
So is the spec the only reason for doing this? If so, I'd say don't.
> Signed-off-by: Jiang Liu <jiang.liu@...ux.intel.com>
> ---
> drivers/acpi/resource.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
> index 26b47f1da523..e82149e44347 100644
> --- a/drivers/acpi/resource.c
> +++ b/drivers/acpi/resource.c
> @@ -192,6 +192,14 @@ static bool acpi_decode_space(struct resource *res,
> bool wp = base->info.mem.write_protect;
> u64 len = addr->address_length;
>
> + /*
> + * Filter out invalid descriptor according to ACPI Spec 5.0, section
> + * 6.4.3.5 Address Space Resource Descriptors.
> + */
> + if ((base->min_address_fixed != base->max_address_fixed && len) ||
> + (base->min_address_fixed && base->max_address_fixed && !len))
> + return false;
> +
> res->start = addr->minimum;
> res->end = addr->maximum;
>
>
--
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists