diff options
| -rw-r--r-- | arch/mips/kernel/setup.c | 1 | ||||
| -rw-r--r-- | arch/mips/kernel/traps.c | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index ea09ed6a80a9..8c6c48ed786a 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c | |||
| @@ -794,6 +794,7 @@ static void __init arch_mem_init(char **cmdline_p) | |||
| 794 | 794 | ||
| 795 | /* call board setup routine */ | 795 | /* call board setup routine */ |
| 796 | plat_mem_setup(); | 796 | plat_mem_setup(); |
| 797 | memblock_set_bottom_up(true); | ||
| 797 | 798 | ||
| 798 | /* | 799 | /* |
| 799 | * Make sure all kernel memory is in the maps. The "UP" and | 800 | * Make sure all kernel memory is in the maps. The "UP" and |
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c index 0f852e1b5891..15e103c6d799 100644 --- a/arch/mips/kernel/traps.c +++ b/arch/mips/kernel/traps.c | |||
| @@ -2260,10 +2260,8 @@ void __init trap_init(void) | |||
| 2260 | unsigned long size = 0x200 + VECTORSPACING*64; | 2260 | unsigned long size = 0x200 + VECTORSPACING*64; |
| 2261 | phys_addr_t ebase_pa; | 2261 | phys_addr_t ebase_pa; |
| 2262 | 2262 | ||
| 2263 | memblock_set_bottom_up(true); | ||
| 2264 | ebase = (unsigned long) | 2263 | ebase = (unsigned long) |
| 2265 | memblock_alloc_from(size, 1 << fls(size), 0); | 2264 | memblock_alloc_from(size, 1 << fls(size), 0); |
| 2266 | memblock_set_bottom_up(false); | ||
| 2267 | 2265 | ||
| 2268 | /* | 2266 | /* |
| 2269 | * Try to ensure ebase resides in KSeg0 if possible. | 2267 | * Try to ensure ebase resides in KSeg0 if possible. |
| @@ -2307,6 +2305,7 @@ void __init trap_init(void) | |||
| 2307 | if (board_ebase_setup) | 2305 | if (board_ebase_setup) |
| 2308 | board_ebase_setup(); | 2306 | board_ebase_setup(); |
| 2309 | per_cpu_trap_init(true); | 2307 | per_cpu_trap_init(true); |
| 2308 | memblock_set_bottom_up(false); | ||
| 2310 | 2309 | ||
| 2311 | /* | 2310 | /* |
| 2312 | * Copy the generic exception handlers to their final destination. | 2311 | * Copy the generic exception handlers to their final destination. |
