From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56734) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWmpW-0000AB-5X for qemu-devel@nongnu.org; Fri, 19 Feb 2016 10:18:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aWmpR-0004qP-63 for qemu-devel@nongnu.org; Fri, 19 Feb 2016 10:18:50 -0500 From: Wei Yang Date: Fri, 19 Feb 2016 15:18:10 +0000 Message-Id: <1455895091-7589-2-git-send-email-richard.weiyang@gmail.com> In-Reply-To: <1455895091-7589-1-git-send-email-richard.weiyang@gmail.com> References: <1455895091-7589-1-git-send-email-richard.weiyang@gmail.com> Subject: [Qemu-devel] [PATCH 1/2] vfio/pci: use PCI_MSIX_FLAGS on retrieving the MSIX entries List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org, Wei Yang 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 --- hw/vfio/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c index e66c47f..321423b 100644 --- a/hw/vfio/pci.c +++ b/hw/vfio/pci.c @@ -1210,7 +1210,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; } -- 1.7.9.5