From owner-svn-src-head@freebsd.org Mon Dec 21 20:39:00 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 04C72A4E279; Mon, 21 Dec 2015 20:39:00 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9C991FB0; Mon, 21 Dec 2015 20:38:59 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 5D222B96E; Mon, 21 Dec 2015 15:38:58 -0500 (EST) From: John Baldwin To: Warner Losh Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r292472 - in head/sys: amd64/amd64 sys Date: Mon, 21 Dec 2015 12:38:15 -0800 Message-ID: <1777356.pH0Cpe84Od@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.2-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: <201512191901.tBJJ1hEP013786@repo.freebsd.org> References: <201512191901.tBJJ1hEP013786@repo.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Mon, 21 Dec 2015 15:38:58 -0500 (EST) X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Dec 2015 20:39:00 -0000 On Saturday, December 19, 2015 07:01:43 PM Warner Losh wrote: > Author: imp > Date: Sat Dec 19 19:01:43 2015 > New Revision: 292472 > URL: https://svnweb.freebsd.org/changeset/base/292472 > > Log: > Save the physical address passed into the kernel of the UEFI system > table. > > Modified: > head/sys/amd64/amd64/machdep.c > head/sys/sys/efi.h > > Modified: head/sys/amd64/amd64/machdep.c > ============================================================================== > --- head/sys/amd64/amd64/machdep.c Sat Dec 19 19:01:42 2015 (r292471) > +++ head/sys/amd64/amd64/machdep.c Sat Dec 19 19:01:43 2015 (r292472) > @@ -1615,6 +1622,8 @@ hammer_time(u_int64_t modulep, u_int64_t > /* > * Use vt(4) by default for UEFI boot (during the sc(4)/vt(4) > * transition). > + * Once bootblocks have updated, we can test directly for > + * efi_systbl != NULL here... > */ > if (preload_search_info(kmdp, MODINFO_METADATA | MODINFOMD_EFI_MAP) > != NULL) This part doesn't seem worth changing since the EFI map is always going to be there and works for both old and new loaders? -- John Baldwin