diff options
author | Avi Kivity <avi@qumranet.com> | 2007-11-25 07:04:58 -0500 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-01-30 10:53:18 -0500 |
commit | c3c91fee5195ba5176a6da5ddc2a2822243eb79f (patch) | |
tree | 1fcccd77e5705d5f885bbb24ecb08bd93cf71c63 /drivers/kvm/mmu.c | |
parent | 298101da2f507c13eaf179ee4507a7c0fe3e7b06 (diff) |
KVM: Replace page fault injection by the generalized exception queue
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/mmu.c')
-rw-r--r-- | drivers/kvm/mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/kvm/mmu.c b/drivers/kvm/mmu.c index 9b9d1b6eb2f8..62a74151f847 100644 --- a/drivers/kvm/mmu.c +++ b/drivers/kvm/mmu.c | |||
@@ -1081,7 +1081,7 @@ static void inject_page_fault(struct kvm_vcpu *vcpu, | |||
1081 | u64 addr, | 1081 | u64 addr, |
1082 | u32 err_code) | 1082 | u32 err_code) |
1083 | { | 1083 | { |
1084 | kvm_x86_ops->inject_page_fault(vcpu, addr, err_code); | 1084 | kvm_inject_page_fault(vcpu, addr, err_code); |
1085 | } | 1085 | } |
1086 | 1086 | ||
1087 | static void paging_free(struct kvm_vcpu *vcpu) | 1087 | static void paging_free(struct kvm_vcpu *vcpu) |