diff options
Diffstat (limited to 'runtime/alloc.c')
-rw-r--r-- | runtime/alloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/alloc.c b/runtime/alloc.c index c2c3d010..99ae90ce 100644 --- a/runtime/alloc.c +++ b/runtime/alloc.c @@ -157,8 +157,7 @@ static void *__stp_valloc_percpu(size_t size, size_t align) for (i = 0; i < NR_CPUS; i++) { if (!cpu_possible(i)) continue; - pdata->ptrs[i] = vmalloc_node(size, GFP_KERNEL, - cpu_to_node(i)); + pdata->ptrs[i] = vmalloc_node(size, cpu_to_node(i)); if (!pdata->ptrs[i]) goto unwind_oom; |