diff options
Diffstat (limited to 'target/i386')
| -rw-r--r-- | target/i386/helper.c | 2 | ||||
| -rw-r--r-- | target/i386/svm_helper.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/i386/helper.c b/target/i386/helper.c index 9fba146b7f..e695f8ba7a 100644 --- a/target/i386/helper.c +++ b/target/i386/helper.c @@ -991,7 +991,7 @@ void cpu_report_tpr_access(CPUX86State *env, TPRAccess access) cpu_interrupt(cs, CPU_INTERRUPT_TPR); } else if (tcg_enabled()) { - cpu_restore_state(cs, cs->mem_io_pc); + cpu_restore_state(cs, cs->mem_io_pc, false); apic_handle_tpr_access_report(cpu->apic_state, env->eip, access); } diff --git a/target/i386/svm_helper.c b/target/i386/svm_helper.c index 303106981c..350492359c 100644 --- a/target/i386/svm_helper.c +++ b/target/i386/svm_helper.c @@ -584,7 +584,7 @@ void cpu_vmexit(CPUX86State *env, uint32_t exit_code, uint64_t exit_info_1, { CPUState *cs = CPU(x86_env_get_cpu(env)); - cpu_restore_state(cs, retaddr); + cpu_restore_state(cs, retaddr, true); qemu_log_mask(CPU_LOG_TB_IN_ASM, "vmexit(%08x, %016" PRIx64 ", %016" PRIx64 ", " TARGET_FMT_lx ")!\n", |