[<prev] [next>] [day] [month] [year] [list]
Message-Id: <200804152317.42886.yhlu.kernel@gmail.com>
Date: Tue, 15 Apr 2008 23:17:42 -0700
From: Yinghai Lu <yhlu.kernel.send@...il.com>
To: Ingo Molnar <mingo@...e.hu>, Thomas Gleixner <tglx@...utronix.de>,
"H. Peter Anvin" <hpa@...or.com>
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] x86_64: fix memtest print out
Signed-off-by: Yinghai Lu <yhlu.kernel@...il.com>
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
index 058552e..0671f11 100644
--- a/arch/x86/mm/init_64.c
+++ b/arch/x86/mm/init_64.c
@@ -478,7 +478,7 @@ static void __init memtest(unsigned long start_phys, unsigned long size,
last_bad += incr;
} else {
if (start_bad) {
- printk(KERN_INFO " %016lxx bad mem addr %016lx - %016lx reserved\n",
+ printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
val, start_bad, last_bad + incr);
reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
}
@@ -487,7 +487,7 @@ static void __init memtest(unsigned long start_phys, unsigned long size,
}
}
if (start_bad) {
- printk(KERN_INFO " %016lx bad mem addr %016lx - %016lx reserved\n",
+ printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
val, start_bad, last_bad + incr);
reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists