All architectures that implements virt_to_pte_phys() (s390x, x86, arm and arm64) return a physical address from the function. Teach vmalloc to treat it as such, instead of confusing the return value with a page table entry. Changing things the other way around (having the function return a page table entry instead) is not feasible, because it is possible for an architecture to use the upper bits of the table entry to store metadata about the page. Cc: Paolo Bonzini <pbonzini@xxxxxxxxxx> Cc: Thomas Huth <thuth@xxxxxxxxxx> Cc: Andrew Jones <andrew.jones@xxxxxxxxx> Cc: Laurent Vivier <lvivier@xxxxxxxxxx> Cc: Janosch Frank <frankja@xxxxxxxxxxxxx> Cc: Claudio Imbrenda <imbrenda@xxxxxxxxxxxxx> Signed-off-by: Alexandru Elisei <alexandru.elisei@xxxxxxx> --- lib/vmalloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vmalloc.c b/lib/vmalloc.c index 572682576cc3..0696b5da8190 100644 --- a/lib/vmalloc.c +++ b/lib/vmalloc.c @@ -169,7 +169,7 @@ static void vm_free(void *mem) /* the pointer is not page-aligned, it was a single-page allocation */ if (!IS_ALIGNED((uintptr_t)mem, PAGE_SIZE)) { assert(GET_MAGIC(mem) == VM_MAGIC); - page = virt_to_pte_phys(page_root, mem) & PAGE_MASK; + page = virt_to_pte_phys(page_root, mem); assert(page); free_page(phys_to_virt(page)); return; @@ -183,7 +183,7 @@ static void vm_free(void *mem) /* free all the pages including the metadata page */ ptr = (uintptr_t)m & PAGE_MASK; for (i = 0 ; i < m->npages + 1; i++, ptr += PAGE_SIZE) { - page = virt_to_pte_phys(page_root, (void *)ptr) & PAGE_MASK; + page = virt_to_pte_phys(page_root, (void *)ptr); assert(page); free_page(phys_to_virt(page)); } -- 2.37.0 _______________________________________________ kvmarm mailing list kvmarm@xxxxxxxxxxxxxxxxxxxxx https://lists.cs.columbia.edu/mailman/listinfo/kvmarm