[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4E989E07.6030404@oracle.com>
Date: Fri, 14 Oct 2011 13:39:35 -0700
From: Yinghai Lu <yinghai.lu@...cle.com>
To: Bjorn Helgaas <bhelgaas@...gle.com>
CC: linux-pci@...r.kernel.org, linux-arch@...r.kernel.org,
linux-kernel@...r.kernel.org,
Jesse Barnes <jbarnes@...tuousgeek.org>
Subject: Re: [PATCH v2 06/29] x86/PCI: convert to pci_create_root_bus() and
pci_scan_root_bus()
On 10/14/2011 01:32 PM, Bjorn Helgaas wrote:
>>> int node;
>>> @@ -353,11 +349,18 @@ struct pci_bus * __devinit pci_acpi_scan_root(struct acpi_pci_root *root)
>>> memcpy(bus->sysdata, sd, sizeof(*sd));
>>> kfree(sd);
>>> } else {
>>> - bus = pci_create_bus(NULL, busnum, &pci_root_ops, sd);
>>> - if (bus) {
>>> - get_current_resources(device, busnum, domain, bus);
>>> - bus->subordinate = pci_scan_child_bus(bus);
>>> + INIT_LIST_HEAD(&resources);
>>> + get_current_resources(device, busnum, domain, &resources);
>>> + if (!pci_use_crs) {
>>> + pci_free_resource_list(&resources);
>>> + x86_pci_root_bus_resources(busnum, &resources);
>>> }
>>
>>
>> You may need to update get_current_resources() to return status about handling _CRS...
>> and check that status insteaf of !pci_use_crs.
>
> Is the current patch broken here? I don't think it will be simpler to
> have get_current_resources() return a status and check that. But if
> something's actually broken, I want to fix it, of course.
>
yes. if for some reason, _CRS is not handled right, that root bus resources will not get set to default res.
+ status = get_current_resources(device, busnum, domain, &resources);
+ if (status) {
+ pci_free_resource_list(&resources);
+ x86_pci_root_bus_resources(busnum, &resources);
}
get_current_resources() will not return 0 if _CRS is not really used.
Thanks
Yinghai
--
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