aboutsummaryrefslogtreecommitdiff
path: root/target-ppc
diff options
context:
space:
mode:
authorEdgar E. Iglesias <edgar.iglesias@gmail.com>2010-09-11 14:29:07 +0200
committerEdgar E. Iglesias <edgar.iglesias@gmail.com>2010-09-11 14:29:07 +0200
commit24e0e38b83616ee7b540a270d8c4f24edf94f802 (patch)
tree7fabce4cb6dd1bfb9bce17e4fb590efeb71f4a74 /target-ppc
parent2184d75b4a6a253e8b1e002b3dbcc85c20ba6041 (diff)
powerpc: Avoid TLB related log spamming
Invalid TLB entries are normal and should not spam the log. Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Diffstat (limited to 'target-ppc')
-rw-r--r--target-ppc/helper.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/target-ppc/helper.c b/target-ppc/helper.c
index d342b09c8e..a7ec1f458d 100644
--- a/target-ppc/helper.c
+++ b/target-ppc/helper.c
@@ -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);