Skip to content

Commit 81ab595

Browse files
ldu4paulusmack
authored andcommitted
KVM: PPC: Book3S HV: Rework secure mem slot dropping
When a secure memslot is dropped, all the pages backed in the secure device (aka really backed by secure memory by the Ultravisor) should be paged out to a normal page. Previously, this was achieved by triggering the page fault mechanism which is calling kvmppc_svm_page_out() on each pages. This can't work when hot unplugging a memory slot because the memory slot is flagged as invalid and gfn_to_pfn() is then not trying to access the page, so the page fault mechanism is not triggered. Since the final goal is to make a call to kvmppc_svm_page_out() it seems simpler to call directly instead of triggering such a mechanism. This way kvmppc_uvmem_drop_pages() can be called even when hot unplugging a memslot. Since kvmppc_uvmem_drop_pages() is already holding kvm->arch.uvmem_lock, the call to __kvmppc_svm_page_out() is made. As __kvmppc_svm_page_out needs the vma pointer to migrate the pages, the VMA is fetched in a lazy way, to not trigger find_vma() all the time. In addition, the mmap_sem is held in read mode during that time, not in write mode since the virual memory layout is not impacted, and kvm->arch.uvmem_lock prevents concurrent operation on the secure device. Reviewed-by: Bharata B Rao <[email protected]> Signed-off-by: Laurent Dufour <[email protected]> [modified check on the VMA in kvmppc_uvmem_drop_pages] Signed-off-by: Ram Pai <[email protected]> [modified the changelog description] Signed-off-by: Paul Mackerras <[email protected]>
1 parent f1b87ea commit 81ab595

File tree

1 file changed

+35
-17
lines changed

1 file changed

+35
-17
lines changed

arch/powerpc/kvm/book3s_hv_uvmem.c

Lines changed: 35 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -594,35 +594,53 @@ static inline int kvmppc_svm_page_out(struct vm_area_struct *vma,
594594
* fault on them, do fault time migration to replace the device PTEs in
595595
* QEMU page table with normal PTEs from newly allocated pages.
596596
*/
597-
void kvmppc_uvmem_drop_pages(const struct kvm_memory_slot *free,
597+
void kvmppc_uvmem_drop_pages(const struct kvm_memory_slot *slot,
598598
struct kvm *kvm, bool skip_page_out)
599599
{
600600
int i;
601601
struct kvmppc_uvmem_page_pvt *pvt;
602-
unsigned long pfn, uvmem_pfn;
603-
unsigned long gfn = free->base_gfn;
602+
struct page *uvmem_page;
603+
struct vm_area_struct *vma = NULL;
604+
unsigned long uvmem_pfn, gfn;
605+
unsigned long addr;
606+
607+
mmap_read_lock(kvm->mm);
608+
609+
addr = slot->userspace_addr;
604610

605-
for (i = free->npages; i; --i, ++gfn) {
606-
struct page *uvmem_page;
611+
gfn = slot->base_gfn;
612+
for (i = slot->npages; i; --i, ++gfn, addr += PAGE_SIZE) {
613+
614+
/* Fetch the VMA if addr is not in the latest fetched one */
615+
if (!vma || addr >= vma->vm_end) {
616+
vma = find_vma_intersection(kvm->mm, addr, addr+1);
617+
if (!vma) {
618+
pr_err("Can't find VMA for gfn:0x%lx\n", gfn);
619+
break;
620+
}
621+
}
607622

608623
mutex_lock(&kvm->arch.uvmem_lock);
609-
if (!kvmppc_gfn_is_uvmem_pfn(gfn, kvm, &uvmem_pfn)) {
624+
625+
if (kvmppc_gfn_is_uvmem_pfn(gfn, kvm, &uvmem_pfn)) {
626+
uvmem_page = pfn_to_page(uvmem_pfn);
627+
pvt = uvmem_page->zone_device_data;
628+
pvt->skip_page_out = skip_page_out;
629+
pvt->remove_gfn = true;
630+
631+
if (__kvmppc_svm_page_out(vma, addr, addr + PAGE_SIZE,
632+
PAGE_SHIFT, kvm, pvt->gpa))
633+
pr_err("Can't page out gpa:0x%lx addr:0x%lx\n",
634+
pvt->gpa, addr);
635+
} else {
636+
/* Remove the shared flag if any */
610637
kvmppc_gfn_remove(gfn, kvm);
611-
mutex_unlock(&kvm->arch.uvmem_lock);
612-
continue;
613638
}
614639

615-
uvmem_page = pfn_to_page(uvmem_pfn);
616-
pvt = uvmem_page->zone_device_data;
617-
pvt->skip_page_out = skip_page_out;
618-
pvt->remove_gfn = true;
619640
mutex_unlock(&kvm->arch.uvmem_lock);
620-
621-
pfn = gfn_to_pfn(kvm, gfn);
622-
if (is_error_noslot_pfn(pfn))
623-
continue;
624-
kvm_release_pfn_clean(pfn);
625641
}
642+
643+
mmap_read_unlock(kvm->mm);
626644
}
627645

628646
unsigned long kvmppc_h_svm_init_abort(struct kvm *kvm)

0 commit comments

Comments
 (0)