diff options
author | Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> | 2014-01-10 17:17:38 -0500 |
---|---|---|
committer | Stafford Horne <shorne@gmail.com> | 2016-12-12 09:09:06 -0500 |
commit | f47706099bdb8c0e6300d6f5ba8e542861aa3ac5 (patch) | |
tree | 8c82c1c5e5b26690231eb1e48627403590825fbc /arch/openrisc/mm/init.c | |
parent | 69973b830859bc6529a7a0468ba0d80ee5117826 (diff) |
openrisc: fix PTRS_PER_PGD define
On OpenRISC, with its 8k pages, PAGE_SHIFT is defined to be 13.
That makes the expression (1UL << (PAGE_SHIFT-2)) evaluate
to 2048.
The correct value for PTRS_PER_PGD should be 256.
Correcting the PTRS_PER_PGD define unveiled a bug in map_ram(),
where PTRS_PER_PGD was used when the intent was to iterate
over a set of page table entries.
This patch corrects that issue as well.
Signed-off-by: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
Acked-by: Jonas Bonn <jonas@southpole.se>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Stafford Horne <shorne@gmail.com>
Diffstat (limited to 'arch/openrisc/mm/init.c')
-rw-r--r-- | arch/openrisc/mm/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/openrisc/mm/init.c b/arch/openrisc/mm/init.c index 7f94652311d7..b782ce9ccad9 100644 --- a/arch/openrisc/mm/init.c +++ b/arch/openrisc/mm/init.c | |||
@@ -110,7 +110,7 @@ static void __init map_ram(void) | |||
110 | set_pmd(pme, __pmd(_KERNPG_TABLE + __pa(pte))); | 110 | set_pmd(pme, __pmd(_KERNPG_TABLE + __pa(pte))); |
111 | 111 | ||
112 | /* Fill the newly allocated page with PTE'S */ | 112 | /* Fill the newly allocated page with PTE'S */ |
113 | for (j = 0; p < e && j < PTRS_PER_PGD; | 113 | for (j = 0; p < e && j < PTRS_PER_PTE; |
114 | v += PAGE_SIZE, p += PAGE_SIZE, j++, pte++) { | 114 | v += PAGE_SIZE, p += PAGE_SIZE, j++, pte++) { |
115 | if (v >= (u32) _e_kernel_ro || | 115 | if (v >= (u32) _e_kernel_ro || |
116 | v < (u32) _s_kernel_ro) | 116 | v < (u32) _s_kernel_ro) |