diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2010-05-28 18:30:46 +0900 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2010-05-31 16:39:55 +0300 |
commit | e075e788c9e882f5bebfb350f725ee7e4273033f (patch) | |
tree | cee279dff54e91932b3915f702324fd55e6630e9 /hw/pci.h | |
parent | 1b4e8f732d118d1bd64c49e3c9d90832f8214272 (diff) | |
download | qemu-e075e788c9e882f5bebfb350f725ee7e4273033f.tar.gz qemu-e075e788c9e882f5bebfb350f725ee7e4273033f.tar.bz2 qemu-e075e788c9e882f5bebfb350f725ee7e4273033f.zip |
pci-hotplug: make them aware of pci domain.
add helper function which converts root bus to pci domain.
make them aware of pci domain.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci.h')
-rw-r--r-- | hw/pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -218,6 +218,7 @@ PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model, int pci_bus_num(PCIBus *s); void pci_for_each_device(PCIBus *bus, int bus_num, void (*fn)(PCIBus *bus, PCIDevice *d)); PCIBus *pci_find_root_bus(int domain); +int pci_find_domain(const PCIBus *bus); PCIBus *pci_find_bus(PCIBus *bus, int bus_num); PCIDevice *pci_find_device(PCIBus *bus, int bus_num, int slot, int function); PCIBus *pci_get_bus_devfn(int *devfnp, const char *devaddr); |