diff options
Diffstat (limited to 'arch/sparc')
-rw-r--r-- | arch/sparc/include/uapi/asm/errno.h | 2 | ||||
-rw-r--r-- | arch/sparc/kernel/module.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc/include/uapi/asm/errno.h b/arch/sparc/include/uapi/asm/errno.h index c351aba997b7..20423e172853 100644 --- a/arch/sparc/include/uapi/asm/errno.h +++ b/arch/sparc/include/uapi/asm/errno.h | |||
@@ -40,7 +40,7 @@ | |||
40 | #define EPROCLIM 67 /* SUNOS: Too many processes */ | 40 | #define EPROCLIM 67 /* SUNOS: Too many processes */ |
41 | #define EUSERS 68 /* Too many users */ | 41 | #define EUSERS 68 /* Too many users */ |
42 | #define EDQUOT 69 /* Quota exceeded */ | 42 | #define EDQUOT 69 /* Quota exceeded */ |
43 | #define ESTALE 70 /* Stale NFS file handle */ | 43 | #define ESTALE 70 /* Stale file handle */ |
44 | #define EREMOTE 71 /* Object is remote */ | 44 | #define EREMOTE 71 /* Object is remote */ |
45 | #define ENOSTR 72 /* Device not a stream */ | 45 | #define ENOSTR 72 /* Device not a stream */ |
46 | #define ETIME 73 /* Timer expired */ | 46 | #define ETIME 73 /* Timer expired */ |
diff --git a/arch/sparc/kernel/module.c b/arch/sparc/kernel/module.c index 4435488ebe25..97655e0fd243 100644 --- a/arch/sparc/kernel/module.c +++ b/arch/sparc/kernel/module.c | |||
@@ -29,7 +29,7 @@ static void *module_map(unsigned long size) | |||
29 | if (PAGE_ALIGN(size) > MODULES_LEN) | 29 | if (PAGE_ALIGN(size) > MODULES_LEN) |
30 | return NULL; | 30 | return NULL; |
31 | return __vmalloc_node_range(size, 1, MODULES_VADDR, MODULES_END, | 31 | return __vmalloc_node_range(size, 1, MODULES_VADDR, MODULES_END, |
32 | GFP_KERNEL, PAGE_KERNEL, -1, | 32 | GFP_KERNEL, PAGE_KERNEL, NUMA_NO_NODE, |
33 | __builtin_return_address(0)); | 33 | __builtin_return_address(0)); |
34 | } | 34 | } |
35 | #else | 35 | #else |