diff options
author | Chen Fan <chen.fan.fnst@cn.fujitsu.com> | 2016-02-19 09:42:28 -0700 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:45:30 -0600 |
commit | 67668a5a28a71296cad3d88d901dedf391095be3 (patch) | |
tree | 9581eb72c171f65595f3585f881a62be1b56f731 | |
parent | 22ab82414a1bce00451d9534d51eba3c1225d5e0 (diff) | |
download | hqemu-67668a5a28a71296cad3d88d901dedf391095be3.zip hqemu-67668a5a28a71296cad3d88d901dedf391095be3.tar.gz |
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>
-rw-r--r-- | hw/pci/pcie_aer.c | 2 | ||||
-rw-r--r-- | include/hw/pci/pcie_aer.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/hw/pci/pcie_aer.c b/hw/pci/pcie_aer.c index 8043020..e2d4e68 100644 --- a/hw/pci/pcie_aer.c +++ b/hw/pci/pcie_aer.c @@ -371,7 +371,7 @@ static void pcie_aer_msg_root_port(PCIDevice *dev, const PCIEAERMsg *msg) * * Walk up the bus tree from the device, propagate the error message. */ -static void pcie_aer_msg(PCIDevice *dev, const PCIEAERMsg *msg) +void pcie_aer_msg(PCIDevice *dev, const PCIEAERMsg *msg) { uint8_t type; diff --git a/include/hw/pci/pcie_aer.h b/include/hw/pci/pcie_aer.h index 156acb0..c2ee4e2 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 */ |