diff options
author | Avi Kivity <avi@redhat.com> | 2011-04-20 15:43:05 +0300 |
---|---|---|
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) | |
download | op-kernel-dev-6c3287f7c5050076b554145f11bdba058de287d1.zip op-kernel-dev-6c3287f7c5050076b554145f11bdba058de287d1.tar.gz |
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 5d774e9..210df51 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 */ |