mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 11:23:43 +08:00
kvm: set cpu_single_env around KVM_RUN ioctl
Zero cpu_single_env before leaving global lock protection, and restore on return. Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
618a568da4
commit
273faf1b6d
@ -838,9 +838,11 @@ int kvm_cpu_exec(CPUState *env)
|
||||
}
|
||||
|
||||
kvm_arch_pre_run(env, run);
|
||||
cpu_single_env = NULL;
|
||||
qemu_mutex_unlock_iothread();
|
||||
ret = kvm_vcpu_ioctl(env, KVM_RUN, 0);
|
||||
qemu_mutex_lock_iothread();
|
||||
cpu_single_env = env;
|
||||
kvm_arch_post_run(env, run);
|
||||
|
||||
if (ret == -EINTR || ret == -EAGAIN) {
|
||||
|
Loading…
Reference in New Issue
Block a user