From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60741) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZGP8-0003OW-0j for qemu-devel@nongnu.org; Fri, 26 Feb 2016 06:17:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aZGP4-0002T5-Pb for qemu-devel@nongnu.org; Fri, 26 Feb 2016 06:17:49 -0500 Received: from mailapp01.imgtec.com ([195.59.15.196]:26148) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZGP4-0002St-JT for qemu-devel@nongnu.org; Fri, 26 Feb 2016 06:17:46 -0500 From: Leon Alrae Date: Fri, 26 Feb 2016 11:16:53 +0000 Message-ID: <1456485420-18937-2-git-send-email-leon.alrae@imgtec.com> In-Reply-To: <1456485420-18937-1-git-send-email-leon.alrae@imgtec.com> References: <1456485420-18937-1-git-send-email-leon.alrae@imgtec.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PULL 1/8] mips/kvm: Remove a couple of noisy DPRINTFs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , James Hogan , Aurelien Jarno From: James Hogan The DPRINTFs in cpu_mips_io_interrupts_pending() and kvm_arch_pre_run() are particularly noisy during normal execution, and also not particularly helpful. Remove them so that more important debug messages can be more easily seen. Signed-off-by: James Hogan Reviewed-by: Leon Alrae Cc: Paolo Bonzini Cc: Aurelien Jarno Signed-off-by: Leon Alrae --- target-mips/kvm.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/target-mips/kvm.c b/target-mips/kvm.c index a8b8b32..8bd7438 100644 --- a/target-mips/kvm.c +++ b/target-mips/kvm.c @@ -88,7 +88,6 @@ static inline int cpu_mips_io_interrupts_pending(MIPSCPU *cpu) { CPUMIPSState *env = &cpu->env; - DPRINTF("%s: %#x\n", __func__, env->CP0_Cause & (1 << (2 + CP0Ca_IP))); return env->CP0_Cause & (0x1 << (2 + CP0Ca_IP)); } @@ -117,7 +116,6 @@ void kvm_arch_pre_run(CPUState *cs, struct kvm_run *run) MemTxAttrs kvm_arch_post_run(CPUState *cs, struct kvm_run *run) { - DPRINTF("%s\n", __func__); return MEMTXATTRS_UNSPECIFIED; } -- 2.1.0