From owner-freebsd-current@FreeBSD.ORG Tue Feb 23 17:04:44 2010 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05F841065672 for ; Tue, 23 Feb 2010 17:04:44 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id B59EB8FC15 for ; Tue, 23 Feb 2010 17:04:43 +0000 (UTC) Received: from bigwig.baldwin.cx (66.111.2.69.static.nyinternet.net [66.111.2.69]) by cyrus.watson.org (Postfix) with ESMTPSA id 6205C46B35; Tue, 23 Feb 2010 12:04:43 -0500 (EST) Received: from jhbbsd.localnet (smtp.hudson-trading.com [209.249.190.9]) by bigwig.baldwin.cx (Postfix) with ESMTPA id AB4EA8A021; Tue, 23 Feb 2010 12:04:42 -0500 (EST) From: John Baldwin To: freebsd-current@freebsd.org Date: Tue, 23 Feb 2010 11:24:31 -0500 User-Agent: KMail/1.12.1 (FreeBSD/7.2-CBSD-20100120; KDE/4.3.1; amd64; ; ) References: <747dc8f31002220835g481b0baeqb1d6df32a79b7da2@mail.gmail.com> <4B83D821.6000207@icyb.net.ua> <179b97fb1002230728l4294916cs6b4b9a18b18f044a@mail.gmail.com> In-Reply-To: <179b97fb1002230728l4294916cs6b4b9a18b18f044a@mail.gmail.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201002231124.31872.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (bigwig.baldwin.cx); Tue, 23 Feb 2010 12:04:42 -0500 (EST) X-Virus-Scanned: clamav-milter 0.95.1 at bigwig.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-1.3 required=4.2 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bigwig.baldwin.cx Cc: Brandon Gooch Subject: ZFS boot problems with memory > 1MB X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Feb 2010 17:04:44 -0000 On Tuesday 23 February 2010 10:28:49 am Brandon Gooch wrote: > On Tue, Feb 23, 2010 at 7:29 AM, Andriy Gapon wrote: > > on 23/02/2010 13:18 Renato Botelho said the following: > >> On Mon, Feb 22, 2010 at 7:35 PM, Chris Hedley > >> wrote: > > [snip] > >>> Do you have USB legacy support enabled in your BIOS? I'm not sure if > >>> there's an option for the loader to use USB devices natively, but the BIOS's > >>> legacy option where it provides AT/PS2 emulation is probably the easiest way > >>> to get the keyboard working. > >> > >> Yes, I do, but it seems to be a regression on FreeBSD itself, I had this problem > >> in the past and I checked the same things i need to check in the past again and > >> everything is fine. > > > > A more precise way to state that would be "a regression in FreeBSD boot/loader". > > I think that you are referring to the issue that was fixed by r189017. > > It might be worthwhile investigating what was done in that revision and what > > happened in sys/boot code since then. > > > > One possibility is that your BIOS uses memory above 1MB for USB emulation, but > > doesn't mark that memory as used in system memory map. In that case that memory > > could be overwritten by the loader. If that's true then the blame is on the BIOS. > > Alternatively, our code might be parsing the system memory map incorrectly. > > But I am just making wild guesses here. > > > > I don't know if it is at all related, but this commit has caused > problems for me booting at least one of my machines: > > http://svn.freebsd.org/viewvc/base/head/sys/boot/i386/zfsboot/zfsboot.c?r1=199714&r2=200309 > > Commit message: > > Revision 200309 - (view) (annotate) - [select for diffs] > Modified Wed Dec 9 20:36:56 2009 UTC (2 months, 2 weeks ago) by jhb > File length: 24893 byte(s) > Diff to previous 199714 > - Port bios_getmem() from libi386 to {gpt,}zfsboot() and use it to > safely allocate a heap region above 1MB. This enables {gpt,}zfsboot() > to allocate much larger buffers than before. > - Use a larger buffer (1MB instead of 128K) for temporary ZFS buffers. This > allows more reliable reading of compressed files in a raidz/raidz2 pool. > > Submitted by: Matt Reimer mattjreimer of gmail > MFC after: 1 week Starting a new thread, which problems are you seeing with this change? ZFS is a good bit more memory hungry than UFS, so it really needs to use high memory for its heap. Also, I wonder if you still have problems if you use the older zfsboot with the newer zfsloader? Finally, you need to use disklabel -B or some such to update the zfsboot bits for this change to take effect. -- John Baldwin