qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 4/4] ppc: remove excessive logging


From: Joakim Tjernlund
Subject: [Qemu-devel] [PATCH 4/4] ppc: remove excessive logging
Date: Fri, 11 Jul 2014 17:18:04 +0200

ppc logs every type of Invalid instruction. This generates a lot
of garbage on console when sshd/ssh_keygen executes as
they try various insn to optimize its performance.
The invalid operation log is still there so an unknown insn
will still be logged.

Signed-off-by: Joakim Tjernlund <address@hidden>
---
 linux-user/main.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/linux-user/main.c b/linux-user/main.c
index b453a39..71a33c7 100644
--- a/linux-user/main.c
+++ b/linux-user/main.c
@@ -1698,7 +1698,6 @@ void cpu_loop(CPUPPCState *env)
                 }
                 break;
             case POWERPC_EXCP_INVAL:
-                EXCP_DUMP(env, "Invalid instruction\n");
                 info.si_signo = TARGET_SIGILL;
                 info.si_errno = 0;
                 switch (env->error_code & 0xF) {
-- 
1.8.5.5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]