Skip to content

Commit

Permalink
mm/bootmem.c: replace kzalloc() by kzalloc_node()
Browse files Browse the repository at this point in the history
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/[email protected]
Signed-off-by: zijun_hu <[email protected]>
Cc: Ingo Molnar <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
zijun_hu authored and torvalds committed Oct 8, 2016
1 parent 2382705 commit 1d8bf92
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions mm/bootmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,12 @@
#include <linux/init.h>
#include <linux/pfn.h>
#include <linux/slab.h>
#include <linux/bootmem.h>
#include <linux/export.h>
#include <linux/kmemleak.h>
#include <linux/range.h>
#include <linux/memblock.h>
#include <linux/bug.h>
#include <linux/io.h>

#include <asm/processor.h>
#include <linux/bootmem.h>

#include "internal.h"

Expand Down Expand Up @@ -712,7 +709,7 @@ void * __init ___alloc_bootmem_node_nopanic(pg_data_t *pgdat,
void *ptr;

if (WARN_ON_ONCE(slab_is_available()))
return kzalloc(size, GFP_NOWAIT);
return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
again:

/* do not panic in alloc_bootmem_bdata() */
Expand All @@ -738,9 +735,6 @@ void * __init ___alloc_bootmem_node_nopanic(pg_data_t *pgdat,
void * __init __alloc_bootmem_node_nopanic(pg_data_t *pgdat, unsigned long size,
unsigned long align, unsigned long goal)
{
if (WARN_ON_ONCE(slab_is_available()))
return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);

return ___alloc_bootmem_node_nopanic(pgdat, size, align, goal, 0);
}

Expand Down Expand Up @@ -812,10 +806,6 @@ void * __init __alloc_bootmem_node_high(pg_data_t *pgdat, unsigned long size,

}

#ifndef ARCH_LOW_ADDRESS_LIMIT
#define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL
#endif

/**
* __alloc_bootmem_low - allocate low boot memory
* @size: size of the request in bytes
Expand Down

0 comments on commit 1d8bf92

Please sign in to comment.