mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
KVM: Don't wrap schedule() with vcpu_put()/vcpu_load()
Preemption notifiers will do that for us automatically. Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
58988b07cf
commit
45ec431c52
@ -1689,9 +1689,7 @@ void kvm_vcpu_block(struct kvm_vcpu *vcpu)
|
||||
if (signal_pending(current))
|
||||
break;
|
||||
|
||||
vcpu_put(vcpu);
|
||||
schedule();
|
||||
vcpu_load(vcpu);
|
||||
}
|
||||
|
||||
finish_wait(&vcpu->wq, &wait);
|
||||
|
Loading…
Reference in New Issue
Block a user