mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
hw/pci: add support for NUMA nodes
PCI root buses can be attached to a specific NUMA node. PCI buses are not attached by default to a NUMA node. Signed-off-by: Marcel Apfelbaum <marcel@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Acked-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
parent
0639b00d05
commit
6a3042b23b
4 changed files with 14 additions and 0 deletions
11
hw/pci/pci.c
11
hw/pci/pci.c
|
@ -101,6 +101,11 @@ static int pcibus_num(PCIBus *bus)
|
|||
return bus->parent_dev->config[PCI_SECONDARY_BUS];
|
||||
}
|
||||
|
||||
static uint16_t pcibus_numa_node(PCIBus *bus)
|
||||
{
|
||||
return NUMA_NODE_UNASSIGNED;
|
||||
}
|
||||
|
||||
static void pci_bus_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
BusClass *k = BUS_CLASS(klass);
|
||||
|
@ -115,6 +120,7 @@ static void pci_bus_class_init(ObjectClass *klass, void *data)
|
|||
|
||||
pbc->is_root = pcibus_is_root;
|
||||
pbc->bus_num = pcibus_num;
|
||||
pbc->numa_node = pcibus_numa_node;
|
||||
}
|
||||
|
||||
static const TypeInfo pci_bus_info = {
|
||||
|
@ -402,6 +408,11 @@ int pci_bus_num(PCIBus *s)
|
|||
return PCI_BUS_GET_CLASS(s)->bus_num(s);
|
||||
}
|
||||
|
||||
int pci_bus_numa_node(PCIBus *bus)
|
||||
{
|
||||
return PCI_BUS_GET_CLASS(bus)->numa_node(bus);
|
||||
}
|
||||
|
||||
static int get_pci_config_device(QEMUFile *f, void *pv, size_t size)
|
||||
{
|
||||
PCIDevice *s = container_of(pv, PCIDevice, config);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue