will put it in resources list and pass it for create_root_bus Signed-off-by: Yinghai Lu <yinghai@xxxxxxxxxx> --- arch/x86/pci/amd_bus.c | 1 - arch/x86/pci/bus_numa.c | 22 ++++++++++++++-------- arch/x86/pci/bus_numa.h | 3 +-- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/arch/x86/pci/amd_bus.c b/arch/x86/pci/amd_bus.c index aff155d..03397ea 100644 --- a/arch/x86/pci/amd_bus.c +++ b/arch/x86/pci/amd_bus.c @@ -116,7 +116,6 @@ static int __init early_fill_mp_bus_info(void) link = (reg >> 8) & 0x03; info = alloc_pci_root_info(min_bus, max_bus, node, link); - sprintf(info->name, "PCI Bus #%02x", min_bus); } /* get the default node and link for left over res */ diff --git a/arch/x86/pci/bus_numa.c b/arch/x86/pci/bus_numa.c index 772949f..b5b9d91 100644 --- a/arch/x86/pci/bus_numa.c +++ b/arch/x86/pci/bus_numa.c @@ -14,7 +14,7 @@ static struct pci_root_info *x86_find_pci_root_info(int bus) return NULL; list_for_each_entry(info, &pci_root_infos, list) - if (info->bus_min == bus) + if (info->busn.start == bus) return info; return NULL; @@ -31,6 +31,8 @@ void x86_pci_root_bus_resources(int bus, struct list_head *resources) printk(KERN_DEBUG "PCI: root bus %02x: hardware-probed resources\n", bus); + pci_add_resource(resources, &info->busn); + list_for_each_entry(root_res, &info->resources, list) { struct resource *res; struct resource *root; @@ -54,6 +56,7 @@ default_resources: printk(KERN_DEBUG "PCI: root bus %02x: using default resources\n", bus); pci_add_resource(resources, &ioport_resource); pci_add_resource(resources, &iomem_resource); + pci_add_resource(resources, &busn_resource); } struct pci_root_info __init *alloc_pci_root_info(int bus_min, int bus_max, @@ -66,9 +69,13 @@ struct pci_root_info __init *alloc_pci_root_info(int bus_min, int bus_max, if (!info) return info; + sprintf(info->name, "PCI Bus #%02x", bus_min); + INIT_LIST_HEAD(&info->resources); - info->bus_min = bus_min; - info->bus_max = bus_max; + info->busn.name = info->name; + info->busn.start = bus_min; + info->busn.end = bus_max; + info->busn.flags = IORESOURCE_BUS; info->node = node; info->link = link; @@ -80,14 +87,13 @@ struct pci_root_info __init *alloc_pci_root_info(int bus_min, int bus_max, void print_pci_root_info(struct pci_root_info *info, char *name, bool nodelink) { struct pci_root_res *root_res; - int busnum = info->bus_min; + int busnum = info->busn.start; if (!nodelink) - printk(KERN_DEBUG "%s: [%02x, %02x]\n", name, - info->bus_min, info->bus_max); + printk(KERN_DEBUG "%s: %pR\n", name, &info->busn); else - printk(KERN_DEBUG "%s: [%02x, %02x] on node %x link %x\n", name, - info->bus_min, info->bus_max, info->node, info->link); + printk(KERN_DEBUG "%s: %pR on node %x link %x\n", name, + &info->busn, info->node, info->link); list_for_each_entry(root_res, &info->resources, list) printk(KERN_DEBUG "%s: %02x %pR\n", name, busnum, diff --git a/arch/x86/pci/bus_numa.h b/arch/x86/pci/bus_numa.h index deada6a..f9919c3 100644 --- a/arch/x86/pci/bus_numa.h +++ b/arch/x86/pci/bus_numa.h @@ -13,8 +13,7 @@ struct pci_root_info { struct list_head list; char name[12]; struct list_head resources; - int bus_min; - int bus_max; + struct resource busn; int node; int link; }; -- 1.7.7 -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html