| From 6b9b6494bc17888edf8a9673e645fb0416aa6e3e Mon Sep 17 00:00:00 2001 |
| From: Alex Williamson <alex.williamson@redhat.com> |
| Date: Thu, 7 Aug 2014 21:03:03 +0200 |
| Subject: [PATCH 4/7] vfio-pci: Fix MSI/X debug code |
| |
| Message-id: <20140807210302.11689.73901.stgit@gimli.home> |
| Patchwork-id: 60480 |
| O-Subject: [RHEL7.0/z qemu-kvm PATCH v2 3/6] vfio-pci: Fix MSI/X debug code |
| Bugzilla: 1098976 |
| RH-Acked-by: Bandan Das <bsd@redhat.com> |
| RH-Acked-by: Amos Kong <akong@redhat.com> |
| RH-Acked-by: Laszlo Ersek <lersek@redhat.com> |
| |
| Use the correct MSI message function for debug info. |
| |
| Signed-off-by: Alex Williamson <alex.williamson@redhat.com> |
| Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com> |
| |
| hw/misc/vfio.c | 4 ++-- |
| 1 file changed, 2 insertions(+), 2 deletions(-) |
| |
| diff --git a/hw/misc/vfio.c b/hw/misc/vfio.c |
| index 7f6ebf9..5f0460a 100644 |
| |
| |
| @@ -623,9 +623,9 @@ static void vfio_msi_interrupt(void *opaque) |
| MSIMessage msg; |
| |
| if (vdev->interrupt == VFIO_INT_MSIX) { |
| - msg = msi_get_message(&vdev->pdev, nr); |
| - } else if (vdev->interrupt == VFIO_INT_MSI) { |
| msg = msix_get_message(&vdev->pdev, nr); |
| + } else if (vdev->interrupt == VFIO_INT_MSI) { |
| + msg = msi_get_message(&vdev->pdev, nr); |
| } else { |
| abort(); |
| } |
| -- |
| 1.8.3.1 |
| |