diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2013-07-18 14:33:02 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-07-29 10:37:09 -0500 |
commit | 1112cf94c82dfc743b62b5bcb96dd20f47b683a8 (patch) | |
tree | 85bbc8a2c8ea0b7ef6726a115827a16082182689 /include/hw/pci-host | |
parent | 4be21d561d59da9d6f20f872882652bc3561f871 (diff) | |
download | qemu-1112cf94c82dfc743b62b5bcb96dd20f47b683a8.tar.gz qemu-1112cf94c82dfc743b62b5bcb96dd20f47b683a8.tar.bz2 qemu-1112cf94c82dfc743b62b5bcb96dd20f47b683a8.zip |
pseries: savevm support for PCI host bridge
This adds the necessary support for saving the state of the PAPR virtual
PCI host bridge (or host bridges).
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Message-id: 1374175984-8930-10-git-send-email-aliguori@us.ibm.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'include/hw/pci-host')
-rw-r--r-- | include/hw/pci-host/spapr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/hw/pci-host/spapr.h b/include/hw/pci-host/spapr.h index 1e23dbfb4a..93f9511325 100644 --- a/include/hw/pci-host/spapr.h +++ b/include/hw/pci-host/spapr.h @@ -52,14 +52,14 @@ typedef struct sPAPRPHBState { sPAPRTCETable *tcet; AddressSpace iommu_as; - struct { + struct spapr_pci_lsi { uint32_t irq; } lsi_table[PCI_NUM_PINS]; - struct { + struct spapr_pci_msi { uint32_t config_addr; uint32_t irq; - int nvec; + uint32_t nvec; } msi_table[SPAPR_MSIX_MAX_DEVS]; QLIST_ENTRY(sPAPRPHBState) list; |