]> git.proxmox.com Git - qemu.git/commitdiff
powerpc: Avoid TLB related log spamming
authorEdgar E. Iglesias <edgar.iglesias@gmail.com>
Sat, 11 Sep 2010 12:29:07 +0000 (14:29 +0200)
committerEdgar E. Iglesias <edgar.iglesias@gmail.com>
Sat, 11 Sep 2010 12:29:07 +0000 (14:29 +0200)
Invalid TLB entries are normal and should not spam the log.

Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
target-ppc/helper.c

index d342b09c8e21dd2fa92535cd6a46c806358404f2..a7ec1f458da2909cbc39e5dbbbb707cf994e71c2 100644 (file)
@@ -1050,7 +1050,6 @@ static inline int ppcemb_tlb_check(CPUState *env, ppcemb_tlb_t *tlb,
 
     /* Check valid flag */
     if (!(tlb->prot & PAGE_VALID)) {
-        qemu_log("%s: TLB %d not valid\n", __func__, i);
         return -1;
     }
     mask = ~(tlb->size - 1);