summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/emulate.c
diff options
context:
space:
mode:
authorAvi Kivity2011-04-20 14:43:05 +0200
committerAvi Kivity2011-05-22 14:39:17 +0200
commit6c3287f7c5050076b554145f11bdba058de287d1 (patch)
treea2acca73938e6937cbad6cc34bd8586e91973030 /arch/x86/kvm/emulate.c
parentKVM: x86 emulator: make emulate_invlpg() an emulator callback (diff)
downloadkernel-qcow2-linux-6c3287f7c5050076b554145f11bdba058de287d1.tar.gz
kernel-qcow2-linux-6c3287f7c5050076b554145f11bdba058de287d1.tar.xz
kernel-qcow2-linux-6c3287f7c5050076b554145f11bdba058de287d1.zip
KVM: x86 emulator: add new ->halt() callback
Instead of reaching into vcpu internals. Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/emulate.c')
-rw-r--r--arch/x86/kvm/emulate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index 5d774e91388e..210df51b76a4 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -3913,7 +3913,7 @@ special_insn:
c->dst.type = OP_NONE; /* Disable writeback. */
break;
case 0xf4: /* hlt */
- ctxt->vcpu->arch.halt_request = 1;
+ ctxt->ops->halt(ctxt);
break;
case 0xf5: /* cmc */
/* complement carry flag from eflags reg */