summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Hogan <james.hogan@imgtec.com>2016-02-03 17:16:47 +0000
committerLeon Alrae <leon.alrae@imgtec.com>2016-02-26 08:59:17 +0000
commitc489e5591ff998204dc4736748b9441514f2cbee (patch)
treeee66f47f988d2e470edde2ebadc081c6dbacc16d
parent0c6940d086f39bbf725d96104abe46da87429cb6 (diff)
downloadfocaccia-qemu-c489e5591ff998204dc4736748b9441514f2cbee.tar.gz
focaccia-qemu-c489e5591ff998204dc4736748b9441514f2cbee.zip
mips/kvm: Remove a couple of noisy DPRINTFs
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 <james.hogan@imgtec.com>
Reviewed-by: Leon Alrae <leon.alrae@imgtec.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
-rw-r--r--target-mips/kvm.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/target-mips/kvm.c b/target-mips/kvm.c
index a8b8b32c26..8bd7438511 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;
 }