From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52420) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a9sYL-00072r-K9 for qemu-devel@nongnu.org; Fri, 18 Dec 2015 05:46:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a9sYI-0008NU-SS for qemu-devel@nongnu.org; Fri, 18 Dec 2015 05:46:25 -0500 Received: from mailapp01.imgtec.com ([195.59.15.196]:58494) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a9sYI-0008LV-NO for qemu-devel@nongnu.org; Fri, 18 Dec 2015 05:46:22 -0500 From: James Hogan Date: Fri, 18 Dec 2015 10:45:58 +0000 Message-ID: <1450435564-30720-2-git-send-email-james.hogan@imgtec.com> In-Reply-To: <1450435564-30720-1-git-send-email-james.hogan@imgtec.com> References: <1450435564-30720-1-git-send-email-james.hogan@imgtec.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH v4 1/7] 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, Paolo Bonzini Cc: James Hogan , Leon Alrae , Aurelien Jarno , kvm@vger.kernel.org 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 12d7db311ece..5cd65ad201ca 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