mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
hw/virtio-pci Added AER capability.
Added AER capability for virtio-pci devices. Also added property for devices, by default AER is disabled. Signed-off-by: Andrew Melnychenko <andrew@daynix.com> Message-Id: <20201203110713.204938-3-andrew@daynix.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
06e9744242
commit
fdfa3b1d6f
2 changed files with 20 additions and 0 deletions
|
@ -41,6 +41,7 @@ enum {
|
|||
VIRTIO_PCI_FLAG_INIT_LNKCTL_BIT,
|
||||
VIRTIO_PCI_FLAG_INIT_PM_BIT,
|
||||
VIRTIO_PCI_FLAG_INIT_FLR_BIT,
|
||||
VIRTIO_PCI_FLAG_AER_BIT,
|
||||
};
|
||||
|
||||
/* Need to activate work-arounds for buggy guests at vmstate load. */
|
||||
|
@ -80,6 +81,9 @@ enum {
|
|||
/* Init Function Level Reset capability */
|
||||
#define VIRTIO_PCI_FLAG_INIT_FLR (1 << VIRTIO_PCI_FLAG_INIT_FLR_BIT)
|
||||
|
||||
/* Advanced Error Reporting capability */
|
||||
#define VIRTIO_PCI_FLAG_AER (1 << VIRTIO_PCI_FLAG_AER_BIT)
|
||||
|
||||
typedef struct {
|
||||
MSIMessage msg;
|
||||
int virq;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue