From patchwork Fri Feb 1 01:02:59 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 217331 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 B1CC22C0091 for ; Fri, 1 Feb 2013 13:05:46 +1100 (EST) Received: from localhost ([::1]:54271 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U152e-0002s0-42 for incoming@patchwork.ozlabs.org; Thu, 31 Jan 2013 20:03:44 -0500 Received: from eggs.gnu.org ([208.118.235.92]:49804) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U152C-0002au-Dz for qemu-devel@nongnu.org; Thu, 31 Jan 2013 20:03:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U1529-0002Pz-Gt for qemu-devel@nongnu.org; Thu, 31 Jan 2013 20:03:16 -0500 Received: from cantor2.suse.de ([195.135.220.15]:34825 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1529-0002P9-B3 for qemu-devel@nongnu.org; Thu, 31 Jan 2013 20:03:13 -0500 Received: from relay1.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id BD4ECA3DDF; Fri, 1 Feb 2013 02:03:12 +0100 (CET) From: Alexander Graf To: qemu-devel Date: Fri, 1 Feb 2013 02:02:59 +0100 Message-Id: <1359680581-6091-3-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.6.0.2 In-Reply-To: <1359680581-6091-1-git-send-email-agraf@suse.de> References: <1359680581-6091-1-git-send-email-agraf@suse.de> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x X-Received-From: 195.135.220.15 Cc: Blue Swirl , Anthony Liguori , =?utf-8?q?Aur=C3=A9lien=20Jarno?= , =?utf-8?q?Andreas=20F=C3=A4rber?= Subject: [Qemu-devel] [PATCH 2/4] target-s390x: Fix debug output 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 From: Andreas Färber Commit 71e470886fb6092504503a5fe41092ace71c096c (target-s390x: fix style) renamed the cpu_s390x_handle_mmu_fault() argument from _vaddr to orig_vaddr. Update the debug output code. Signed-off-by: Andreas Färber Signed-off-by: Alexander Graf --- target-s390x/helper.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-s390x/helper.c b/target-s390x/helper.c index d693a10..e62c93e 100644 --- a/target-s390x/helper.c +++ b/target-s390x/helper.c @@ -387,7 +387,7 @@ int cpu_s390x_handle_mmu_fault(CPUS390XState *env, target_ulong orig_vaddr, int prot; DPRINTF("%s: address 0x%" PRIx64 " rw %d mmu_idx %d\n", - __func__, _vaddr, rw, mmu_idx); + __func__, orig_vaddr, rw, mmu_idx); orig_vaddr &= TARGET_PAGE_MASK; vaddr = orig_vaddr;