]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - mm/nommu.c
bpf: adjust verifier heuristics
[karo-tx-linux.git] / mm / nommu.c
index 2d131b97a85169eb11716874b552dc4cef5b4115..fc184f597d59d9af942f8dc60229b999173fe22f 100644 (file)
@@ -237,12 +237,16 @@ void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot)
 }
 EXPORT_SYMBOL(__vmalloc);
 
+void *__vmalloc_node_flags(unsigned long size, int node, gfp_t flags)
+{
+       return __vmalloc(size, flags, PAGE_KERNEL);
+}
+
 void *vmalloc_user(unsigned long size)
 {
        void *ret;
 
-       ret = __vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO,
-                       PAGE_KERNEL);
+       ret = __vmalloc(size, GFP_KERNEL | __GFP_ZERO, PAGE_KERNEL);
        if (ret) {
                struct vm_area_struct *vma;