diff options
author | Pekka Enberg <penberg@cs.helsinki.fi> | 2009-03-05 07:55:06 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-05 08:17:17 -0500 |
commit | 298af9d89f3f5292e81a0a00f729c415adc4d8fb (patch) | |
tree | 55bc9c7c2becac1b8d2458a8bd80fc874b7ea192 /arch/x86/mm/init.c | |
parent | f765090a2617b8d9cb73b71e0aa850c29460d8be (diff) |
x86: fix up some bad global variable names in mm/init.c
Impact: cleanup
The table_start, table_end, and table_top are too generic for global
namespace so rename them to be more specific.
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Yinghai Lu <yinghai@kernel.org>
LKML-Reference: <1236257708-27269-15-git-send-email-penberg@cs.helsinki.fi>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/init.c')
-rw-r--r-- | arch/x86/mm/init.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/arch/x86/mm/init.c b/arch/x86/mm/init.c index 3a21b136da24..5bbdfe7459d2 100644 --- a/arch/x86/mm/init.c +++ b/arch/x86/mm/init.c | |||
@@ -23,9 +23,9 @@ kernel_physical_mapping_init(unsigned long start, | |||
23 | unsigned long page_size_mask); | 23 | unsigned long page_size_mask); |
24 | #endif | 24 | #endif |
25 | 25 | ||
26 | unsigned long __initdata table_start; | 26 | unsigned long __initdata e820_table_start; |
27 | unsigned long __meminitdata table_end; | 27 | unsigned long __meminitdata e820_table_end; |
28 | unsigned long __meminitdata table_top; | 28 | unsigned long __meminitdata e820_table_top; |
29 | 29 | ||
30 | int after_bootmem; | 30 | int after_bootmem; |
31 | 31 | ||
@@ -78,21 +78,21 @@ static void __init find_early_table_space(unsigned long end, int use_pse, | |||
78 | */ | 78 | */ |
79 | #ifdef CONFIG_X86_32 | 79 | #ifdef CONFIG_X86_32 |
80 | start = 0x7000; | 80 | start = 0x7000; |
81 | table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT, | 81 | e820_table_start = find_e820_area(start, max_pfn_mapped<<PAGE_SHIFT, |
82 | tables, PAGE_SIZE); | 82 | tables, PAGE_SIZE); |
83 | #else /* CONFIG_X86_64 */ | 83 | #else /* CONFIG_X86_64 */ |
84 | start = 0x8000; | 84 | start = 0x8000; |
85 | table_start = find_e820_area(start, end, tables, PAGE_SIZE); | 85 | e820_table_start = find_e820_area(start, end, tables, PAGE_SIZE); |
86 | #endif | 86 | #endif |
87 | if (table_start == -1UL) | 87 | if (e820_table_start == -1UL) |
88 | panic("Cannot find space for the kernel page tables"); | 88 | panic("Cannot find space for the kernel page tables"); |
89 | 89 | ||
90 | table_start >>= PAGE_SHIFT; | 90 | e820_table_start >>= PAGE_SHIFT; |
91 | table_end = table_start; | 91 | e820_table_end = e820_table_start; |
92 | table_top = table_start + (tables >> PAGE_SHIFT); | 92 | e820_table_top = e820_table_start + (tables >> PAGE_SHIFT); |
93 | 93 | ||
94 | printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n", | 94 | printk(KERN_DEBUG "kernel direct mapping tables up to %lx @ %lx-%lx\n", |
95 | end, table_start << PAGE_SHIFT, table_top << PAGE_SHIFT); | 95 | end, e820_table_start << PAGE_SHIFT, e820_table_top << PAGE_SHIFT); |
96 | } | 96 | } |
97 | 97 | ||
98 | struct map_range { | 98 | struct map_range { |
@@ -324,9 +324,9 @@ unsigned long __init_refok init_memory_mapping(unsigned long start, | |||
324 | #endif | 324 | #endif |
325 | __flush_tlb_all(); | 325 | __flush_tlb_all(); |
326 | 326 | ||
327 | if (!after_bootmem && table_end > table_start) | 327 | if (!after_bootmem && e820_table_end > e820_table_start) |
328 | reserve_early(table_start << PAGE_SHIFT, | 328 | reserve_early(e820_table_start << PAGE_SHIFT, |
329 | table_end << PAGE_SHIFT, "PGTABLE"); | 329 | e820_table_end << PAGE_SHIFT, "PGTABLE"); |
330 | 330 | ||
331 | if (!after_bootmem) | 331 | if (!after_bootmem) |
332 | early_memtest(start, end); | 332 | early_memtest(start, end); |