aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/e820.c
diff options
context:
space:
mode:
authorYinghai Lu <yinghai@kernel.org>2010-02-10 04:20:14 -0500
committerH. Peter Anvin <hpa@zytor.com>2010-02-10 20:47:17 -0500
commit79c601695870ca2a9c0ba9949a97d2be78ec07b2 (patch)
treec7df54cf5c8055b17e40351b04fd7783e0d8f966 /arch/x86/kernel/e820.c
parente9a0064ad03b899938059bb576615ad9ed0f27f9 (diff)
x86: Print out RAM buffer information
So we can check that early in the bootlog. Signed-off-by: Yinghai Lu <yinghai@kernel.org> LKML-Reference: <1265793639-15071-11-git-send-email-yinghai@kernel.org> Reviewed-by: Christoph Lameter <cl@linux-foundation.org> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/kernel/e820.c')
-rw-r--r--arch/x86/kernel/e820.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kernel/e820.c b/arch/x86/kernel/e820.c
index a966b753e496..f406efeb4dc4 100644
--- a/arch/x86/kernel/e820.c
+++ b/arch/x86/kernel/e820.c
@@ -1429,6 +1429,8 @@ void __init e820_reserve_resources_late(void)
1429 end = MAX_RESOURCE_SIZE; 1429 end = MAX_RESOURCE_SIZE;
1430 if (start >= end) 1430 if (start >= end)
1431 continue; 1431 continue;
1432 printk(KERN_DEBUG "reserve RAM buffer: %016llx - %016llx ",
1433 start, end);
1432 reserve_region_with_split(&iomem_resource, start, end, 1434 reserve_region_with_split(&iomem_resource, start, end,
1433 "RAM buffer"); 1435 "RAM buffer");
1434 } 1436 }