|
@@ -20,7 +20,7 @@
|
|
|
#include <linux/cache.h>
|
|
|
#include <linux/jiffies.h>
|
|
|
#include <linux/profile.h>
|
|
|
-#include <linux/bootmem.h>
|
|
|
+#include <linux/lmb.h>
|
|
|
|
|
|
#include <asm/head.h>
|
|
|
#include <asm/ptrace.h>
|
|
@@ -1431,7 +1431,7 @@ EXPORT_SYMBOL(__per_cpu_shift);
|
|
|
|
|
|
void __init real_setup_per_cpu_areas(void)
|
|
|
{
|
|
|
- unsigned long goal, size, i;
|
|
|
+ unsigned long paddr, goal, size, i;
|
|
|
char *ptr;
|
|
|
|
|
|
/* Copy section for each CPU (we discard the original) */
|
|
@@ -1441,8 +1441,13 @@ void __init real_setup_per_cpu_areas(void)
|
|
|
for (size = PAGE_SIZE; size < goal; size <<= 1UL)
|
|
|
__per_cpu_shift++;
|
|
|
|
|
|
- ptr = alloc_bootmem_pages(size * NR_CPUS);
|
|
|
+ paddr = lmb_alloc(size * NR_CPUS, PAGE_SIZE);
|
|
|
+ if (!paddr) {
|
|
|
+ prom_printf("Cannot allocate per-cpu memory.\n");
|
|
|
+ prom_halt();
|
|
|
+ }
|
|
|
|
|
|
+ ptr = __va(paddr);
|
|
|
__per_cpu_base = ptr - __per_cpu_start;
|
|
|
|
|
|
for (i = 0; i < NR_CPUS; i++, ptr += size)
|