From owner-freebsd-virtualization@FreeBSD.ORG Mon Mar 31 18:33:09 2014 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E1BDF143 for ; Mon, 31 Mar 2014 18:33:09 +0000 (UTC) Received: from alto.onthenet.com.au (alto.OntheNet.com.au [203.13.68.12]) by mx1.freebsd.org (Postfix) with ESMTP id A4D9D37D for ; Mon, 31 Mar 2014 18:33:09 +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 1A901122B3; Tue, 1 Apr 2014 04:25:09 +1000 (EST) Received: from Peter-Grehans-MacBook-Pro-2.local ([64.245.0.210]) by dommail.onthenet.com.au (MOS 4.2.4-GA) with ESMTP id BTA22826 (AUTH peterg@ptree32.com.au); Tue, 1 Apr 2014 04:25:08 +1000 Message-ID: <5339B302.6000905@freebsd.org> Date: Mon, 31 Mar 2014 11:25:06 -0700 From: Peter Grehan User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: bRa B Subject: Re: Bhyve on a Core i7-920 References: <1396289325336661500@itaserv.net> In-Reply-To: <1396289325336661500@itaserv.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-virtualization@freebsd.org X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.17 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: Mon, 31 Mar 2014 18:33:09 -0000 Hi Brando, > ​Howdy folks, i have encountered a strange issue when i was trying to > run CentOS 6.5 with bhyve on a server with 11.0-CURRENT FreeBSD > Installed: > > VM unrestricted guest capability required Error in initializing VM > > the machine has 48GB of ram, and the cpu is a i7 920 as stated in the > subject of this email. It has the instructions required to run bhyve > ( VMX and POPCNT, as they appear in the dmesg log and in the Intel's > Ark: > http://ark.intel.com/products/37147/Intel-Core-i7-920-Processor-8M-Cache-2_66-GHz-4_80-GTs-Intel-QPI?q=core%20i7-920 > ). > > Is there something wrong with this CPU? The 920 aka 'Bloomfield' is a first-generation Nehalem: http://en.wikipedia.org/wiki/Intel_Core#Core_i7 That particular model doesn't have support for 16-bit real mode/32-bit protected/unpaged mode (aka "flat"). This is required for MP support for FreeBSD, or Linux support, since grub starts Linux in 32-bit flat mode. The VT-x feature that enables supports for this is known as 'unrestricted guest', and was introduced in the Westmere microarch. It *may* be possible to get Linux working with grub-bhyve by adding support to start it directly in 64-bit mode, but it would be UP only. later, Peter.