diff options
Diffstat (limited to 'drivers/kvm/svm.c')
-rw-r--r-- | drivers/kvm/svm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/kvm/svm.c b/drivers/kvm/svm.c index 91c7f60ffd42..869b524dda6b 100644 --- a/drivers/kvm/svm.c +++ b/drivers/kvm/svm.c | |||
@@ -861,7 +861,7 @@ static int pf_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) | |||
861 | 861 | ||
862 | fault_address = vcpu->svm->vmcb->control.exit_info_2; | 862 | fault_address = vcpu->svm->vmcb->control.exit_info_2; |
863 | error_code = vcpu->svm->vmcb->control.exit_info_1; | 863 | error_code = vcpu->svm->vmcb->control.exit_info_1; |
864 | if (!vcpu->mmu.page_fault(vcpu, fault_address, error_code)) { | 864 | if (!kvm_mmu_page_fault(vcpu, fault_address, error_code)) { |
865 | spin_unlock(&vcpu->kvm->lock); | 865 | spin_unlock(&vcpu->kvm->lock); |
866 | return 1; | 866 | return 1; |
867 | } | 867 | } |