aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorPekka Enberg <penberg@cs.helsinki.fi>2009-03-03 05:55:05 -0500
committerIngo Molnar <mingo@elte.hu>2009-03-03 06:07:00 -0500
commitfd578f9c0a0a7bf3e460e6f21cdc6f4018949e80 (patch)
treed8e705f8dbfd7199bef1870bc3e7b707b80e456a /arch
parent2b688dfd0a93cf3b17c38feef693361da47b0606 (diff)
x86: use roundup() instead of PAGE_ALIGN() in find_early_table_space()
Impact: cleanup This patch changes find_early_table_space() to use roundup() for rounding up tables to page size to unify the common parts of the 32-bit and 64-bit implementations. Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi> LKML-Reference: <1236077705.2675.6.camel@penberg-laptop> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/mm/init_32.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c
index 5b06a2f5dea..1dd6b6334dc 100644
--- a/arch/x86/mm/init_32.c
+++ b/arch/x86/mm/init_32.c
@@ -845,10 +845,10 @@ static void __init find_early_table_space(unsigned long end, int use_pse)
845 unsigned long puds, pmds, ptes, tables, start; 845 unsigned long puds, pmds, ptes, tables, start;
846 846
847 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT; 847 puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
848 tables = PAGE_ALIGN(puds * sizeof(pud_t)); 848 tables = roundup(puds * sizeof(pud_t), PAGE_SIZE);
849 849
850 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT; 850 pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
851 tables += PAGE_ALIGN(pmds * sizeof(pmd_t)); 851 tables += roundup(pmds * sizeof(pmd_t), PAGE_SIZE);
852 852
853 if (use_pse) { 853 if (use_pse) {
854 unsigned long extra; 854 unsigned long extra;
@@ -859,10 +859,10 @@ static void __init find_early_table_space(unsigned long end, int use_pse)
859 } else 859 } else
860 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT; 860 ptes = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
861 861
862 tables += PAGE_ALIGN(ptes * sizeof(pte_t)); 862 tables += roundup(ptes * sizeof(pte_t), PAGE_SIZE);
863 863
864 /* for fixmap */ 864 /* for fixmap */
865 tables += PAGE_ALIGN(__end_of_fixed_addresses * sizeof(pte_t)); 865 tables += roundup(__end_of_fixed_addresses * sizeof(pte_t), PAGE_SIZE);
866 866
867 /* 867 /*
868 * RED-PEN putting page tables only on node 0 could 868 * RED-PEN putting page tables only on node 0 could