From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39537) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TRqvy-0007RO-Ih for qemu-devel@nongnu.org; Fri, 26 Oct 2012 16:55:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TRqvx-0000J8-8T for qemu-devel@nongnu.org; Fri, 26 Oct 2012 16:55:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:63776) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TRqvx-0000Ih-0D for qemu-devel@nongnu.org; Fri, 26 Oct 2012 16:55:13 -0400 Date: Fri, 26 Oct 2012 18:39:53 -0200 From: Marcelo Tosatti Message-ID: <20121026203953.GA4991@amt.cnet> References: <1350071004-22756-1-git-send-email-Don@CloudSwitch.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1350071004-22756-1-git-send-email-Don@CloudSwitch.com> Subject: Re: [Qemu-devel] [PATCH v7 1/1] target-i386: Add missing kvm bits. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Don Slutz Cc: peter.maydell@linaro.org, ehabkost@redhat.com, kvm@vger.kernel.org, qemu-devel@nongnu.org, avi@redhat.com, anthony@codemonkey.ws, imammedo@redhat.com, afaerber@suse.de On Fri, Oct 12, 2012 at 03:43:23PM -0400, Don Slutz wrote: > Currently "-cpu host,-kvmclock,-kvm_nopiodelay,-kvm_mmu" does not > turn off all bits in CPUID 0x40000001 EAX. > > The missing ones are KVM_FEATURE_STEAL_TIME and > KVM_FEATURE_CLOCKSOURCE_STABLE_BIT. > > This adds the names kvm_steal_time and kvm_clock_stable for these > bits. > > Signed-off-by: Don Slutz It does not make sense to expose KVM_FEATURE_STEAL_TIME to the user (as its going to be controlled by the kernel), applied with kvm_steal_time addition only. Thanks.