From: Max Filippov Date: Mon, 14 Jan 2019 08:57:24 +0000 (-0800) Subject: target/xtensa: add qemu_cpu_kick to xtensa_runstall X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6230dac89b19d50567c44434b37a4c48a84ec200;p=qemu.git target/xtensa: add qemu_cpu_kick to xtensa_runstall When xtensa_runstall is called to unstall a core it needs to kick it after clearing runstall flag, otherwise the core doesn't start immediately. There's also no point in clearing CPU_INTERRUPT_HALT, drop it. Signed-off-by: Max Filippov --- diff --git a/target/xtensa/helper.c b/target/xtensa/helper.c index 323c47a7fb..bcf2f20d48 100644 --- a/target/xtensa/helper.c +++ b/target/xtensa/helper.c @@ -252,7 +252,7 @@ void xtensa_runstall(CPUXtensaState *env, bool runstall) if (runstall) { cpu_interrupt(cpu, CPU_INTERRUPT_HALT); } else { - cpu_reset_interrupt(cpu, CPU_INTERRUPT_HALT); + qemu_cpu_kick(cpu); } } #endif