diff options
author | Chen Fan <chen.fan.fnst@cn.fujitsu.com> | 2016-02-19 09:42:28 -0700 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2016-02-19 09:42:28 -0700 |
commit | 40f8f0c31b6009e802175463c97f3b9e6f7c5d0f (patch) | |
tree | d206647ec62eec92c79af75cf3228b2fe53de97e /include/hw/pci | |
parent | 8d86ada2a7a2fe6d9f4209e042d2c5785fa5e0c1 (diff) | |
download | qemu-40f8f0c31b6009e802175463c97f3b9e6f7c5d0f.tar.gz qemu-40f8f0c31b6009e802175463c97f3b9e6f7c5d0f.tar.bz2 qemu-40f8f0c31b6009e802175463c97f3b9e6f7c5d0f.zip |
pcie_aer: expose pcie_aer_msg() interface
For vfio device, we need to propagate the aer error to
Guest OS. we use the pcie_aer_msg() to send aer error
to guest.
Signed-off-by: Chen Fan <chen.fan.fnst@cn.fujitsu.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'include/hw/pci')
-rw-r--r-- | include/hw/pci/pcie_aer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/pci/pcie_aer.h b/include/hw/pci/pcie_aer.h index 156acb080a..c2ee4e2bdb 100644 --- a/include/hw/pci/pcie_aer.h +++ b/include/hw/pci/pcie_aer.h @@ -102,5 +102,6 @@ void pcie_aer_root_write_config(PCIDevice *dev, /* error injection */ int pcie_aer_inject_error(PCIDevice *dev, const PCIEAERErr *err); +void pcie_aer_msg(PCIDevice *dev, const PCIEAERMsg *msg); #endif /* QEMU_PCIE_AER_H */ |