diff options
author | Yi Min Zhao <zyimin@linux.vnet.ibm.com> | 2016-01-28 13:26:43 +0800 |
---|---|---|
committer | Cornelia Huck <cornelia.huck@de.ibm.com> | 2016-03-01 12:15:29 +0100 |
commit | 8581c115d2b995e216223f9f9d29fb4810474dc4 (patch) | |
tree | 22d5dfd7e54599300060020bd5c4419a1ae0e11a /hw/s390x/s390-pci-bus.h | |
parent | a28d8391e323ef586c44e9313826097f884eebc6 (diff) | |
download | qemu-8581c115d2b995e216223f9f9d29fb4810474dc4.tar.gz qemu-8581c115d2b995e216223f9f9d29fb4810474dc4.tar.bz2 qemu-8581c115d2b995e216223f9f9d29fb4810474dc4.zip |
s390x/pci: fix reg/dereg irq functions
Indicator refcounting interfaces are introduced. This patch fixes
introducing unneeded indicator mappings and failure to release
AISB mappings on deregistration.
Signed-off-by: Yi Min Zhao <zyimin@linux.vnet.ibm.com>
Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'hw/s390x/s390-pci-bus.h')
-rw-r--r-- | hw/s390x/s390-pci-bus.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/s390x/s390-pci-bus.h b/hw/s390x/s390-pci-bus.h index d8ddb77281..59fd5c9583 100644 --- a/hw/s390x/s390-pci-bus.h +++ b/hw/s390x/s390-pci-bus.h @@ -233,6 +233,8 @@ typedef struct S390PCIBusDevice { AddressSpace as; MemoryRegion mr; MemoryRegion iommu_mr; + IndAddr *summary_ind; + IndAddr *indicator; } S390PCIBusDevice; typedef struct S390pciState { |