[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH qom-cpu v2 10/10] target-i386: Support check/enforce
From: |
Eduardo Habkost |
Subject: |
[Qemu-devel] [PATCH qom-cpu v2 10/10] target-i386: Support check/enforce flags in TCG mode, too |
Date: |
Mon, 17 Mar 2014 16:51:54 -0300 |
If enforce/check is specified in TCG mode, QEMU will ensure all CPU
features are supported by TCG, so no CPU feature is silently disabled.
Signed-off-by: Eduardo Habkost <address@hidden>
Reviewed-by: Richard Henderson <address@hidden>
---
target-i386/cpu.c | 34 ++++++++++++++++------------------
1 file changed, 16 insertions(+), 18 deletions(-)
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index 5aa5f94..559df7b 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1259,8 +1259,9 @@ static int report_unavailable_features(FeatureWord w,
uint32_t mask)
if (1 << i & mask) {
const char *reg = get_register_name_32(f->cpuid_reg);
assert(reg);
- fprintf(stderr, "warning: host doesn't support requested feature: "
+ fprintf(stderr, "warning: %s doesn't support requested feature: "
"CPUID.%02XH:%s%s%s [bit %d]\n",
+ kvm_enabled() ? "host" : "TCG",
f->cpuid_eax, reg,
f->feat_names[i] ? "." : "",
f->feat_names[i] ? f->feat_names[i] : "", i);
@@ -1830,17 +1831,18 @@ CpuDefinitionInfoList *arch_query_cpu_definitions(Error
**errp)
static uint32_t x86_cpu_get_supported_feature_word(FeatureWord w)
{
FeatureWordInfo *wi = &feature_word_info[w];
- assert(kvm_enabled());
- return kvm_arch_get_supported_cpuid(kvm_state, wi->cpuid_eax,
- wi->cpuid_ecx,
- wi->cpuid_reg);
+ if (kvm_enabled()) {
+ return kvm_arch_get_supported_cpuid(kvm_state, wi->cpuid_eax,
+ wi->cpuid_ecx,
+ wi->cpuid_reg);
+ } else {
+ return wi->tcg_features;
+ }
}
/* Filters CPU feature words based on host availability of each feature
*
* Returns 0 if all flags are supported by the host, non-zero otherwise.
- *
- * This function may be called only if KVM is enabled.
*/
static int x86_cpu_filter_features(X86CPU *cpu)
{
@@ -2598,17 +2600,13 @@ static void x86_cpu_realizefn(DeviceState *dev, Error
**errp)
& CPUID_EXT2_AMD_ALIASES);
}
- if (!kvm_enabled()) {
- FeatureWord w;
- for (w = 0; w < FEATURE_WORDS; w++) {
- env->features[w] &= feature_word_info[w].tcg_features;
- }
- } else {
- if (x86_cpu_filter_features(cpu) && cpu->enforce_cpuid) {
- error_setg(&local_err,
- "Host's CPU doesn't support requested features");
- goto out;
- }
+
+ if (x86_cpu_filter_features(cpu) && cpu->enforce_cpuid) {
+ error_setg(&local_err,
+ kvm_enabled() ?
+ "Host doesn't support requested features" :
+ "TCG doesn't support requested features");
+ goto out;
}
#ifndef CONFIG_USER_ONLY
--
1.8.5.3
- [Qemu-devel] [PATCH qom-cpu v2 00/10] target-i386: Support check/enforce flags in TCG mode, too, Eduardo Habkost, 2014/03/17
- [Qemu-devel] [PATCH qom-cpu v2 02/10] target-i386: Merge feature filtering/checking functions, Eduardo Habkost, 2014/03/17
- [Qemu-devel] [PATCH qom-cpu v2 04/10] target-i386: Isolate KVM-specific code on CPU feature filtering logic, Eduardo Habkost, 2014/03/17
- [Qemu-devel] [PATCH qom-cpu v2 03/10] target-i386: Pass FeatureWord argument to report_unavailable_features(), Eduardo Habkost, 2014/03/17
- [Qemu-devel] [PATCH qom-cpu v2 05/10] target-i386: Make TCG feature filtering more readable, Eduardo Habkost, 2014/03/17
- [Qemu-devel] [PATCH qom-cpu v2 06/10] target-i386: Filter FEAT_7_0_EBX TCG features too, Eduardo Habkost, 2014/03/17
- [Qemu-devel] [PATCH qom-cpu v2 07/10] target-i386: Filter KVM and 0xC0000001 features on TCG, Eduardo Habkost, 2014/03/17
- [Qemu-devel] [PATCH qom-cpu v2 08/10] target-i386: Define TCG_*_FEATURES earlier on cpu.c, Eduardo Habkost, 2014/03/17
- [Qemu-devel] [PATCH qom-cpu v2 09/10] target-i386: Loop-based feature word filtering in TCG mode, Eduardo Habkost, 2014/03/17
- [Qemu-devel] [PATCH qom-cpu v2 10/10] target-i386: Support check/enforce flags in TCG mode, too,
Eduardo Habkost <=
- [Qemu-devel] [PATCH qom-cpu v2 01/10] target-i386: Simplify reporting of unavailable features, Eduardo Habkost, 2014/03/17