From 53d9ab368510d7e7acb42757d4cb314f6f2b4868 Mon Sep 17 00:00:00 2001 From: deraadt Date: Fri, 27 Dec 2013 21:40:16 +0000 Subject: [PATCH] correct comment about why first 16 pages are skipped: SMI corruption is the real cause discussed with mlarkin --- sys/arch/i386/i386/machdep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 7a61ff551ad..bd01984eba0 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.528 2013/11/01 17:36:19 krw Exp $ */ +/* $OpenBSD: machdep.c,v 1.529 2013/12/27 21:40:16 deraadt Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -3220,7 +3220,7 @@ init386(paddr_t first_avail) e = 0xfffff000; } - /* skip first 16 pages for tramps and hibernate */ + /* skip first 16 pages for due to SMI corruption */ if (a < 16 * NBPG) a = 16 * NBPG; -- 2.20.1