arm64: define __alloc_zeroed_user_highpage
authorglider@google.com <glider@google.com>
Thu, 12 Mar 2020 15:59:20 +0000 (16:59 +0100)
committerCatalin Marinas <catalin.marinas@arm.com>
Tue, 17 Mar 2020 18:36:57 +0000 (18:36 +0000)
commitc17a290f7e7e59d24b4507736b7b40b0eb5f8f1f
treef140da9800e59eaca827dfd79efba4c1dc65b712
parentd22b115cbfbb7e4a938f9eb6ea77da9ecac3df5a
arm64: define __alloc_zeroed_user_highpage

When running the kernel with init_on_alloc=1, calling the default
implementation of __alloc_zeroed_user_highpage() from include/linux/highmem.h
leads to double-initialization of the allocated page (first by the page
allocator, then by clear_user_page().
Calling alloc_page_vma() with __GFP_ZERO, similarly to e.g. x86, seems
to be enough to ensure the user page is zeroed only once.

Signed-off-by: Alexander Potapenko <glider@google.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/include/asm/page.h