qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: peter.maydell@linaro.org
Cc: groug@kaod.org, qemu-ppc@nongnu.org, qemu-devel@nongnu.org,
	David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PULL 1/7] target/ppc: Initialize lazy_tlb_flush correctly
Date: Tue, 10 Apr 2018 22:52:27 +1000	[thread overview]
Message-ID: <20180410125233.31618-2-david@gibson.dropbear.id.au> (raw)
In-Reply-To: <20180410125233.31618-1-david@gibson.dropbear.id.au>

ppc_tr_init_disas_context() correctly sets lazy_tlb_flush to true on
certain CPU models.  However, it leaves it uninitialized, instead of
setting it to false on all others.

It wasn't caught before now because we didn't have examples in the tests
that exercised this path.  However it can now be caught using clang's
undefined behaviour sanitizer and the sam460ex board.

Suggested-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Greg Kurz <groug@kaod.org>
---
 target/ppc/translate.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/target/ppc/translate.c b/target/ppc/translate.c
index 218665b408..3457d29f8e 100644
--- a/target/ppc/translate.c
+++ b/target/ppc/translate.c
@@ -7237,10 +7237,9 @@ static int ppc_tr_init_disas_context(DisasContextBase *dcbase,
     ctx->sf_mode = msr_is_64bit(env, env->msr);
     ctx->has_cfar = !!(env->flags & POWERPC_FLAG_CFAR);
 #endif
-    if (env->mmu_model == POWERPC_MMU_32B ||
-        env->mmu_model == POWERPC_MMU_601 ||
-        (env->mmu_model & POWERPC_MMU_64B))
-            ctx->lazy_tlb_flush = true;
+    ctx->lazy_tlb_flush = env->mmu_model == POWERPC_MMU_32B
+        || env->mmu_model == POWERPC_MMU_601
+        || (env->mmu_model & POWERPC_MMU_64B);
 
     ctx->fpu_enabled = !!msr_fp;
     if ((env->flags & POWERPC_FLAG_SPE) && msr_spe)
-- 
2.14.3

  reply	other threads:[~2018-04-10 12:52 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-10 12:52 [Qemu-devel] [PULL 0/7] ppc-for-2.12 queue 20180410 David Gibson
2018-04-10 12:52 ` David Gibson [this message]
2018-04-10 12:52 ` [Qemu-devel] [PULL 2/7] hw/misc/macio: Fix crash when listing device properties of macio device David Gibson
2018-04-10 12:52 ` [Qemu-devel] [PULL 3/7] target/ppc: Fix backwards migration of msr_mask David Gibson
2018-04-10 12:52 ` [Qemu-devel] [PULL 4/7] spapr: Initialize reserved areas list in FDT in H_CAS handler David Gibson
2018-04-10 12:52 ` [Qemu-devel] [PULL 5/7] tests/boot-serial: Test the sam460ex board David Gibson
2018-04-10 12:52 ` [Qemu-devel] [PULL 6/7] sam460ex: Fix timer frequency and clock multipliers David Gibson
2018-04-10 12:52 ` [Qemu-devel] [PULL 7/7] roms/u-boot-sam460ex: Change to qemu git mirror and update David Gibson
2018-04-10 21:16 ` [Qemu-devel] [PULL 0/7] ppc-for-2.12 queue 20180410 Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180410125233.31618-2-david@gibson.dropbear.id.au \
    --to=david@gibson.dropbear.id.au \
    --cc=groug@kaod.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).