Message ID | 1426087371-16166-3-git-send-email-james.hogan@imgtec.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 11/03/2015 15:22, James Hogan wrote: > 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> > Cc: Paolo Bonzini <pbonzini@redhat.com> > Cc: Leon Alrae <leon.alrae@imgtec.com> > Cc: Aurelien Jarno <aurelien@aurel32.net> > --- > target-mips/kvm.c | 2 -- > 1 file changed, 2 deletions(-) Reviewed-by: Leon Alrae <leon.alrae@imgtec.com> -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/target-mips/kvm.c b/target-mips/kvm.c index 49e71b3791b7..2ec7a6588568 100644 --- a/target-mips/kvm.c +++ b/target-mips/kvm.c @@ -87,7 +87,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)); } @@ -112,7 +111,6 @@ void kvm_arch_pre_run(CPUState *cs, struct kvm_run *run) void kvm_arch_post_run(CPUState *cs, struct kvm_run *run) { - DPRINTF("%s\n", __func__); } int kvm_arch_process_async_events(CPUState *cs)
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> Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Leon Alrae <leon.alrae@imgtec.com> Cc: Aurelien Jarno <aurelien@aurel32.net> --- target-mips/kvm.c | 2 -- 1 file changed, 2 deletions(-)