]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
accel/tcg: Set cflags_next_tb in cpu_common_initfn
authorRichard Henderson <richard.henderson@linaro.org>
Wed, 19 Oct 2022 10:33:28 +0000 (20:33 +1000)
committerRichard Henderson <richard.henderson@linaro.org>
Thu, 5 Jan 2023 19:41:28 +0000 (11:41 -0800)
While we initialize this value in cpu_common_reset, that
isn't called during startup, so set it as well in init.
This fixes -singlestep versus the very first TB.

Fixes: 04f5b647ed07 ("accel/tcg: Handle -singlestep in curr_cflags")
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
hw/core/cpu-common.c

index 78b5f350a000fb0a76d6f0c06b7f8765d1d886cf..b177e761f010c09c50a2fde22eabcc8f7906ca56 100644 (file)
@@ -235,6 +235,7 @@ static void cpu_common_initfn(Object *obj)
     /* the default value is changed by qemu_init_vcpu() for softmmu */
     cpu->nr_cores = 1;
     cpu->nr_threads = 1;
+    cpu->cflags_next_tb = -1;
 
     qemu_mutex_init(&cpu->work_mutex);
     QSIMPLEQ_INIT(&cpu->work_list);