diff options
author | Nicolas Pitre <nicolas.pitre@linaro.org> | 2011-09-19 02:40:00 (GMT) |
---|---|---|
committer | Nicolas Pitre <nico@fluxnic.net> | 2011-11-18 18:51:21 (GMT) |
commit | 55a8173cfe1c6b489f8f5705282c762aed2e265e (patch) | |
tree | c2a32dda1fe7f08c542a8077895c077bc4a096cf /arch/arm/mm/nommu.c | |
parent | 27a3f0e91bed0f4dcf0a363e5f5938126d1ff4e5 (diff) | |
download | linux-55a8173cfe1c6b489f8f5705282c762aed2e265e.tar.xz |
ARM: move initialization of the high_memory variable earlier
Some upcoming changes must know the VMALLOC_START value, which is based
on high_memory, before bootmem_init() is called.
The best location to set it is in sanity_check_meminfo() where the needed
computation is already done, and in the non MMU case it is trivial to do
now that the meminfo array is already sorted at that point.
Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Diffstat (limited to 'arch/arm/mm/nommu.c')
-rw-r--r-- | arch/arm/mm/nommu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mm/nommu.c b/arch/arm/mm/nommu.c index 941a98c..9348730 100644 --- a/arch/arm/mm/nommu.c +++ b/arch/arm/mm/nommu.c @@ -29,6 +29,8 @@ void __init arm_mm_memblock_reserve(void) void __init sanity_check_meminfo(void) { + phys_addr_t end = bank_phys_end(&meminfo.bank[meminfo.nr_banks - 1]); + high_memory = __va(end - 1) + 1; } /* |