aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Brucker <jean-philippe.brucker@arm.com>2022-07-01 15:24:33 +0100
committerWill Deacon <will@kernel.org>2022-07-01 16:09:00 +0100
commit3d5cefc2eb3e2dec92bad5bf46a87251027975a2 (patch)
tree34736d0a58872ed986593590eab9cc471e189337
parent5fe5eb04de80b8bc68f4d57443596d0b935907ef (diff)
downloadkvmtool-3d5cefc2eb3e2dec92bad5bf46a87251027975a2.tar.gz
virtio/pci: Initialize all vectors to VIRTIO_MSI_NO_VECTOR
According to the virtio spec, all vectors must be initialized to VIRTIO_MSI_NO_VECTOR (0xffff). In 4.1.5.1.2.1 "Device Requirements: MSI-X Vector Configuration": The device MUST return vector mapped to a given event, (NO_VECTOR if unmapped) on read of config_msix_vector/queue_msix_vector. Currently we return 0, which is a valid MSI vector. Return NO_VECTOR instead. Signed-off-by: Jean-Philippe Brucker <jean-philippe.brucker@arm.com> Link: https://lore.kernel.org/r/20220701142434.75170-12-jean-philippe.brucker@arm.com Signed-off-by: Will Deacon <will@kernel.org>
-rw-r--r--include/kvm/virtio-pci.h2
-rw-r--r--virtio/pci.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/include/kvm/virtio-pci.h b/include/kvm/virtio-pci.h
index 47075334..4590d1b3 100644
--- a/include/kvm/virtio-pci.h
+++ b/include/kvm/virtio-pci.h
@@ -53,7 +53,7 @@ struct virtio_pci {
/* MSI-X */
u16 config_vector;
u32 config_gsi;
- u32 vq_vector[VIRTIO_PCI_MAX_VQ];
+ u16 vq_vector[VIRTIO_PCI_MAX_VQ];
u32 gsis[VIRTIO_PCI_MAX_VQ];
u64 msix_pba;
struct msix_table msix_table[VIRTIO_PCI_MAX_VQ + VIRTIO_PCI_MAX_CONFIG];
diff --git a/virtio/pci.c b/virtio/pci.c
index c645d4a0..cffabc76 100644
--- a/virtio/pci.c
+++ b/virtio/pci.c
@@ -404,7 +404,9 @@ int virtio_pci__init(struct kvm *kvm, void *dev, struct virtio_device *vdev,
/* Both table and PBA are mapped to the same BAR (2) */
vpci->pci_hdr.msix.table_offset = cpu_to_le32(2);
vpci->pci_hdr.msix.pba_offset = cpu_to_le32(2 | VIRTIO_MSIX_TABLE_SIZE);
- vpci->config_vector = 0;
+ vpci->config_vector = VIRTIO_MSI_NO_VECTOR;
+ /* Initialize all vq vectors to NO_VECTOR */
+ memset(vpci->vq_vector, 0xff, sizeof(vpci->vq_vector));
if (irq__can_signal_msi(kvm))
vpci->features |= VIRTIO_PCI_F_SIGNAL_MSI;