diff options
author | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2009-02-27 16:27:38 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-03-14 20:23:47 -0400 |
commit | ccf3fe02e35f4abca2589f99022cc25084bbd8ae (patch) | |
tree | 3bcf329116b8c689b4da1bb1a0d87bb587d3f3c7 /arch/x86/kernel/setup.c | |
parent | 5368a2be34b96fda9c05d79424fa63a73ead04ed (diff) |
x86-32: use brk segment for allocating initial kernel pagetable
Impact: use new interface instead of previous ad hoc implementation
Rather than having special purpose init_pg_table_start/end variables
to delimit the kernel pagetable built by head_32.S, just use the brk
mechanism to extend the bss for the new pagetable.
This patch removes init_pg_table_start/end and pg0, defines __brk_base
(which is page-aligned and immediately follows _end), initializes
the brk region to start there, and uses it for the 32-bit pagetable.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/kernel/setup.c')
-rw-r--r-- | arch/x86/kernel/setup.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index b8329029c150..3ac2aa7b9eaf 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c | |||
@@ -161,12 +161,6 @@ static struct resource bss_resource = { | |||
161 | 161 | ||
162 | 162 | ||
163 | #ifdef CONFIG_X86_32 | 163 | #ifdef CONFIG_X86_32 |
164 | /* This value is set up by the early boot code to point to the value | ||
165 | immediately after the boot time page tables. It contains a *physical* | ||
166 | address, and must not be in the .bss segment! */ | ||
167 | unsigned long init_pg_tables_start __initdata = ~0UL; | ||
168 | unsigned long init_pg_tables_end __initdata = ~0UL; | ||
169 | |||
170 | static struct resource video_ram_resource = { | 164 | static struct resource video_ram_resource = { |
171 | .name = "Video RAM area", | 165 | .name = "Video RAM area", |
172 | .start = 0xa0000, | 166 | .start = 0xa0000, |