Skip to content

Commit ccfa2a0

Browse files
rppttorvalds
authored andcommitted
memblock: replace __alloc_bootmem_node with appropriate memblock_ API
Use memblock_alloc_try_nid whenever goal (i.e. minimal address is specified) and memblock_alloc_node otherwise. Link: http://lkml.kernel.org/r/1536927045-23536-17-git-send-email-rppt@linux.vnet.ibm.com Signed-off-by: Mike Rapoport <rppt@linux.vnet.ibm.com> Acked-by: Michal Hocko <mhocko@suse.com> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Chris Zankel <chris@zankel.net> Cc: "David S. Miller" <davem@davemloft.net> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Greentime Hu <green.hu@gmail.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Guan Xuetao <gxt@pku.edu.cn> Cc: Ingo Molnar <mingo@redhat.com> Cc: "James E.J. Bottomley" <jejb@parisc-linux.org> Cc: Jonas Bonn <jonas@southpole.se> Cc: Jonathan Corbet <corbet@lwn.net> Cc: Ley Foon Tan <lftan@altera.com> Cc: Mark Salter <msalter@redhat.com> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Matt Turner <mattst88@gmail.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Michal Simek <monstr@monstr.eu> Cc: Palmer Dabbelt <palmer@sifive.com> Cc: Paul Burton <paul.burton@mips.com> Cc: Richard Kuo <rkuo@codeaurora.org> Cc: Richard Weinberger <richard@nod.at> Cc: Rich Felker <dalias@libc.org> Cc: Russell King <linux@armlinux.org.uk> Cc: Serge Semin <fancer.lancer@gmail.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Tony Luck <tony.luck@intel.com> Cc: Vineet Gupta <vgupta@synopsys.com> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 64c0066 commit ccfa2a0

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

arch/ia64/mm/discontig.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,8 +451,10 @@ static void __init *memory_less_node_alloc(int nid, unsigned long pernodesize)
451451
if (bestnode == -1)
452452
bestnode = anynode;
453453

454-
ptr = __alloc_bootmem_node(pgdat_list[bestnode], pernodesize,
455-
PERCPU_PAGE_SIZE, __pa(MAX_DMA_ADDRESS));
454+
ptr = memblock_alloc_try_nid(pernodesize, PERCPU_PAGE_SIZE,
455+
__pa(MAX_DMA_ADDRESS),
456+
BOOTMEM_ALLOC_ACCESSIBLE,
457+
bestnode);
456458

457459
return ptr;
458460
}

arch/powerpc/kernel/setup_64.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -763,8 +763,10 @@ void __init emergency_stack_init(void)
763763

764764
static void * __init pcpu_fc_alloc(unsigned int cpu, size_t size, size_t align)
765765
{
766-
return __alloc_bootmem_node(NODE_DATA(early_cpu_to_node(cpu)), size, align,
767-
__pa(MAX_DMA_ADDRESS));
766+
return memblock_alloc_try_nid(size, align, __pa(MAX_DMA_ADDRESS),
767+
BOOTMEM_ALLOC_ACCESSIBLE,
768+
early_cpu_to_node(cpu));
769+
768770
}
769771

770772
static void __init pcpu_fc_free(void *ptr, size_t size)

arch/sparc/kernel/setup_64.c

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -621,12 +621,10 @@ void __init alloc_irqstack_bootmem(void)
621621
for_each_possible_cpu(i) {
622622
node = cpu_to_node(i);
623623

624-
softirq_stack[i] = __alloc_bootmem_node(NODE_DATA(node),
625-
THREAD_SIZE,
626-
THREAD_SIZE, 0);
627-
hardirq_stack[i] = __alloc_bootmem_node(NODE_DATA(node),
628-
THREAD_SIZE,
629-
THREAD_SIZE, 0);
624+
softirq_stack[i] = memblock_alloc_node(THREAD_SIZE,
625+
THREAD_SIZE, node);
626+
hardirq_stack[i] = memblock_alloc_node(THREAD_SIZE,
627+
THREAD_SIZE, node);
630628
}
631629
}
632630

arch/sparc/kernel/smp_64.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1594,8 +1594,8 @@ static void * __init pcpu_alloc_bootmem(unsigned int cpu, size_t size,
15941594
pr_debug("per cpu data for cpu%d %lu bytes at %016lx\n",
15951595
cpu, size, __pa(ptr));
15961596
} else {
1597-
ptr = __alloc_bootmem_node(NODE_DATA(node),
1598-
size, align, goal);
1597+
ptr = memblock_alloc_try_nid(size, align, goal,
1598+
BOOTMEM_ALLOC_ACCESSIBLE, node);
15991599
pr_debug("per cpu data for cpu%d %lu bytes on node%d at "
16001600
"%016lx\n", cpu, size, node, __pa(ptr));
16011601
}

0 commit comments

Comments
 (0)