From patchwork Thu Oct 18 20:51:30 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alex Williamson X-Patchwork-Id: 192451 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 0BA482C007C for ; Fri, 19 Oct 2012 07:51:54 +1100 (EST) Received: from localhost ([::1]:46473 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOx4K-0004la-1H for incoming@patchwork.ozlabs.org; Thu, 18 Oct 2012 16:51:52 -0400 Received: from eggs.gnu.org ([208.118.235.92]:59189) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOx42-0004cb-W8 for qemu-devel@nongnu.org; Thu, 18 Oct 2012 16:51:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TOx41-00086o-Mk for qemu-devel@nongnu.org; Thu, 18 Oct 2012 16:51:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59848) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOx41-00086O-F2 for qemu-devel@nongnu.org; Thu, 18 Oct 2012 16:51:33 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q9IKpVhb015044 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 18 Oct 2012 16:51:31 -0400 Received: from bling.home (ovpn-113-170.phx2.redhat.com [10.3.113.170]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q9IKpUhc028068; Thu, 18 Oct 2012 16:51:31 -0400 From: Alex Williamson To: anthony@codemonkey.ws, qemu-devel@nongnu.org Date: Thu, 18 Oct 2012 14:51:30 -0600 Message-ID: <20121018205129.795.55041.stgit@bling.home> In-Reply-To: <20121018204600.795.11323.stgit@bling.home> References: <20121018204600.795.11323.stgit@bling.home> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: alex.williamson@redhat.com, kvm@vger.kernel.org Subject: [Qemu-devel] [PATCH 1/2] vfio-pci: Fix debug build X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Stray variable from before MSI-X rework Signed-off-by: Alex Williamson --- hw/vfio_pci.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hw/vfio_pci.c b/hw/vfio_pci.c index 639371e..0619af4 100644 --- a/hw/vfio_pci.c +++ b/hw/vfio_pci.c @@ -639,9 +639,8 @@ static void vfio_disable_msix(VFIODevice *vdev) vfio_disable_msi_common(vdev); - DPRINTF("%s(%04x:%02x:%02x.%x, msi%s)\n", __func__, - vdev->host.domain, vdev->host.bus, vdev->host.slot, - vdev->host.function, msix ? "x" : ""); + DPRINTF("%s(%04x:%02x:%02x.%x)\n", __func__, vdev->host.domain, + vdev->host.bus, vdev->host.slot, vdev->host.function); } static void vfio_disable_msi(VFIODevice *vdev)