diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-17 13:38:59 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-17 13:38:59 -0400 |
commit | 2b04be7e8ab5756ea36e137dd03c8773d184e67e (patch) | |
tree | c08e68a41b055bf9d7823ffd6f8843b72098f020 /arch/x86/mm | |
parent | bdec6cace4c3ecb6f90bcaa5424b92c97bd1df0f (diff) | |
parent | 2567d71cc7acd99f0a0dd02e17fe17fd7df7b30c (diff) |
Merge branch 'x86-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'x86-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
x86: fix asm/e820.h for userspace inclusion
x86: fix numaq_tsc_disable
x86: fix kernel_physical_mapping_init() for large x86 systems
Diffstat (limited to 'arch/x86/mm')
-rw-r--r-- | arch/x86/mm/init_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c index 27de2435e008..306049edd553 100644 --- a/arch/x86/mm/init_64.c +++ b/arch/x86/mm/init_64.c | |||
@@ -644,7 +644,7 @@ static unsigned long __init kernel_physical_mapping_init(unsigned long start, | |||
644 | unsigned long pud_phys; | 644 | unsigned long pud_phys; |
645 | pud_t *pud; | 645 | pud_t *pud; |
646 | 646 | ||
647 | next = start + PGDIR_SIZE; | 647 | next = (start + PGDIR_SIZE) & PGDIR_MASK; |
648 | if (next > end) | 648 | if (next > end) |
649 | next = end; | 649 | next = end; |
650 | 650 | ||