From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48860) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7hXe-0008EH-Lo for qemu-devel@nongnu.org; Sat, 12 Dec 2015 05:36:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a7hXd-00088P-R0 for qemu-devel@nongnu.org; Sat, 12 Dec 2015 05:36:42 -0500 Received: from mail-wm0-x229.google.com ([2a00:1450:400c:c09::229]:34957) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7hXd-00088I-LZ for qemu-devel@nongnu.org; Sat, 12 Dec 2015 05:36:41 -0500 Received: by mail-wm0-x229.google.com with SMTP id l68so45861710wml.0 for ; Sat, 12 Dec 2015 02:36:41 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Sat, 12 Dec 2015 11:36:21 +0100 Message-Id: <1449916587-18312-6-git-send-email-pbonzini@redhat.com> In-Reply-To: <1449916587-18312-1-git-send-email-pbonzini@redhat.com> References: <1449916587-18312-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 05/11] s390x: avoid "naked" qemu_log List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, Alexander Graf Convert to debug-only qemu_log. Cc: Alexander Graf Signed-off-by: Paolo Bonzini --- target-s390x/cc_helper.c | 2 +- target-s390x/misc_helper.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/target-s390x/cc_helper.c b/target-s390x/cc_helper.c index bfce3f1..c4ee002 100644 --- a/target-s390x/cc_helper.c +++ b/target-s390x/cc_helper.c @@ -560,7 +560,7 @@ void HELPER(sacf)(CPUS390XState *env, uint64_t a1) env->psw.mask |= PSW_ASC_HOME; break; default: - qemu_log("unknown sacf mode: %" PRIx64 "\n", a1); + HELPER_LOG("unknown sacf mode: %" PRIx64 "\n", a1); program_interrupt(env, PGM_SPECIFICATION, 2); break; } diff --git a/target-s390x/misc_helper.c b/target-s390x/misc_helper.c index b601a33..dab02d3 100644 --- a/target-s390x/misc_helper.c +++ b/target-s390x/misc_helper.c @@ -299,7 +299,7 @@ void HELPER(spx)(CPUS390XState *env, uint64_t a1) uint32_t prefix = a1 & 0x7fffe000; env->psa = prefix; - qemu_log("prefix: %#x\n", prefix); + HELPER_LOG("prefix: %#x\n", prefix); tlb_flush_page(cs, 0); tlb_flush_page(cs, TARGET_PAGE_SIZE); } -- 2.5.0