diff options
author | Becky Bruce <beckyb@kernel.crashing.org> | 2009-05-08 08:19:27 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-05-15 02:43:41 -0400 |
commit | 49a849652513235a244dfbf5e58c54f796bd1148 (patch) | |
tree | 809fe33bad6255fab153fb5a7f03170150ab88c7 /arch/powerpc/mm | |
parent | 31207dab7d2e63795eb15823947bd2f7025b08e2 (diff) |
powerpc: Allow mem=x cmdline to work with 4G+
We're currently choking on mem=4g (and above) due to memory_limit
being specified as an unsigned long. Make memory_limit
phys_addr_t to fix this.
Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/mm')
-rw-r--r-- | arch/powerpc/mm/mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c index f668fa9ba804..d0602a76bf7f 100644 --- a/arch/powerpc/mm/mem.c +++ b/arch/powerpc/mm/mem.c | |||
@@ -57,7 +57,7 @@ | |||
57 | 57 | ||
58 | int init_bootmem_done; | 58 | int init_bootmem_done; |
59 | int mem_init_done; | 59 | int mem_init_done; |
60 | unsigned long memory_limit; | 60 | phys_addr_t memory_limit; |
61 | 61 | ||
62 | #ifdef CONFIG_HIGHMEM | 62 | #ifdef CONFIG_HIGHMEM |
63 | pte_t *kmap_pte; | 63 | pte_t *kmap_pte; |