From mboxrd@z Thu Jan 1 00:00:00 1970 From: Don Slutz Subject: [PATCH v3 17/17] target-i386: Use Hypervisor leaf extra in -machine pc,accel=tcg. Date: Mon, 17 Sep 2012 09:39:49 -0400 Message-ID: <1347889189-9199-26-git-send-email-Don@CloudSwitch.com> References: <1346354435-21685-1-git-send-email-Don@CloudSwitch.com> Mime-Version: 1.0 Content-Type: text/plain Cc: Don Slutz To: , , , , , , , , Return-path: Received: from hub021-nj-2.exch021.serverdata.net ([206.225.164.217]:48071 "EHLO hub021-nj-2.exch021.serverdata.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754175Ab2IQNkw (ORCPT ); Mon, 17 Sep 2012 09:40:52 -0400 In-Reply-To: <1346354435-21685-1-git-send-email-Don@CloudSwitch.com> Sender: kvm-owner@vger.kernel.org List-ID: Signed-off-by: Don Slutz --- target-i386/cpu.c | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index bfaee02..89a45b5 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1975,6 +1975,17 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count, *ecx = 0; *edx = 0; break; + case 0x40000002 ... 0x400000FF: + if (index == env->cpuid_hv_extra) { + *eax = env->cpuid_hv_extra_a; + *ebx = env->cpuid_hv_extra_b; + } else { + *eax = 0; + *ebx = 0; + } + *ecx = 0; + *edx = 0; + break; case 0x80000000: *eax = env->cpuid_xlevel; *ebx = env->cpuid_vendor1; -- 1.7.1