From owner-cvs-src-old@FreeBSD.ORG Sat Feb 27 18:11:17 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83A931065670 for ; Sat, 27 Feb 2010 18:11:17 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 061368FC08 for ; Sat, 27 Feb 2010 18:11:17 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o1RIBGA3095036 for ; Sat, 27 Feb 2010 18:11:16 GMT (envelope-from alc@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1RIBGqx095035 for cvs-src-old@freebsd.org; Sat, 27 Feb 2010 18:11:16 GMT (envelope-from alc@repoman.freebsd.org) Message-Id: <201002271811.o1RIBGqx095035@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to alc@repoman.freebsd.org using -f From: Alan Cox Date: Sat, 27 Feb 2010 18:00:57 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c src/sys/kern subr_param.c src/sys/sys systm.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Feb 2010 18:11:17 -0000 alc 2010-02-27 18:00:57 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c sys/kern subr_param.c sys/sys systm.h Log: SVN rev 204420 on 2010-02-27 18:00:57Z by alc When running as a guest operating system, the FreeBSD kernel must assume that the virtual machine monitor has enabled machine check exceptions. Unfortunately, on AMD Family 10h processors the machine check hardware has a bug (Erratum 383) that can result in a false machine check exception when a superpage promotion occurs. Thus, I am disabling superpage promotion when the FreeBSD kernel is running as a guest operating system on an AMD Family 10h processor. Reviewed by: jhb, kib MFC after: 3 days Revision Changes Path 1.682 +9 -0 src/sys/amd64/amd64/pmap.c 1.663 +9 -0 src/sys/i386/i386/pmap.c 1.93 +4 -4 src/sys/kern/subr_param.c 1.283 +3 -0 src/sys/sys/systm.h