Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754535Ab0AUGdk (ORCPT ); Thu, 21 Jan 2010 01:33:40 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752707Ab0AUGdf (ORCPT ); Thu, 21 Jan 2010 01:33:35 -0500 Received: from sca-es-mail-2.Sun.COM ([192.18.43.133]:38846 "EHLO sca-es-mail-2.sun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754594Ab0AUG3Y (ORCPT ); Thu, 21 Jan 2010 01:29:24 -0500 MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: TEXT/PLAIN Date: Wed, 20 Jan 2010 22:28:12 -0800 From: Yinghai Lu Subject: [PATCH 25/36] x86: print out for RAM buffer In-reply-to: <1264055303-15123-1-git-send-email-yinghai@kernel.org> To: Ingo Molnar , Thomas Gleixner , "H. Peter Anvin" , Andrew Morton , Jesse Barnes , Christoph Lameter Cc: Linus Torvalds , linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org, Yinghai Lu Message-id: <1264055303-15123-26-git-send-email-yinghai@kernel.org> X-Mailer: git-send-email 1.6.4.2 References: <1264055303-15123-1-git-send-email-yinghai@kernel.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 989 Lines: 30 so could check that early in bootlog Acked-by: Yinghai Lu Reviewed-by: Christoph Lameter --- arch/x86/kernel/e820.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/arch/x86/kernel/e820.c b/arch/x86/kernel/e820.c index c5c52da..62235e7 100644 --- a/arch/x86/kernel/e820.c +++ b/arch/x86/kernel/e820.c @@ -1127,6 +1127,9 @@ void __init e820_reserve_resources_late(void) end = MAX_RESOURCE_SIZE; if (start >= end) continue; + printk(KERN_DEBUG "reserve RAM buffer: %016Lx - %016Lx ", + (unsigned long long) start, + (unsigned long long) end); reserve_region_with_split(&iomem_resource, start, end, "RAM buffer"); } -- 1.6.4.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/