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 | |
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')
-rw-r--r-- | arch/powerpc/mm/ppc_mmu_32.c | 2 | ||||
-rw-r--r-- | arch/powerpc/mm/tlb_32.c | 4 | ||||
-rw-r--r-- | arch/powerpc/platforms/86xx/mpc86xx_smp.c | 2 |
3 files changed, 4 insertions, 4 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 | } |
diff --git a/arch/powerpc/mm/tlb_32.c b/arch/powerpc/mm/tlb_32.c index 925ff70be8ba..6a69417cbc0e 100644 --- a/arch/powerpc/mm/tlb_32.c +++ b/arch/powerpc/mm/tlb_32.c | |||
@@ -111,7 +111,7 @@ static void flush_range(struct mm_struct *mm, unsigned long start, | |||
111 | if (start >= end) | 111 | if (start >= end) |
112 | return; | 112 | return; |
113 | end = (end - 1) | ~PAGE_MASK; | 113 | end = (end - 1) | ~PAGE_MASK; |
114 | pmd = pmd_offset(pgd_offset(mm, start), start); | 114 | pmd = pmd_offset(pud_offset(pgd_offset(mm, start), start), start); |
115 | for (;;) { | 115 | for (;;) { |
116 | pmd_end = ((start + PGDIR_SIZE) & PGDIR_MASK) - 1; | 116 | pmd_end = ((start + PGDIR_SIZE) & PGDIR_MASK) - 1; |
117 | if (pmd_end > end) | 117 | if (pmd_end > end) |
@@ -169,7 +169,7 @@ void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr) | |||
169 | return; | 169 | return; |
170 | } | 170 | } |
171 | mm = (vmaddr < TASK_SIZE)? vma->vm_mm: &init_mm; | 171 | mm = (vmaddr < TASK_SIZE)? vma->vm_mm: &init_mm; |
172 | pmd = pmd_offset(pgd_offset(mm, vmaddr), vmaddr); | 172 | pmd = pmd_offset(pud_offset(pgd_offset(mm, vmaddr), vmaddr), vmaddr); |
173 | if (!pmd_none(*pmd)) | 173 | if (!pmd_none(*pmd)) |
174 | flush_hash_pages(mm->context.id, vmaddr, pmd_val(*pmd), 1); | 174 | flush_hash_pages(mm->context.id, vmaddr, pmd_val(*pmd), 1); |
175 | FINISH_FLUSH; | 175 | FINISH_FLUSH; |
diff --git a/arch/powerpc/platforms/86xx/mpc86xx_smp.c b/arch/powerpc/platforms/86xx/mpc86xx_smp.c index 7ef0c6854799..ba55b0ff0f74 100644 --- a/arch/powerpc/platforms/86xx/mpc86xx_smp.c +++ b/arch/powerpc/platforms/86xx/mpc86xx_smp.c | |||
@@ -15,8 +15,8 @@ | |||
15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
16 | #include <linux/delay.h> | 16 | #include <linux/delay.h> |
17 | 17 | ||
18 | #include <asm/pgtable.h> | ||
19 | #include <asm/page.h> | 18 | #include <asm/page.h> |
19 | #include <asm/pgtable.h> | ||
20 | #include <asm/pci-bridge.h> | 20 | #include <asm/pci-bridge.h> |
21 | #include <asm-powerpc/mpic.h> | 21 | #include <asm-powerpc/mpic.h> |
22 | #include <asm/mpc86xx.h> | 22 | #include <asm/mpc86xx.h> |