From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53063) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YL4bY-0000q7-7f for qemu-devel@nongnu.org; Tue, 10 Feb 2015 01:47:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YL4bV-0006gs-1H for qemu-devel@nongnu.org; Tue, 10 Feb 2015 01:47:28 -0500 Received: from mail-pa0-f50.google.com ([209.85.220.50]:52322) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YL4bU-0006gl-Si for qemu-devel@nongnu.org; Tue, 10 Feb 2015 01:47:24 -0500 Received: by mail-pa0-f50.google.com with SMTP id hz1so10475057pad.9 for ; Mon, 09 Feb 2015 22:47:23 -0800 (PST) Message-ID: <54D9A901.1090600@linaro.org> Date: Tue, 10 Feb 2015 07:45:21 +0100 From: Eric Auger MIME-Version: 1.0 References: <1423548849-21528-1-git-send-email-aik@ozlabs.ru> In-Reply-To: <1423548849-21528-1-git-send-email-aik@ozlabs.ru> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] vfio: Fix debug message compile error List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexey Kardashevskiy , qemu-devel@nongnu.org Cc: Alex Williamson Hi Alexey, Thanks for pointing that issue. Best Regards Eric On 02/10/2015 07:14 AM, Alexey Kardashevskiy wrote: > 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) { >