mirror of
https://github.com/torvalds/linux.git
synced 2025-04-12 06:49:52 +00:00
KVM: LoongArch: Use kvm_faultin_pfn() to map pfns into the guest
Convert LoongArch to kvm_faultin_pfn()+kvm_release_faultin_page(), which are new APIs to consolidate arch code and provide consistent behavior across all KVM architectures. Signed-off-by: Sean Christopherson <seanjc@google.com> Tested-by: Dmitry Osipenko <dmitry.osipenko@collabora.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-ID: <20241010182427.1434605-69-seanjc@google.com>
This commit is contained in:
parent
35b80f7b49
commit
14d02b7ff9
@ -780,6 +780,7 @@ static int kvm_map_page(struct kvm_vcpu *vcpu, unsigned long gpa, bool write)
|
||||
struct kvm *kvm = vcpu->kvm;
|
||||
struct kvm_memory_slot *memslot;
|
||||
struct kvm_mmu_memory_cache *memcache = &vcpu->arch.mmu_page_cache;
|
||||
struct page *page;
|
||||
|
||||
/* Try the fast path to handle old / clean pages */
|
||||
srcu_idx = srcu_read_lock(&kvm->srcu);
|
||||
@ -807,7 +808,7 @@ retry:
|
||||
mmu_seq = kvm->mmu_invalidate_seq;
|
||||
/*
|
||||
* Ensure the read of mmu_invalidate_seq isn't reordered with PTE reads in
|
||||
* gfn_to_pfn_prot() (which calls get_user_pages()), so that we don't
|
||||
* kvm_faultin_pfn() (which calls get_user_pages()), so that we don't
|
||||
* risk the page we get a reference to getting unmapped before we have a
|
||||
* chance to grab the mmu_lock without mmu_invalidate_retry() noticing.
|
||||
*
|
||||
@ -819,7 +820,7 @@ retry:
|
||||
smp_rmb();
|
||||
|
||||
/* Slow path - ask KVM core whether we can access this GPA */
|
||||
pfn = gfn_to_pfn_prot(kvm, gfn, write, &writeable);
|
||||
pfn = kvm_faultin_pfn(vcpu, gfn, write, &writeable, &page);
|
||||
if (is_error_noslot_pfn(pfn)) {
|
||||
err = -EFAULT;
|
||||
goto out;
|
||||
@ -831,10 +832,10 @@ retry:
|
||||
/*
|
||||
* This can happen when mappings are changed asynchronously, but
|
||||
* also synchronously if a COW is triggered by
|
||||
* gfn_to_pfn_prot().
|
||||
* kvm_faultin_pfn().
|
||||
*/
|
||||
spin_unlock(&kvm->mmu_lock);
|
||||
kvm_release_pfn_clean(pfn);
|
||||
kvm_release_page_unused(page);
|
||||
if (retry_no > 100) {
|
||||
retry_no = 0;
|
||||
schedule();
|
||||
@ -900,10 +901,7 @@ retry:
|
||||
++kvm->stat.pages;
|
||||
kvm_set_pte(ptep, new_pte);
|
||||
|
||||
if (writeable)
|
||||
kvm_set_pfn_dirty(pfn);
|
||||
kvm_release_pfn_clean(pfn);
|
||||
|
||||
kvm_release_faultin_page(kvm, page, false, writeable);
|
||||
spin_unlock(&kvm->mmu_lock);
|
||||
|
||||
if (prot_bits & _PAGE_DIRTY)
|
||||
|
Loading…
x
Reference in New Issue
Block a user