From owner-freebsd-virtualization@FreeBSD.ORG Fri Feb 8 09:39:44 2013 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3B96B1CA for ; Fri, 8 Feb 2013 09:39:44 +0000 (UTC) (envelope-from grehan@freebsd.org) Received: from alto.onthenet.com.au (alto.OntheNet.com.au [203.13.68.12]) by mx1.freebsd.org (Postfix) with ESMTP id DCEB384B for ; Fri, 8 Feb 2013 09:39:43 +0000 (UTC) Received: from dommail.onthenet.com.au (dommail.OntheNet.com.au [203.13.70.57]) by alto.onthenet.com.au (Postfix) with ESMTPS id C6B8611B51; Fri, 8 Feb 2013 19:39:41 +1000 (EST) Received: from 192-168-1-107.tpgi.com.au (110-174-216-99.static.tpgi.com.au [110.174.216.99]) by dommail.onthenet.com.au (MOS 4.2.4-GA) with ESMTP id BJV49828 (AUTH peterg@ptree32.com.au); Fri, 8 Feb 2013 19:39:41 +1000 Message-ID: <5114C7DC.6070106@freebsd.org> Date: Fri, 08 Feb 2013 19:39:40 +1000 From: Peter Grehan User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.28) Gecko/20120306 Thunderbird/3.1.20 MIME-Version: 1.0 To: Sevan / Venture37 Subject: Re: bhyve hangs on going multi user References: <51132599.60506@gmail.com> <51136892.1020505@gmail.com> <5114361F.8060303@gmail.com> <51146575.2080602@freebsd.org> <5114C5B5.8030209@gmail.com> In-Reply-To: <5114C5B5.8030209@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-virtualization@freebsd.org X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Feb 2013 09:39:44 -0000 Hi Sevan, >>> I can now make a guest panic if I assign 4GB or more RAM. >> >> What are the memory params you are using in this case ? > > I've not made any changes on the host such as reserving memory. > I'm starting the VM like so: ... > -m 4096 Ah - that actually won't work. There has to be space for PCI MMIO decode below 4GB, so it's usually best to use up to say 2 or 3GB of RAM below the 4GB mark, leaving 1GB for PCI decode, and then put the remainder of your memory above 4G e.g. for 4GB total RAM, and using 2GB below 4G -m 2048 -M 2048 and an example 8G system: -m 2048 -M 6144 We should really error out on values too large for the '-m' parameter. later, Peter.