diff options
author | Andi Kleen <ak@suse.de> | 2005-09-12 12:49:24 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-12 13:50:55 -0400 |
commit | 48496e349554f3704fd1cdf16f389e0615956909 (patch) | |
tree | 90757266ec81fd4839f6d60853c3190cc5ceb496 /arch/x86_64/kernel/head.S | |
parent | b8f68e9ffaf5e7c9c463ecd2598cc33f8e6df75e (diff) |
[PATCH] x86-64: Fix (harmless) typo in head.S early level2 page table
The global bit was not set in the first 2MB page, instead
it had a bit in the free AVL section which is useless.
Fixed thus.
Noticed by Eric Biederman
Cc: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64/kernel/head.S')
-rw-r--r-- | arch/x86_64/kernel/head.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/kernel/head.S b/arch/x86_64/kernel/head.S index 98ff5eb32b9a..4592bf21fcaf 100644 --- a/arch/x86_64/kernel/head.S +++ b/arch/x86_64/kernel/head.S | |||
@@ -270,7 +270,7 @@ ENTRY(level3_kernel_pgt) | |||
270 | .org 0x4000 | 270 | .org 0x4000 |
271 | ENTRY(level2_ident_pgt) | 271 | ENTRY(level2_ident_pgt) |
272 | /* 40MB for bootup. */ | 272 | /* 40MB for bootup. */ |
273 | .quad 0x0000000000000283 | 273 | .quad 0x0000000000000183 |
274 | .quad 0x0000000000200183 | 274 | .quad 0x0000000000200183 |
275 | .quad 0x0000000000400183 | 275 | .quad 0x0000000000400183 |
276 | .quad 0x0000000000600183 | 276 | .quad 0x0000000000600183 |