From: Alexey Kardashevskiy Date: Tue, 10 Feb 2015 17:25:44 +0000 (-0700) Subject: vfio: Fix debug message compile error X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bc5baffa3554e4c0d20c1dbe879aec931866bd69;p=qemu.git vfio: Fix debug message compile error This fixes a compiler error which occurs if DEBUG_VFIO is defined. Signed-off-by: Alexey Kardashevskiy Signed-off-by: Alex Williamson --- diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c index fa6a5e9268..84e9d995aa 100644 --- a/hw/vfio/pci.c +++ b/hw/vfio/pci.c @@ -516,7 +516,7 @@ static void vfio_msi_interrupt(void *opaque) abort(); } - trace_vfio_msi_interrupt(vbasedev->name, nr, msg.address, msg.data); + trace_vfio_msi_interrupt(vdev->vbasedev.name, nr, msg.address, msg.data); #endif if (vdev->interrupt == VFIO_INT_MSIX) {