diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-03-21 16:27:10 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:41:30 -0400 |
commit | 67794292c8615b05f46419ba8d4fd99e7c9a5db9 (patch) | |
tree | 8aacc17810552a9ecffa86b4a5f2cd8ec9a8f57f /arch/x86/mm/init_32.c | |
parent | 7d1116a92d709c22e7db910724c9fcd2001b0499 (diff) |
x86: replace the now useless max_pfn_mapped define
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/init_32.c')
-rw-r--r-- | arch/x86/mm/init_32.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c index 73dd0601166a..fc3ace2e88f1 100644 --- a/arch/x86/mm/init_32.c +++ b/arch/x86/mm/init_32.c | |||
@@ -51,7 +51,7 @@ | |||
51 | 51 | ||
52 | unsigned int __VMALLOC_RESERVE = 128 << 20; | 52 | unsigned int __VMALLOC_RESERVE = 128 << 20; |
53 | 53 | ||
54 | unsigned long end_pfn_map; | 54 | unsigned long max_pfn_mapped; |
55 | 55 | ||
56 | DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); | 56 | DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); |
57 | unsigned long highstart_pfn, highend_pfn; | 57 | unsigned long highstart_pfn, highend_pfn; |
@@ -196,7 +196,7 @@ static void __init kernel_physical_mapping_init(pgd_t *pgd_base) | |||
196 | set_pmd(pmd, pfn_pmd(pfn, prot)); | 196 | set_pmd(pmd, pfn_pmd(pfn, prot)); |
197 | 197 | ||
198 | pfn += PTRS_PER_PTE; | 198 | pfn += PTRS_PER_PTE; |
199 | end_pfn_map = pfn; | 199 | max_pfn_mapped = pfn; |
200 | continue; | 200 | continue; |
201 | } | 201 | } |
202 | pte = one_page_table_init(pmd); | 202 | pte = one_page_table_init(pmd); |
@@ -211,7 +211,7 @@ static void __init kernel_physical_mapping_init(pgd_t *pgd_base) | |||
211 | 211 | ||
212 | set_pte(pte, pfn_pte(pfn, prot)); | 212 | set_pte(pte, pfn_pte(pfn, prot)); |
213 | } | 213 | } |
214 | end_pfn_map = pfn; | 214 | max_pfn_mapped = pfn; |
215 | } | 215 | } |
216 | } | 216 | } |
217 | } | 217 | } |