diff options
author | Marcel Apfelbaum | 2017-02-20 21:43:11 +0100 |
---|---|---|
committer | Michael S. Tsirkin | 2017-03-16 00:46:40 +0100 |
commit | c2cabb34220d63f93e4a0162a26535cbd1f30243 (patch) | |
tree | 9b7d1f2d6b754a060998857172d11c4d58f3f207 /hw/virtio/virtio-pci.h | |
parent | hw/pcie: fix Extended Configuration Space for devices with no Extended Capabi... (diff) | |
download | qemu-c2cabb34220d63f93e4a0162a26535cbd1f30243.tar.gz qemu-c2cabb34220d63f93e4a0162a26535cbd1f30243.tar.xz qemu-c2cabb34220d63f93e4a0162a26535cbd1f30243.zip |
hw/virtio: fix error enabling flags in Device Control register
When the virtio devices are PCI Express, make error-enabling flags
writable to respect the PCIe spec.
Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/virtio/virtio-pci.h')
-rw-r--r-- | hw/virtio/virtio-pci.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hw/virtio/virtio-pci.h b/hw/virtio/virtio-pci.h index d00064cc0c..120661db5a 100644 --- a/hw/virtio/virtio-pci.h +++ b/hw/virtio/virtio-pci.h @@ -73,6 +73,7 @@ enum { VIRTIO_PCI_FLAG_DISABLE_PCIE_BIT, VIRTIO_PCI_FLAG_PAGE_PER_VQ_BIT, VIRTIO_PCI_FLAG_ATS_BIT, + VIRTIO_PCI_FLAG_INIT_DEVERR_BIT, }; /* Need to activate work-arounds for buggy guests at vmstate load. */ @@ -100,6 +101,9 @@ enum { /* address space translation service */ #define VIRTIO_PCI_FLAG_ATS (1 << VIRTIO_PCI_FLAG_ATS_BIT) +/* Init error enabling flags */ +#define VIRTIO_PCI_FLAG_INIT_DEVERR (1 << VIRTIO_PCI_FLAG_INIT_DEVERR_BIT) + typedef struct { MSIMessage msg; int virq; |