mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
x86/PCI: Remove acpi_get_pxm() usage
The PCI host bridge code doesn't care about _PXM values directly; it only needs to know what NUMA node the hardware is on. This uses acpi_get_node() directly and removes the _PXM stuff. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
8a3d01c740
commit
ab6ffce35b
@ -480,9 +480,6 @@ struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root)
|
|||||||
struct pci_bus *bus = NULL;
|
struct pci_bus *bus = NULL;
|
||||||
struct pci_sysdata *sd;
|
struct pci_sysdata *sd;
|
||||||
int node;
|
int node;
|
||||||
#ifdef CONFIG_ACPI_NUMA
|
|
||||||
int pxm;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
if (pci_ignore_seg)
|
if (pci_ignore_seg)
|
||||||
domain = 0;
|
domain = 0;
|
||||||
@ -494,12 +491,7 @@ struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
node = NUMA_NO_NODE;
|
node = acpi_get_node(device->handle);
|
||||||
#ifdef CONFIG_ACPI_NUMA
|
|
||||||
pxm = acpi_get_pxm(device->handle);
|
|
||||||
if (pxm >= 0)
|
|
||||||
node = pxm_to_node(pxm);
|
|
||||||
#endif
|
|
||||||
if (node == NUMA_NO_NODE)
|
if (node == NUMA_NO_NODE)
|
||||||
node = x86_pci_root_bus_node(busnum);
|
node = x86_pci_root_bus_node(busnum);
|
||||||
|
|
||||||
@ -570,15 +562,8 @@ struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root)
|
|||||||
pcie_bus_configure_settings(child);
|
pcie_bus_configure_settings(child);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bus && node != NUMA_NO_NODE) {
|
if (bus && node != NUMA_NO_NODE)
|
||||||
#ifdef CONFIG_ACPI_NUMA
|
|
||||||
if (pxm >= 0)
|
|
||||||
dev_printk(KERN_DEBUG, &bus->dev,
|
|
||||||
"on NUMA node %d (pxm %d)\n", node, pxm);
|
|
||||||
#else
|
|
||||||
dev_printk(KERN_DEBUG, &bus->dev, "on NUMA node %d\n", node);
|
dev_printk(KERN_DEBUG, &bus->dev, "on NUMA node %d\n", node);
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
return bus;
|
return bus;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user