Commit b8a5d551 authored by Paolo Bonzini's avatar Paolo Bonzini

KVM: MMU: change page_fault_handle_page_track() arguments to kvm_page_fault

Add fields to struct kvm_page_fault corresponding to the arguments
of page_fault_handle_page_track().  The fields are initialized in the
callers, and page_fault_handle_page_track() receives a struct
kvm_page_fault instead of having to extract the arguments out of it.
Suggested-by: default avatarIsaku Yamahata <isaku.yamahata@intel.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 4326e57e
...@@ -132,6 +132,9 @@ struct kvm_page_fault { ...@@ -132,6 +132,9 @@ struct kvm_page_fault {
/* Input to FNAME(fetch), __direct_map and kvm_tdp_mmu_map. */ /* Input to FNAME(fetch), __direct_map and kvm_tdp_mmu_map. */
u8 max_level; u8 max_level;
/* Shifted addr, or result of guest page table walk if addr is a gva. */
gfn_t gfn;
}; };
int kvm_tdp_page_fault(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault); int kvm_tdp_page_fault(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault);
......
...@@ -3846,20 +3846,19 @@ static int handle_mmio_page_fault(struct kvm_vcpu *vcpu, u64 addr, bool direct) ...@@ -3846,20 +3846,19 @@ static int handle_mmio_page_fault(struct kvm_vcpu *vcpu, u64 addr, bool direct)
} }
static bool page_fault_handle_page_track(struct kvm_vcpu *vcpu, static bool page_fault_handle_page_track(struct kvm_vcpu *vcpu,
u32 error_code, gfn_t gfn) struct kvm_page_fault *fault)
{ {
if (unlikely(error_code & PFERR_RSVD_MASK)) if (unlikely(fault->rsvd))
return false; return false;
if (!(error_code & PFERR_PRESENT_MASK) || if (!fault->present || !fault->write)
!(error_code & PFERR_WRITE_MASK))
return false; return false;
/* /*
* guest is writing the page which is write tracked which can * guest is writing the page which is write tracked which can
* not be fixed by page fault handler. * not be fixed by page fault handler.
*/ */
if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE)) if (kvm_page_track_is_active(vcpu, fault->gfn, KVM_PAGE_TRACK_WRITE))
return true; return true;
return false; return false;
...@@ -3956,13 +3955,13 @@ static int direct_page_fault(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault ...@@ -3956,13 +3955,13 @@ static int direct_page_fault(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault
bool is_tdp_mmu_fault = is_tdp_mmu(vcpu->arch.mmu); bool is_tdp_mmu_fault = is_tdp_mmu(vcpu->arch.mmu);
bool map_writable; bool map_writable;
gfn_t gfn = gpa >> PAGE_SHIFT;
unsigned long mmu_seq; unsigned long mmu_seq;
kvm_pfn_t pfn; kvm_pfn_t pfn;
hva_t hva; hva_t hva;
int r; int r;
if (page_fault_handle_page_track(vcpu, error_code, gfn)) fault->gfn = gpa >> PAGE_SHIFT;
if (page_fault_handle_page_track(vcpu, fault))
return RET_PF_EMULATE; return RET_PF_EMULATE;
r = fast_page_fault(vcpu, gpa, error_code); r = fast_page_fault(vcpu, gpa, error_code);
...@@ -3976,11 +3975,12 @@ static int direct_page_fault(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault ...@@ -3976,11 +3975,12 @@ static int direct_page_fault(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault
mmu_seq = vcpu->kvm->mmu_notifier_seq; mmu_seq = vcpu->kvm->mmu_notifier_seq;
smp_rmb(); smp_rmb();
if (kvm_faultin_pfn(vcpu, fault->prefault, gfn, gpa, &pfn, &hva, if (kvm_faultin_pfn(vcpu, fault->prefault, fault->gfn, gpa, &pfn, &hva,
fault->write, &map_writable, &r)) fault->write, &map_writable, &r))
return r; return r;
if (handle_abnormal_pfn(vcpu, fault->is_tdp ? 0 : gpa, gfn, pfn, ACC_ALL, &r)) if (handle_abnormal_pfn(vcpu, fault->is_tdp ? 0 : gpa,
fault->gfn, pfn, ACC_ALL, &r))
return r; return r;
r = RET_PF_RETRY; r = RET_PF_RETRY;
......
...@@ -869,7 +869,8 @@ static int FNAME(page_fault)(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault ...@@ -869,7 +869,8 @@ static int FNAME(page_fault)(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault
return RET_PF_RETRY; return RET_PF_RETRY;
} }
if (page_fault_handle_page_track(vcpu, error_code, walker.gfn)) { fault->gfn = walker.gfn;
if (page_fault_handle_page_track(vcpu, fault)) {
shadow_page_table_clear_flood(vcpu, addr); shadow_page_table_clear_flood(vcpu, addr);
return RET_PF_EMULATE; return RET_PF_EMULATE;
} }
...@@ -891,11 +892,11 @@ static int FNAME(page_fault)(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault ...@@ -891,11 +892,11 @@ static int FNAME(page_fault)(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault
mmu_seq = vcpu->kvm->mmu_notifier_seq; mmu_seq = vcpu->kvm->mmu_notifier_seq;
smp_rmb(); smp_rmb();
if (kvm_faultin_pfn(vcpu, fault->prefault, walker.gfn, addr, &pfn, &hva, if (kvm_faultin_pfn(vcpu, fault->prefault, fault->gfn, addr, &pfn, &hva,
fault->write, &map_writable, &r)) fault->write, &map_writable, &r))
return r; return r;
if (handle_abnormal_pfn(vcpu, addr, walker.gfn, pfn, walker.pte_access, &r)) if (handle_abnormal_pfn(vcpu, addr, fault->gfn, pfn, 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