diff options
author | Avi Kivity <avi@qumranet.com> | 2007-06-05 15:53:05 +0300 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2007-07-16 12:05:46 +0300 |
commit | d3bef15f84f91c73a5515ad4c6a1749f8f63afcf (patch) | |
tree | 3349c121f16a5fe0e1c30d4370573c2a9ed88bb9 /drivers/kvm/svm.c | |
parent | ef9254df0b3aeba729e26a062803ee7d90437b5e (diff) | |
download | op-kernel-dev-d3bef15f84f91c73a5515ad4c6a1749f8f63afcf.zip op-kernel-dev-d3bef15f84f91c73a5515ad4c6a1749f8f63afcf.tar.gz |
KVM: Move duplicate halt handling code into kvm_main.c
Will soon have a thid user.
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/svm.c')
-rw-r--r-- | drivers/kvm/svm.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/kvm/svm.c b/drivers/kvm/svm.c index ec040e2..70f386e 100644 --- a/drivers/kvm/svm.c +++ b/drivers/kvm/svm.c @@ -1115,12 +1115,7 @@ static int halt_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) { vcpu->svm->next_rip = vcpu->svm->vmcb->save.rip + 1; skip_emulated_instruction(vcpu); - if (vcpu->irq_summary) - return 1; - - kvm_run->exit_reason = KVM_EXIT_HLT; - ++vcpu->stat.halt_exits; - return 0; + return kvm_emulate_halt(vcpu); } static int vmmcall_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) |