Commit 7b8e1c25af for qemu.org
commit 7b8e1c25af25ce88e08ae076ad8da7cbcaec3d55
Author: Mohamed Mediouni <mohamed@unpredictable.fr>
Date: Wed Apr 22 23:42:04 2026 +0200
whpx: i386: set apicbase value only on success
Signed-off-by: Mohamed Mediouni <mohamed@unpredictable.fr>
Link: https://lore.kernel.org/r/20260422214225.2242-17-mohamed@unpredictable.fr
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
diff --git a/target/i386/whpx/whpx-all.c b/target/i386/whpx/whpx-all.c
index b055644580..3426811c48 100644
--- a/target/i386/whpx/whpx-all.c
+++ b/target/i386/whpx/whpx-all.c
@@ -2086,8 +2086,9 @@ int whpx_vcpu_run(CPUState *cpu)
int msr_ret = cpu_set_apic_base(X86_CPU(cpu)->apic_state, val);
if (msr_ret < 0) {
x86_emul_raise_exception(&X86_CPU(cpu)->env, EXCP0D_GPF, 0);
+ } else {
+ whpx_set_reg(cpu, WHvX64RegisterApicBase, reg);
}
- whpx_set_reg(cpu, WHvX64RegisterApicBase, reg);
}
}