From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43887) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YL46R-0003mf-Sa for qemu-devel@nongnu.org; Tue, 10 Feb 2015 01:15:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YL46O-0001lC-Nb for qemu-devel@nongnu.org; Tue, 10 Feb 2015 01:15:19 -0500 Received: from e23smtp04.au.ibm.com ([202.81.31.146]:46692) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YL46O-0001ku-3y for qemu-devel@nongnu.org; Tue, 10 Feb 2015 01:15:16 -0500 Received: from /spool/local by e23smtp04.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 10 Feb 2015 16:15:12 +1000 Received: from d23relay08.au.ibm.com (d23relay08.au.ibm.com [9.185.71.33]) by d23dlp02.au.ibm.com (Postfix) with ESMTP id 550D02BB0054 for ; Tue, 10 Feb 2015 17:15:09 +1100 (EST) Received: from d23av03.au.ibm.com (d23av03.au.ibm.com [9.190.234.97]) by d23relay08.au.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t1A6Ex6j43581490 for ; Tue, 10 Feb 2015 17:15:09 +1100 Received: from d23av03.au.ibm.com (localhost [127.0.0.1]) by d23av03.au.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t1A6EY6X028033 for ; Tue, 10 Feb 2015 17:14:34 +1100 From: Alexey Kardashevskiy Date: Tue, 10 Feb 2015 17:14:09 +1100 Message-Id: <1423548849-21528-1-git-send-email-aik@ozlabs.ru> Subject: [Qemu-devel] [PATCH] vfio: Fix debug message compile error List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Alexey Kardashevskiy , Alex Williamson This fixes a compiler error which occurs if DEBUG_VFIO is defined. Signed-off-by: Alexey Kardashevskiy --- 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 29caabc..cfc087a 100644 --- a/hw/vfio/pci.c +++ b/hw/vfio/pci.c @@ -517,7 +517,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) { -- 2.0.0