[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH V7 17/24] hw/pci: removed 'rootbus nr is 0' assumpti
From: |
Marcel Apfelbaum |
Subject: |
[Qemu-devel] [PATCH V7 17/24] hw/pci: removed 'rootbus nr is 0' assumption from qmp_pci_query |
Date: |
Mon, 25 May 2015 18:33:55 +0300 |
From: Marcel Apfelbaum <address@hidden>
Use the newer pci_bus_num to correctly get the root bus number.
Signed-off-by: Marcel Apfelbaum <address@hidden>
---
hw/pci/pci.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/hw/pci/pci.c b/hw/pci/pci.c
index 3361d85..a956640 100644
--- a/hw/pci/pci.c
+++ b/hw/pci/pci.c
@@ -1594,7 +1594,8 @@ PciInfoList *qmp_query_pci(Error **errp)
QLIST_FOREACH(host_bridge, &pci_host_bridges, next) {
info = g_malloc0(sizeof(*info));
- info->value = qmp_query_pci_bus(host_bridge->bus, 0);
+ info->value = qmp_query_pci_bus(host_bridge->bus,
+ pci_bus_num(host_bridge->bus));
/* XXX: waiting for the qapi to support GSList */
if (!cur_item) {
--
2.1.0
- [Qemu-devel] [PATCH V7 07/24] acpi: add aml_increment() term, (continued)
- [Qemu-devel] [PATCH V7 07/24] acpi: add aml_increment() term, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 08/24] acpi: add aml_while() term, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 09/24] hw/pci: made pci_bus_is_root a PCIBusClass method, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 10/24] hw/pci: made pci_bus_num a PCIBusClass method, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 11/24] hw/i386: query only for q35/pc when looking for pci host bridge, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 12/24] hw/pci: extend PCI config access to support devices behind PXB, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 14/24] hw/apci: add _PRT method for extra PCI root busses, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 13/24] hw/acpi: add support for i440fx 'snooping' root busses, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 15/24] hw/acpi: add _CRS method for extra root busses, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 16/24] hw/acpi: remove from root bus 0 the crs resources used by other buses., Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 17/24] hw/pci: removed 'rootbus nr is 0' assumption from qmp_pci_query,
Marcel Apfelbaum <=
- [Qemu-devel] [PATCH V7 18/24] hw/pci: introduce PCI Expander Bridge (PXB), Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 19/24] hw/pci: inform bios if the system has extra pci root buses, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 21/24] hw/pci: add support for NUMA nodes, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 20/24] hw/pxb: add map_irq func, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 22/24] hw/pxb: add numa_node parameter, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 23/24] apci: fix PXB behaviour if used with unsupported BIOS, Marcel Apfelbaum, 2015/05/25
- [Qemu-devel] [PATCH V7 24/24] docs: Add PXB documentation, Marcel Apfelbaum, 2015/05/25