diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2008-10-12 13:54:24 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-10-13 19:35:27 -0400 |
commit | f5ea64dcbad89875d130596df14c9b25d994a737 (patch) | |
tree | 03bde08104ea5c29edcaafc11576eb5594a7426c /arch/powerpc/mm/hash_utils_64.c | |
parent | cd301c7ba4bbb5a0ee6ebf13eb4a304f29b13847 (diff) |
powerpc: Get USE_STRICT_MM_TYPECHECKS working again
The typesafe version of the powerpc pagetable handling (with
USE_STRICT_MM_TYPECHECKS defined) has bitrotted again. This patch
makes a bunch of small fixes to get it back to building status.
It's still not enabled by default as gcc still generates worse
code with it for some reason.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/mm/hash_utils_64.c')
-rw-r--r-- | arch/powerpc/mm/hash_utils_64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c index 09db4efe1921..5c64af174752 100644 --- a/arch/powerpc/mm/hash_utils_64.c +++ b/arch/powerpc/mm/hash_utils_64.c | |||
@@ -541,7 +541,7 @@ static unsigned long __init htab_get_table_size(void) | |||
541 | void create_section_mapping(unsigned long start, unsigned long end) | 541 | void create_section_mapping(unsigned long start, unsigned long end) |
542 | { | 542 | { |
543 | BUG_ON(htab_bolt_mapping(start, end, __pa(start), | 543 | BUG_ON(htab_bolt_mapping(start, end, __pa(start), |
544 | PAGE_KERNEL, mmu_linear_psize, | 544 | pgprot_val(PAGE_KERNEL), mmu_linear_psize, |
545 | mmu_kernel_ssize)); | 545 | mmu_kernel_ssize)); |
546 | } | 546 | } |
547 | 547 | ||
@@ -649,7 +649,7 @@ void __init htab_initialize(void) | |||
649 | mtspr(SPRN_SDR1, _SDR1); | 649 | mtspr(SPRN_SDR1, _SDR1); |
650 | } | 650 | } |
651 | 651 | ||
652 | prot = PAGE_KERNEL; | 652 | prot = pgprot_val(PAGE_KERNEL); |
653 | 653 | ||
654 | #ifdef CONFIG_DEBUG_PAGEALLOC | 654 | #ifdef CONFIG_DEBUG_PAGEALLOC |
655 | linear_map_hash_count = lmb_end_of_DRAM() >> PAGE_SHIFT; | 655 | linear_map_hash_count = lmb_end_of_DRAM() >> PAGE_SHIFT; |