From: Wei Yang Date: Fri, 19 Feb 2016 16:42:32 +0000 (-0700) Subject: vfio/pci: use PCI_MSIX_FLAGS on retrieving the MSIX entries X-Git-Tag: v2.6.0-rc0~95^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b58b17f744b5465d0fc76eba1be549a9f5704bab;p=thirdparty%2Fqemu.git vfio/pci: use PCI_MSIX_FLAGS on retrieving the MSIX entries Even PCI_CAP_FLAGS has the same value as PCI_MSIX_FLAGS, the later one is the more proper on retrieving MSIX entries. This patch uses PCI_MSIX_FLAGS to retrieve the MSIX entries. Signed-off-by: Wei Yang Signed-off-by: Alex Williamson --- diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c index dc5fa9fcadc..20b505f4ec7 100644 --- a/hw/vfio/pci.c +++ b/hw/vfio/pci.c @@ -1207,7 +1207,7 @@ static int vfio_msix_early_setup(VFIOPCIDevice *vdev) } if (pread(fd, &ctrl, sizeof(ctrl), - vdev->config_offset + pos + PCI_CAP_FLAGS) != sizeof(ctrl)) { + vdev->config_offset + pos + PCI_MSIX_FLAGS) != sizeof(ctrl)) { return -errno; }