]> git.karo-electronics.de Git - linux-beck.git/commitdiff
PCI: Check all IORESOURCE_TYPE_BITS in pci_bus_alloc_from_region()
authorBjorn Helgaas <bhelgaas@google.com>
Fri, 7 Mar 2014 20:39:01 +0000 (13:39 -0700)
committerBjorn Helgaas <bhelgaas@google.com>
Wed, 19 Mar 2014 21:00:16 +0000 (15:00 -0600)
When allocating space from a bus resource, i.e., from apertures leading to
this bus, make sure the entire resource type matches.  The previous code
assumed the IORESOURCE_TYPE_BITS field was a bitmask with only a single bit
set, but this is not true.  IORESOURCE_TYPE_BITS is really an enumeration,
and we have to check all the bits.

See 72dcb1197228 ("resources: Add register address resource type").

No functional change.  If we used this path for allocating IRQs, DMA
channels, or bus numbers, this would fix a bug because those types are
indistinguishable when masked by IORESOURCE_IO | IORESOURCE_MEM.  But we
don't, so this shouldn't make any difference.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/bus.c

index 38901665c77086a20a6bd1cd087f24971c0d172b..e3bdc88668ec5380de2771c047ccc0d7c9bda590 100644 (file)
@@ -144,7 +144,7 @@ static int pci_bus_alloc_from_region(struct pci_bus *bus, struct resource *res,
        struct resource *r, avail;
        resource_size_t max;
 
-       type_mask |= IORESOURCE_IO | IORESOURCE_MEM;
+       type_mask |= IORESOURCE_TYPE_BITS;
 
        pci_bus_for_each_resource(bus, r, i) {
                if (!r)