From owner-cvs-src-old@FreeBSD.ORG Tue Oct 12 19:28:46 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 694A810656E5 for ; Tue, 12 Oct 2010 19:28:46 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 573F88FC0A for ; Tue, 12 Oct 2010 19:28:46 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9CJSknl014288 for ; Tue, 12 Oct 2010 19:28:46 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9CJSku5014287 for cvs-src-old@freebsd.org; Tue, 12 Oct 2010 19:28:46 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <201010121928.o9CJSku5014287@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Tue, 12 Oct 2010 19:28:33 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/i386/i386 machdep.c 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: Tue, 12 Oct 2010 19:28:46 -0000 jhb 2010-10-12 19:28:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/i386/i386 machdep.c Log: SVN rev 213746 on 2010-10-12 19:28:33Z by jhb MFC 213226: Rewrite the i386 memory probe: - Check for SMAP data from the loader first. If it exists, don't bother doing any VM86 calls at all. This will be more friendly for non-BIOS boot environments such as EFI, etc. - Move the base memory setup into a new basemem_setup() routine instead of duplicating it. - Simplify the XEN case by removing all of the VM86/SMAP parsing code rather than just jumping over it. - Adjust some comments to better explain the code flow. Revision Changes Path 1.658.2.14 +112 -114 src/sys/i386/i386/machdep.c