提交 7511c3ed 编写于 作者: J Jerome Marchand 提交者: Linus Torvalds

mm: vmalloc: don't remove inexistent guard hole in remove_vm_area()

Commit 71394fe5 ("mm: vmalloc: add flag preventing guard hole
allocation") missed a spot.  Currently remove_vm_area() decreases vm->size
to "remove" the guard hole page, even when it isn't present.  All but one
users just free the vm_struct rigth away and never access vm->size anyway.

Don't touch the size in remove_vm_area() and have __vunmap() use the
proper get_vm_area_size() helper.
Signed-off-by: NJerome Marchand <jmarchan@redhat.com>
Acked-by: NAndrey Ryabinin <aryabinin@virtuozzo.com>
Acked-by: NDavid Rientjes <rientjes@google.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 429d4862
...@@ -1443,7 +1443,6 @@ struct vm_struct *remove_vm_area(const void *addr) ...@@ -1443,7 +1443,6 @@ struct vm_struct *remove_vm_area(const void *addr)
vmap_debug_free_range(va->va_start, va->va_end); vmap_debug_free_range(va->va_start, va->va_end);
kasan_free_shadow(vm); kasan_free_shadow(vm);
free_unmap_vmap_area(va); free_unmap_vmap_area(va);
vm->size -= PAGE_SIZE;
return vm; return vm;
} }
...@@ -1468,8 +1467,8 @@ static void __vunmap(const void *addr, int deallocate_pages) ...@@ -1468,8 +1467,8 @@ static void __vunmap(const void *addr, int deallocate_pages)
return; return;
} }
debug_check_no_locks_freed(addr, area->size); debug_check_no_locks_freed(addr, get_vm_area_size(area));
debug_check_no_obj_freed(addr, area->size); debug_check_no_obj_freed(addr, get_vm_area_size(area));
if (deallocate_pages) { if (deallocate_pages) {
int i; int i;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册