From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60231) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCNJF-0002Sb-4z for qemu-devel@nongnu.org; Mon, 13 Jun 2016 04:33:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCNJB-00044h-3f for qemu-devel@nongnu.org; Mon, 13 Jun 2016 04:33:25 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56694) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCNJA-00044X-V3 for qemu-devel@nongnu.org; Mon, 13 Jun 2016 04:33:21 -0400 References: <20160603060944.17373-1-haozhong.zhang@intel.com> <20160603060944.17373-2-haozhong.zhang@intel.com> <20160603155753.GA15222@potion> <10fb3041-9b08-ea31-a04d-76169313fc21@redhat.com> <20160613075550.4ikqkejen27zlcpr@hz-desktop> From: Paolo Bonzini Message-ID: <3c94eb13-8d83-a66d-5ee7-0e63a4cc4501@redhat.com> Date: Mon, 13 Jun 2016 10:33:12 +0200 MIME-Version: 1.0 In-Reply-To: <20160613075550.4ikqkejen27zlcpr@hz-desktop> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 1/2] target-i386: KVM: add basic Intel LMCE support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?B?UmFkaW0gS3LEjW3DocWZ?= , qemu-devel@nongnu.org, Richard Henderson , Eduardo Habkost , Marcelo Tosatti , "Michael S . Tsirkin" , kvm@vger.kernel.org, Boris Petkov , Tony Luck , Andi Kleen , Ashok Raj On 13/06/2016 09:55, Haozhong Zhang wrote: > Currently, only VMX bits (bit 1 & 2), LMCE bit (bit 20) as well as > lock bit (bit 0) in MSR_IA32_FEATURE_CONTROL are used for guest. The > availability of features indicated by those bits (except the lock bit) > can be discovered from cpuid and other MSR, so it looks not necessary > to publish them via fw_cfg. Or do you have other concerns? I would prefer to avoid having to change the firmware (SeaBIOS and OVMF) every time a new bit is added. Using fw_cfg makes it possible to develop the feature in the firmware once and for all. Paolo