summaryrefslogtreecommitdiff
path: root/arch/x86/kvm/emulate.c
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2011-04-20 15:43:05 +0300
committerAvi Kivity <avi@redhat.com>2011-05-22 08:39:17 -0400
commit6c3287f7c5050076b554145f11bdba058de287d1 (patch)
treea2acca73938e6937cbad6cc34bd8586e91973030 /arch/x86/kvm/emulate.c
parent3cb16fe78ce91991a876c74fc5dc99419b737b7a (diff)
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 5d774e91388..210df51b76a 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 */