mirror of https://gitee.com/openkylin/linux.git
KVM: Fix order passed to iommu_unmap
This is obviously a left-over from the the old interface taking the size. Apparently a mostly harmless issue with the current iommu_unmap implementation. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Acked-by: Joerg Roedel <joerg.roedel@amd.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
69325a1225
commit
05b782ab95
|
@ -271,7 +271,7 @@ static void kvm_iommu_put_pages(struct kvm *kvm,
|
||||||
pfn = phys >> PAGE_SHIFT;
|
pfn = phys >> PAGE_SHIFT;
|
||||||
|
|
||||||
/* Unmap address from IO address space */
|
/* Unmap address from IO address space */
|
||||||
order = iommu_unmap(domain, gfn_to_gpa(gfn), PAGE_SIZE);
|
order = iommu_unmap(domain, gfn_to_gpa(gfn), 0);
|
||||||
unmap_pages = 1ULL << order;
|
unmap_pages = 1ULL << order;
|
||||||
|
|
||||||
/* Unpin all pages we just unmapped to not leak any memory */
|
/* Unpin all pages we just unmapped to not leak any memory */
|
||||||
|
|
Loading…
Reference in New Issue