From: Paul Lai Date: Tue, 16 Jul 2019 15:58:08 +0000 (-0700) Subject: i386: Fix Snowridge CPU model name and features X-Git-Tag: qemu-xen-4.13.0-rc1~30^2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=ff656fcd338a70c4d9783a800733c4ab3806e5b0;p=qemu-xen.git i386: Fix Snowridge CPU model name and features Changing the name to Snowridge from SnowRidge-Server. There is no client model of Snowridge, so "-Server" is unnecessary. Removing CPUID_EXT_VMX from Snowridge cpu feature list. Signed-off-by: Paul Lai Tested-by: Tao3 Xu Message-Id: <20190716155808.25010-1-paul.c.lai@intel.com> Signed-off-by: Eduardo Habkost --- diff --git a/target/i386/cpu.c b/target/i386/cpu.c index e3320f5e92..19751e37a7 100644 --- a/target/i386/cpu.c +++ b/target/i386/cpu.c @@ -2472,7 +2472,7 @@ static X86CPUDefinition builtin_x86_defs[] = { .model_id = "Intel Xeon Processor (Icelake)", }, { - .name = "SnowRidge-Server", + .name = "Snowridge", .level = 27, .vendor = CPUID_VENDOR_INTEL, .family = 6, @@ -2490,7 +2490,6 @@ static X86CPUDefinition builtin_x86_defs[] = { CPUID_FXSR | CPUID_SSE | CPUID_SSE2, .features[FEAT_1_ECX] = CPUID_EXT_SSE3 | CPUID_EXT_PCLMULQDQ | CPUID_EXT_MONITOR | - CPUID_EXT_VMX | CPUID_EXT_SSSE3 | CPUID_EXT_CX16 | CPUID_EXT_SSE41 |