From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Hogan Subject: [PATCH v5 1/7] mips/kvm: Remove a couple of noisy DPRINTFs Date: Wed, 3 Feb 2016 17:16:47 +0000 Message-ID: <1454519813-18797-2-git-send-email-james.hogan@imgtec.com> References: <1454519813-18797-1-git-send-email-james.hogan@imgtec.com> Mime-Version: 1.0 Content-Type: text/plain Cc: Paolo Bonzini , , Aurelien Jarno , James Hogan To: , Leon Alrae Return-path: Received: from mailapp01.imgtec.com ([195.59.15.196]:46882 "EHLO mailapp01.imgtec.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933754AbcBCRRL (ORCPT ); Wed, 3 Feb 2016 12:17:11 -0500 In-Reply-To: <1454519813-18797-1-git-send-email-james.hogan@imgtec.com> Sender: kvm-owner@vger.kernel.org List-ID: 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 --- target-mips/kvm.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/target-mips/kvm.c b/target-mips/kvm.c index a8b8b32c267b..8bd74385110b 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.4.10