diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2011-02-14 06:58:04 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-02-14 14:46:56 -0500 |
commit | 410f14837a92177242a403c20d0a0906fe357019 (patch) | |
tree | 5656e72b0a03d54d9e28ddb1210418eba12333a6 /arch | |
parent | 36bb94ba36f332de767cfaa3af6a5136435a3a9c (diff) |
ARM: 6667/1: Fix early_pte_alloc() assumption about the Linux PTE
With LPAE we no longer have software bits in a separate Linux PTE and
the early_pte_alloc() function should pass PTE_HWTABLE_OFF +
PTE_HWTABLE_SIZE to early_alloc() to avoid allocating extra memory.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mm/mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index 546e44734db0..7515d4718645 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c | |||
@@ -532,7 +532,7 @@ static void __init *early_alloc(unsigned long sz) | |||
532 | static pte_t * __init early_pte_alloc(pmd_t *pmd, unsigned long addr, unsigned long prot) | 532 | static pte_t * __init early_pte_alloc(pmd_t *pmd, unsigned long addr, unsigned long prot) |
533 | { | 533 | { |
534 | if (pmd_none(*pmd)) { | 534 | if (pmd_none(*pmd)) { |
535 | pte_t *pte = early_alloc(2 * PTRS_PER_PTE * sizeof(pte_t)); | 535 | pte_t *pte = early_alloc(PTE_HWTABLE_OFF + PTE_HWTABLE_SIZE); |
536 | __pmd_populate(pmd, __pa(pte), prot); | 536 | __pmd_populate(pmd, __pa(pte), prot); |
537 | } | 537 | } |
538 | BUG_ON(pmd_bad(*pmd)); | 538 | BUG_ON(pmd_bad(*pmd)); |