diff options
author | Avi Kivity <avi@redhat.com> | 2011-04-20 08:43:05 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-05-22 08:39:17 -0400 |
commit | 6c3287f7c5050076b554145f11bdba058de287d1 (patch) | |
tree | a2acca73938e6937cbad6cc34bd8586e91973030 /arch/x86/kvm/emulate.c | |
parent | 3cb16fe78ce91991a876c74fc5dc99419b737b7a (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.c | 2 |
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: | |||
3913 | c->dst.type = OP_NONE; /* Disable writeback. */ | 3913 | c->dst.type = OP_NONE; /* Disable writeback. */ |
3914 | break; | 3914 | break; |
3915 | case 0xf4: /* hlt */ | 3915 | case 0xf4: /* hlt */ |
3916 | ctxt->vcpu->arch.halt_request = 1; | 3916 | ctxt->ops->halt(ctxt); |
3917 | break; | 3917 | break; |
3918 | case 0xf5: /* cmc */ | 3918 | case 0xf5: /* cmc */ |
3919 | /* complement carry flag from eflags reg */ | 3919 | /* complement carry flag from eflags reg */ |