From f2d8b4a3b3bf67996abddb1611a590fe61ec60a9 Mon Sep 17 00:00:00 2001 From: Panchajanya1999 Date: Fri, 20 May 2022 16:30:46 +0300 Subject: [PATCH] binder_alloc: Avoid page memory allocation in high memory In binder, using GFP_HIGHMEM will result in the allocated memory not to be mapped in the kernel's virtual address space. This prevents the kernel from being capable of directly referring it. Change-Id: I952dbc8ae205e47fa00ddf186ef306903f623367 Signed-off-by: Panchajanya1999 Signed-off-by: Jebaitedneko --- drivers/android/binder_alloc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/android/binder_alloc.c b/drivers/android/binder_alloc.c index 0da418035..64aa4fd6b 100755 --- a/drivers/android/binder_alloc.c +++ b/drivers/android/binder_alloc.c @@ -256,7 +256,6 @@ static int binder_update_page_range(struct binder_alloc *alloc, int allocate, trace_binder_alloc_page_start(alloc, index); page->page_ptr = alloc_page(GFP_KERNEL | - __GFP_HIGHMEM | __GFP_ZERO); if (!page->page_ptr) { pr_err("%d: binder_alloc_buf failed for page at %pK\n",