From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40196) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vkfmf-0007Oj-EG for qemu-devel@nongnu.org; Sun, 24 Nov 2013 14:56:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VkfmX-0003Ab-Q2 for qemu-devel@nongnu.org; Sun, 24 Nov 2013 14:55:57 -0500 Received: from mx1.redhat.com ([209.132.183.28]:17177) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VkfmX-0003AX-He for qemu-devel@nongnu.org; Sun, 24 Nov 2013 14:55:49 -0500 From: Eduardo Habkost Date: Sun, 24 Nov 2013 17:55:33 -0200 Message-Id: <1385322940-27325-2-git-send-email-ehabkost@redhat.com> In-Reply-To: <1385322940-27325-1-git-send-email-ehabkost@redhat.com> References: <1385322940-27325-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH 1/8] target-i386: kvm_cpu_fill_host(): Kill unused code List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= Those host_cpuid() calls are useless. They are leftovers from when the old code using host_cpuid() was removed. Signed-off-by: Eduardo Habkost --- target-i386/cpu.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 864c80e..5796c6d 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1181,12 +1181,10 @@ static void kvm_cpu_fill_host(x86_def_t *x86_cpu_def) /* Call Centaur's CPUID instruction. */ if (!strcmp(x86_cpu_def->vendor, CPUID_VENDOR_VIA)) { - host_cpuid(0xC0000000, 0, &eax, &ebx, &ecx, &edx); eax = kvm_arch_get_supported_cpuid(s, 0xC0000000, 0, R_EAX); if (eax >= 0xC0000001) { /* Support VIA max extended level */ x86_cpu_def->xlevel2 = eax; - host_cpuid(0xC0000001, 0, &eax, &ebx, &ecx, &edx); x86_cpu_def->features[FEAT_C000_0001_EDX] = kvm_arch_get_supported_cpuid(s, 0xC0000001, 0, R_EDX); } -- 1.8.3.1