diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2013-09-18 14:54:37 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-10-29 21:24:14 +0100 |
commit | 761845f0f68cf6eba9cad0a58d977b89f8d4486f (patch) | |
tree | 7677f161c0303f3706680a6be6ea85df776338c1 /arch/mips | |
parent | cffe00c037cdaa14d420bb1dbc69b4dfb5f1bc23 (diff) | |
download | op-kernel-dev-761845f0f68cf6eba9cad0a58d977b89f8d4486f.zip op-kernel-dev-761845f0f68cf6eba9cad0a58d977b89f8d4486f.tar.gz |
MIPS: Use NUMA_NO_NODE instead of -1 for node ID.
Original patch by Jianguo Wu <wujianguo@huawei.com>.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/module.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/kernel/module.c b/arch/mips/kernel/module.c index 977a623..2a52568 100644 --- a/arch/mips/kernel/module.c +++ b/arch/mips/kernel/module.c @@ -23,6 +23,7 @@ #include <linux/moduleloader.h> #include <linux/elf.h> #include <linux/mm.h> +#include <linux/numa.h> #include <linux/vmalloc.h> #include <linux/slab.h> #include <linux/fs.h> @@ -46,7 +47,7 @@ static DEFINE_SPINLOCK(dbe_lock); void *module_alloc(unsigned long size) { return __vmalloc_node_range(size, 1, MODULE_START, MODULE_END, - GFP_KERNEL, PAGE_KERNEL, -1, + GFP_KERNEL, PAGE_KERNEL, NUMA_NO_NODE, __builtin_return_address(0)); } #endif |