]> Git Repo - qemu.git/commitdiff
i386: Remove osxsave CPUID flag name
authorEduardo Habkost <[email protected]>
Mon, 11 Jun 2018 20:38:55 +0000 (17:38 -0300)
committerEduardo Habkost <[email protected]>
Fri, 22 Jun 2018 18:01:15 +0000 (15:01 -0300)
OSXAVE is not a static feature flag: it changes dynamically at
runtime depending on CR4, and it was never configurable: KVM
never returned OSXSAVE on GET_SUPPORTED_CPUID, and it is not
included in TCG_EXT_FEATURES.

Remove OSXSAVE from the feature name array so users don't try to
configure it manually.

Signed-off-by: Eduardo Habkost <[email protected]>
Message-Id: <20180611203855[email protected]>
Reviewed-by: Richard Henderson <[email protected]>
Signed-off-by: Eduardo Habkost <[email protected]>
target/i386/cpu.c

index 9da49204216be85371785993fc53c3e5a58c3059..60deae31001595bcf50fe6744fa9533332e07c8e 100644 (file)
@@ -788,7 +788,7 @@ static FeatureWordInfo feature_word_info[FEATURE_WORDS] = {
             "fma", "cx16", "xtpr", "pdcm",
             NULL, "pcid", "dca", "sse4.1",
             "sse4.2", "x2apic", "movbe", "popcnt",
-            "tsc-deadline", "aes", "xsave", "osxsave",
+            "tsc-deadline", "aes", "xsave", NULL /* osxsave */,
             "avx", "f16c", "rdrand", "hypervisor",
         },
         .cpuid_eax = 1, .cpuid_reg = R_ECX,
This page took 0.033658 seconds and 4 git commands to generate.