Re: [PATCH 36/36] PCI: Don't set flags to 0 when assign resource fail

From: Yinghai Lu
Date: Fri Jul 10 2015 - 01:49:18 EST


On Thu, Jul 9, 2015 at 7:48 PM, Yinghai Lu <yinghai@xxxxxxxxxx> wrote:
> On Thu, Jul 9, 2015 at 7:30 PM, Wei Yang <weiyang@xxxxxxxxxxxxxxxxxx> wrote:
>> If you could update your for-pci-v4.3-next branch, that would be more
>> convenient for me to do the test.
>
> Just updated that branch, please check it.
>

just updated the branch again.

If you don't want to re get it again, please apply attached patch.
---
drivers/pci/bus.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6/drivers/pci/bus.c
===================================================================
--- linux-2.6.orig/drivers/pci/bus.c
+++ linux-2.6/drivers/pci/bus.c
@@ -140,7 +140,7 @@ static int pci_bus_alloc_from_region(str
type_mask |= IORESOURCE_TYPE_BITS;

pci_bus_for_each_resource(bus, r, i) {
- if (!r)
+ if (!r || resource_disabled(r))
continue;

/* type_mask must match */