From: Chen Fan <[email protected]> Add 'aer' property, let user choose whether expose the aer capability or not. Should disable aer feature by default, because only non-fatal error is supported now.
Signed-off-by: Chen Fan <[email protected]> Signed-off-by: Dou Liyang <[email protected]> Signed-off-by: Cao jin <[email protected]> --- hw/vfio/pci.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c index 9861f72..fc9db66 100644 --- a/hw/vfio/pci.c +++ b/hw/vfio/pci.c @@ -3057,6 +3057,8 @@ static Property vfio_pci_dev_properties[] = { DEFINE_PROP_UINT32("x-pci-sub-device-id", VFIOPCIDevice, sub_device_id, PCI_ANY_ID), DEFINE_PROP_UINT32("x-igd-gms", VFIOPCIDevice, igd_gms, 0), + DEFINE_PROP_BIT("aer", VFIOPCIDevice, features, + VFIO_FEATURE_ENABLE_AER_BIT, false), /* * TODO - support passed fds... is this necessary? * DEFINE_PROP_STRING("vfiofd", VFIOPCIDevice, vfiofd_name), -- 1.8.3.1
