Message ID | 4B18018D.1060305@siemens.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/target-i386/machine.c b/target-i386/machine.c index 6bd447f..9ac477b 100644 --- a/target-i386/machine.c +++ b/target-i386/machine.c @@ -366,7 +366,15 @@ static int cpu_post_load(void *opaque, int version_id) hw_breakpoint_insert(env, i); tlb_flush(env, 1); - kvm_load_mpstate(env); + + if (kvm_enabled()) { + /* when in-kernel irqchip is used, env->halted causes deadlock + because no userspace IRQs will ever clear this flag */ + env->halted = 0; + + kvm_load_tsc(env); + kvm_load_mpstate(env); + } return 0; }