diff options
author | zijun_hu <zijun_hu@htc.com> | 2016-10-07 19:59:27 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-07 21:46:28 -0400 |
commit | 1d8bf926f8739bd35d054097907fef35d881e403 (patch) | |
tree | 52b11ecb43cb53737a43a4233e284e5f2af8fdb5 | |
parent | 2382705f22c1436a153800cf6051b08f0ea14838 (diff) |
mm/bootmem.c: replace kzalloc() by kzalloc_node()
In ___alloc_bootmem_node_nopanic(), replace kzalloc() by kzalloc_node()
in order to allocate memory within given node preferentially when slab
is available
Link: http://lkml.kernel.org/r/1f487f12-6af4-5e4f-a28c-1de2361cdcd8@zoho.com
Signed-off-by: zijun_hu <zijun_hu@htc.com>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | mm/bootmem.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/mm/bootmem.c b/mm/bootmem.c index 0aa7dda52402..a869f84f44d3 100644 --- a/mm/bootmem.c +++ b/mm/bootmem.c | |||
@@ -11,15 +11,12 @@ | |||
11 | #include <linux/init.h> | 11 | #include <linux/init.h> |
12 | #include <linux/pfn.h> | 12 | #include <linux/pfn.h> |
13 | #include <linux/slab.h> | 13 | #include <linux/slab.h> |
14 | #include <linux/bootmem.h> | ||
15 | #include <linux/export.h> | 14 | #include <linux/export.h> |
16 | #include <linux/kmemleak.h> | 15 | #include <linux/kmemleak.h> |
17 | #include <linux/range.h> | 16 | #include <linux/range.h> |
18 | #include <linux/memblock.h> | ||
19 | #include <linux/bug.h> | 17 | #include <linux/bug.h> |
20 | #include <linux/io.h> | 18 | #include <linux/io.h> |
21 | 19 | #include <linux/bootmem.h> | |
22 | #include <asm/processor.h> | ||
23 | 20 | ||
24 | #include "internal.h" | 21 | #include "internal.h" |
25 | 22 | ||
@@ -712,7 +709,7 @@ void * __init ___alloc_bootmem_node_nopanic(pg_data_t *pgdat, | |||
712 | void *ptr; | 709 | void *ptr; |
713 | 710 | ||
714 | if (WARN_ON_ONCE(slab_is_available())) | 711 | if (WARN_ON_ONCE(slab_is_available())) |
715 | return kzalloc(size, GFP_NOWAIT); | 712 | return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id); |
716 | again: | 713 | again: |
717 | 714 | ||
718 | /* do not panic in alloc_bootmem_bdata() */ | 715 | /* do not panic in alloc_bootmem_bdata() */ |
@@ -738,9 +735,6 @@ again: | |||
738 | void * __init __alloc_bootmem_node_nopanic(pg_data_t *pgdat, unsigned long size, | 735 | void * __init __alloc_bootmem_node_nopanic(pg_data_t *pgdat, unsigned long size, |
739 | unsigned long align, unsigned long goal) | 736 | unsigned long align, unsigned long goal) |
740 | { | 737 | { |
741 | if (WARN_ON_ONCE(slab_is_available())) | ||
742 | return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id); | ||
743 | |||
744 | return ___alloc_bootmem_node_nopanic(pgdat, size, align, goal, 0); | 738 | return ___alloc_bootmem_node_nopanic(pgdat, size, align, goal, 0); |
745 | } | 739 | } |
746 | 740 | ||
@@ -812,10 +806,6 @@ void * __init __alloc_bootmem_node_high(pg_data_t *pgdat, unsigned long size, | |||
812 | 806 | ||
813 | } | 807 | } |
814 | 808 | ||
815 | #ifndef ARCH_LOW_ADDRESS_LIMIT | ||
816 | #define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL | ||
817 | #endif | ||
818 | |||
819 | /** | 809 | /** |
820 | * __alloc_bootmem_low - allocate low boot memory | 810 | * __alloc_bootmem_low - allocate low boot memory |
821 | * @size: size of the request in bytes | 811 | * @size: size of the request in bytes |