diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2007-05-09 01:20:37 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-05-09 02:35:01 -0400 |
commit | f1a1eb299a8422c3e8d41753095bec44b2493398 (patch) | |
tree | 2ca630390e0bcd7f729a65905b3deb86ae8b8d27 /arch/powerpc/mm/ppc_mmu_32.c | |
parent | fcf9892b553ba638e6c8f9b6a140c99927c69693 (diff) |
[POWERPC] Further fixes for the removal of 4level-fixup hack from ppc32
Commit d1953c8888ef034b912ee33bc2ea2cce6a414402 removed the use of
4level-fixup.h for 32-bit systems under arch/powerpc. However, I
missed a few things activated on some configurations, resulting in
some warnings (at least with STRICT_MM_TYPECHECKS enabled) and build
errors in some circumstances. This fixes it.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/mm/ppc_mmu_32.c')
-rw-r--r-- | arch/powerpc/mm/ppc_mmu_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/ppc_mmu_32.c b/arch/powerpc/mm/ppc_mmu_32.c index 05066674a7a0..ec1421a20aaa 100644 --- a/arch/powerpc/mm/ppc_mmu_32.c +++ b/arch/powerpc/mm/ppc_mmu_32.c | |||
@@ -185,7 +185,7 @@ void hash_preload(struct mm_struct *mm, unsigned long ea, | |||
185 | 185 | ||
186 | if (Hash == 0) | 186 | if (Hash == 0) |
187 | return; | 187 | return; |
188 | pmd = pmd_offset(pgd_offset(mm, ea), ea); | 188 | pmd = pmd_offset(pud_offset(pgd_offset(mm, ea), ea), ea); |
189 | if (!pmd_none(*pmd)) | 189 | if (!pmd_none(*pmd)) |
190 | add_hash_page(mm->context.id, ea, pmd_val(*pmd)); | 190 | add_hash_page(mm->context.id, ea, pmd_val(*pmd)); |
191 | } | 191 | } |