Commit 3a13f4fe authored by Paolo Bonzini's avatar Paolo Bonzini

KVM: MMU: change handle_abnormal_pfn() arguments to kvm_page_fault

Pass struct kvm_page_fault to handle_abnormal_pfn() instead of
extracting the arguments from the struct.
Suggested-by: default avatarIsaku Yamahata <isaku.yamahata@intel.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 3647cd04
...@@ -3060,18 +3060,19 @@ static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, kvm_pfn_t pfn) ...@@ -3060,18 +3060,19 @@ static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, kvm_pfn_t pfn)
return -EFAULT; return -EFAULT;
} }
static bool handle_abnormal_pfn(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn, static bool handle_abnormal_pfn(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault,
kvm_pfn_t pfn, unsigned int access, unsigned int access, int *ret_val)
int *ret_val)
{ {
/* The pfn is invalid, report the error! */ /* The pfn is invalid, report the error! */
if (unlikely(is_error_pfn(pfn))) { if (unlikely(is_error_pfn(fault->pfn))) {
*ret_val = kvm_handle_bad_page(vcpu, gfn, pfn); *ret_val = kvm_handle_bad_page(vcpu, fault->gfn, fault->pfn);
return true; return true;
} }
if (unlikely(is_noslot_pfn(pfn))) { if (unlikely(is_noslot_pfn(fault->pfn))) {
vcpu_cache_mmio_info(vcpu, gva, gfn, gva_t gva = fault->is_tdp ? 0 : fault->addr;
vcpu_cache_mmio_info(vcpu, gva, fault->gfn,
access & shadow_mmio_access_mask); access & shadow_mmio_access_mask);
/* /*
* If MMIO caching is disabled, emulate immediately without * If MMIO caching is disabled, emulate immediately without
...@@ -3975,8 +3976,7 @@ static int direct_page_fault(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault ...@@ -3975,8 +3976,7 @@ static int direct_page_fault(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault
if (kvm_faultin_pfn(vcpu, fault, &r)) if (kvm_faultin_pfn(vcpu, fault, &r))
return r; return r;
if (handle_abnormal_pfn(vcpu, fault->is_tdp ? 0 : gpa, if (handle_abnormal_pfn(vcpu, fault, ACC_ALL, &r))
fault->gfn, fault->pfn, ACC_ALL, &r))
return r; return r;
r = RET_PF_RETRY; r = RET_PF_RETRY;
......
...@@ -893,7 +893,7 @@ static int FNAME(page_fault)(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault ...@@ -893,7 +893,7 @@ static int FNAME(page_fault)(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault
if (kvm_faultin_pfn(vcpu, fault, &r)) if (kvm_faultin_pfn(vcpu, fault, &r))
return r; return r;
if (handle_abnormal_pfn(vcpu, addr, fault->gfn, fault->pfn, walker.pte_access, &r)) if (handle_abnormal_pfn(vcpu, fault, walker.pte_access, &r))
return r; return r;
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment