From: Feng Liu <feliu@xxxxxxxxxx> Currently vp_modern_probe() missed out to map config space structure starting from notify_data offset. Due to this when such structure elements are accessed it can result in an error. Fix it by considering the minimum size of what device has offered and what driver will access. Fixes: ea024594b1dc ("virtio_pci: struct virtio_pci_common_cfg add queue_notify_data") Fixes: 0cdd450e7051 ("virtio_pci: struct virtio_pci_common_cfg add queue_reset") Signed-off-by: Feng Liu <feliu@xxxxxxxxxx> Reported-by: Michael S . Tsirkin <mst@xxxxxxxxxx> Closes: https://lkml.kernel.org/kvm/20230927172553-mutt-send-email-mst@xxxxxxxxxx/ Reviewed-by: Parav Pandit <parav@xxxxxxxxxx> Signed-off-by: Yishai Hadas <yishaih@xxxxxxxxxx> --- drivers/virtio/virtio_pci_modern_dev.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/virtio/virtio_pci_modern_dev.c b/drivers/virtio/virtio_pci_modern_dev.c index aad7d9296e77..7fa70d7c8146 100644 --- a/drivers/virtio/virtio_pci_modern_dev.c +++ b/drivers/virtio/virtio_pci_modern_dev.c @@ -290,9 +290,9 @@ int vp_modern_probe(struct virtio_pci_modern_device *mdev) err = -EINVAL; mdev->common = vp_modern_map_capability(mdev, common, - sizeof(struct virtio_pci_common_cfg), 4, - 0, sizeof(struct virtio_pci_common_cfg), - NULL, NULL); + sizeof(struct virtio_pci_common_cfg), 4, + 0, sizeof(struct virtio_pci_modern_common_cfg), + NULL, NULL); if (!mdev->common) goto err_map_common; mdev->isr = vp_modern_map_capability(mdev, isr, sizeof(u8), 1, -- 2.27.0