Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b99dda15 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mm/vmalloc.c: increase vm area range in __vmalloc_node"

parents 9fcb8d05 59782099
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -2500,8 +2500,13 @@ static void *__vmalloc_node(unsigned long size, unsigned long align,
			    gfp_t gfp_mask, pgprot_t prot,
			    int node, const void *caller)
{
#ifdef CONFIG_ENABLE_VMALLOC_SAVING
	return __vmalloc_node_range(size, align, PAGE_OFFSET, VMALLOC_END,
				gfp_mask, prot, 0, node, caller);
#else
	return __vmalloc_node_range(size, align, VMALLOC_START, VMALLOC_END,
				gfp_mask, prot, 0, node, caller);
#endif
}

void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot)