Merge branch 'akpm' (patches from Andrew)
[sfrench/cifs-2.6.git] / kernel / module.c
index e8a198588f26eec9d13c7ecfd20993098075c760..0c6573b98c366244928e54cf2ec7fb14082e93d3 100644 (file)
@@ -2783,7 +2783,9 @@ static void dynamic_debug_remove(struct module *mod, struct _ddebug *debug)
 
 void * __weak module_alloc(unsigned long size)
 {
-       return vmalloc_exec(size);
+       return __vmalloc_node_range(size, 1, VMALLOC_START, VMALLOC_END,
+                       GFP_KERNEL, PAGE_KERNEL_EXEC, VM_FLUSH_RESET_PERMS,
+                       NUMA_NO_NODE, __func__);
 }
 
 bool __weak module_init_section(const char *name)