lkml.org 
[lkml]   [2014]   [Dec]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [patch 2/4] x86: pci: acpi: Respect ioresource flags
On Thu, Dec 11, 2014 at 07:48:20PM -0000, Thomas Gleixner wrote:
> setup_res() blindly clear all resource->flags except IO and MEM. So if
> a resource is marked disabled by the acpi code, setup_res() will use
> it nevertheless.
>
> Preserve the flags and add proper checks to setup_res() and
> __release_pci_root_info(). The latter is simplified while at it.
>
> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
> ---
> arch/x86/pci/acpi.c | 35 ++++++++++++++++-------------------
> 1 file changed, 16 insertions(+), 19 deletions(-)
>
> Index: tip/arch/x86/pci/acpi.c
> ===================================================================
> --- tip.orig/arch/x86/pci/acpi.c
> +++ tip/arch/x86/pci/acpi.c
> @@ -218,6 +218,12 @@ static void teardown_mcfg_map(struct pci
> }
> #endif
>
> +static bool is_valid_resource(struct resource *res)
> +{
> + return (res->flags & (IORESOURCE_MEM | IORESOURCE_IO)) &&
> + !(res->flags & IORESOURCE_DISABLED);
> +}
> +
> static acpi_status count_resource(struct acpi_resource *acpi_res, void *data)
> {
> struct pci_root_info *info = data;
> @@ -228,7 +234,7 @@ static acpi_status count_resource(struct
> !acpi_dev_resource_address_space(acpi_res, &r))
> return AE_OK;
>
> - if ((r.flags & (IORESOURCE_IO | IORESOURCE_MEM)) && resource_size(&r))
> + if (is_valid_resource(&r))
> info->res_num++;
>
> return AE_OK;

Ok, this makes definitely more sense in getting rid of the
*clearing* of the flags which is intuitively backwards to what it should
do.

--
Regards/Gruss,
Boris.

Sent from a fat crate under my desk. Formatting is fine.
--

\
 
 \ /
  Last update: 2014-12-12 15:21    [W:0.078 / U:0.448 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site