diff mbox series

[v7,03/27] mttcg: Add missing tb_lock/unlock() in cpu_exec_step()

Message ID 20170119170507.16185-4-alex.bennee@linaro.org
State Superseded
Headers show
Series Remaining MTTCG Base patches and ARM enablement | expand

Commit Message

Alex Bennée Jan. 19, 2017, 5:04 p.m. UTC
From: Pranith Kumar <bobby.prani@gmail.com>


The recent patch enabling lock assertions uncovered the missing lock
acquisition in cpu_exec_step(). This patch adds them.

CC: Richard Henderson <rth@twiddle.net>
CC: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Pranith Kumar <bobby.prani@gmail.com>

---
 cpu-exec.c | 4 ++++
 1 file changed, 4 insertions(+)

-- 
2.11.0

Comments

Richard Henderson Jan. 23, 2017, 6:57 p.m. UTC | #1
On 01/19/2017 09:04 AM, Alex Bennée wrote:
> From: Pranith Kumar <bobby.prani@gmail.com>

> 

> The recent patch enabling lock assertions uncovered the missing lock

> acquisition in cpu_exec_step(). This patch adds them.

> 

> CC: Richard Henderson <rth@twiddle.net>

> CC: Alex Bennée <alex.bennee@linaro.org>

> Signed-off-by: Pranith Kumar <bobby.prani@gmail.com>

> ---

>  cpu-exec.c | 4 ++++

>  1 file changed, 4 insertions(+)



Reviewed-by: Richard Henderson <rth@twiddle.net>



r~
diff mbox series

Patch

diff --git a/cpu-exec.c b/cpu-exec.c
index 4188fed3c6..1b8685dc21 100644
--- a/cpu-exec.c
+++ b/cpu-exec.c
@@ -233,14 +233,18 @@  static void cpu_exec_step(CPUState *cpu)
     uint32_t flags;
 
     cpu_get_tb_cpu_state(env, &pc, &cs_base, &flags);
+    tb_lock();
     tb = tb_gen_code(cpu, pc, cs_base, flags,
                      1 | CF_NOCACHE | CF_IGNORE_ICOUNT);
     tb->orig_tb = NULL;
+    tb_unlock();
     /* execute the generated code */
     trace_exec_tb_nocache(tb, pc);
     cpu_tb_exec(cpu, tb);
+    tb_lock();
     tb_phys_invalidate(tb, -1);
     tb_free(tb);
+    tb_unlock();
 }
 
 void cpu_exec_step_atomic(CPUState *cpu)