diff options
author | Avi Kivity <avi@redhat.com> | 2011-04-20 08:47:13 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-05-22 08:39:18 -0400 |
commit | d6aa10003b0cded5a538af0d198460e89dc2d6d2 (patch) | |
tree | 1a98dd6a65d5c9deaa83616b3a74fdcff5ca00fd /arch/x86/include/asm | |
parent | 6c3287f7c5050076b554145f11bdba058de287d1 (diff) |
KVM: x86 emulator: add ->fix_hypercall() callback
Artificial, but needed to remove direct calls to KVM.
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/include/asm')
-rw-r--r-- | arch/x86/include/asm/kvm_emulate.h | 1 | ||||
-rw-r--r-- | arch/x86/include/asm/kvm_host.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/include/asm/kvm_emulate.h b/arch/x86/include/asm/kvm_emulate.h index d30f1e9b7544..d30840ddd2f3 100644 --- a/arch/x86/include/asm/kvm_emulate.h +++ b/arch/x86/include/asm/kvm_emulate.h | |||
@@ -187,6 +187,7 @@ struct x86_emulate_ops { | |||
187 | int (*set_msr)(struct x86_emulate_ctxt *ctxt, u32 msr_index, u64 data); | 187 | int (*set_msr)(struct x86_emulate_ctxt *ctxt, u32 msr_index, u64 data); |
188 | int (*get_msr)(struct x86_emulate_ctxt *ctxt, u32 msr_index, u64 *pdata); | 188 | int (*get_msr)(struct x86_emulate_ctxt *ctxt, u32 msr_index, u64 *pdata); |
189 | void (*halt)(struct x86_emulate_ctxt *ctxt); | 189 | void (*halt)(struct x86_emulate_ctxt *ctxt); |
190 | int (*fix_hypercall)(struct x86_emulate_ctxt *ctxt); | ||
190 | void (*get_fpu)(struct x86_emulate_ctxt *ctxt); /* disables preempt */ | 191 | void (*get_fpu)(struct x86_emulate_ctxt *ctxt); /* disables preempt */ |
191 | void (*put_fpu)(struct x86_emulate_ctxt *ctxt); /* reenables preempt */ | 192 | void (*put_fpu)(struct x86_emulate_ctxt *ctxt); /* reenables preempt */ |
192 | int (*intercept)(struct x86_emulate_ctxt *ctxt, | 193 | int (*intercept)(struct x86_emulate_ctxt *ctxt, |
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index d957d0d06562..6cfc1ab2cdd6 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h | |||
@@ -752,8 +752,6 @@ gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva, | |||
752 | 752 | ||
753 | int kvm_emulate_hypercall(struct kvm_vcpu *vcpu); | 753 | int kvm_emulate_hypercall(struct kvm_vcpu *vcpu); |
754 | 754 | ||
755 | int kvm_fix_hypercall(struct kvm_vcpu *vcpu); | ||
756 | |||
757 | int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva, u32 error_code, | 755 | int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva, u32 error_code, |
758 | void *insn, int insn_len); | 756 | void *insn, int insn_len); |
759 | void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva); | 757 | void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva); |