|
|
619821 |
From 6d76a3d10423f99561a431964637b58d7e5f2e77 Mon Sep 17 00:00:00 2001
|
|
|
619821 |
From: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
619821 |
Date: Thu, 23 Feb 2017 14:29:39 +0100
|
|
|
619821 |
Subject: [PATCH 09/17] target-i386: kvm_check_features_against_host(): Kill
|
|
|
619821 |
feature word array
|
|
|
619821 |
|
|
|
619821 |
RH-Author: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
619821 |
Message-id: <20170223142945.17790-9-ehabkost@redhat.com>
|
|
|
619821 |
Patchwork-id: 74039
|
|
|
619821 |
O-Subject: [RHEL-7.4 qemu-kvm PATCH v2 08/14] target-i386: kvm_check_features_against_host(): Kill feature word array
|
|
|
619821 |
Bugzilla: 1382122
|
|
|
619821 |
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
619821 |
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
|
|
|
619821 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
619821 |
|
|
|
619821 |
We don't need the ft[] array on kvm_check_features_against_host()
|
|
|
619821 |
anymore, as we can simply use the feature_word_info[] array, that has
|
|
|
619821 |
everything we need.
|
|
|
619821 |
|
|
|
619821 |
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
619821 |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
619821 |
(cherry picked from commit f0b9b11164482a8a2283dee25cecc4a4c531259e)
|
|
|
619821 |
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
619821 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
619821 |
---
|
|
|
619821 |
target-i386/cpu.c | 57 ++++++++++++-------------------------------------------
|
|
|
619821 |
1 file changed, 12 insertions(+), 45 deletions(-)
|
|
|
619821 |
|
|
|
619821 |
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
|
|
|
619821 |
index 22ad4f9..bb8abf7 100644
|
|
|
619821 |
--- a/target-i386/cpu.c
|
|
|
619821 |
+++ b/target-i386/cpu.c
|
|
|
619821 |
@@ -1303,57 +1303,23 @@ static int unavailable_host_feature(FeatureWordInfo *f, uint32_t mask)
|
|
|
619821 |
*
|
|
|
619821 |
* This function may be called only if KVM is enabled.
|
|
|
619821 |
*/
|
|
|
619821 |
-static int kvm_check_features_against_host(X86CPU *cpu)
|
|
|
619821 |
+static int kvm_check_features_against_host(KVMState *s, X86CPU *cpu)
|
|
|
619821 |
{
|
|
|
619821 |
CPUX86State *env = &cpu->env;
|
|
|
619821 |
- x86_def_t host_def;
|
|
|
619821 |
- uint32_t mask;
|
|
|
619821 |
- int rv, i;
|
|
|
619821 |
- struct model_features_t ft[] = {
|
|
|
619821 |
- {&env->features[FEAT_1_EDX],
|
|
|
619821 |
- &host_def.features[FEAT_1_EDX],
|
|
|
619821 |
- FEAT_1_EDX },
|
|
|
619821 |
- {&env->features[FEAT_1_ECX],
|
|
|
619821 |
- &host_def.features[FEAT_1_ECX],
|
|
|
619821 |
- FEAT_1_ECX },
|
|
|
619821 |
- {&env->features[FEAT_8000_0001_EDX],
|
|
|
619821 |
- &host_def.features[FEAT_8000_0001_EDX],
|
|
|
619821 |
- FEAT_8000_0001_EDX },
|
|
|
619821 |
- {&env->features[FEAT_8000_0001_ECX],
|
|
|
619821 |
- &host_def.features[FEAT_8000_0001_ECX],
|
|
|
619821 |
- FEAT_8000_0001_ECX },
|
|
|
619821 |
- {&env->features[FEAT_C000_0001_EDX],
|
|
|
619821 |
- &host_def.features[FEAT_C000_0001_EDX],
|
|
|
619821 |
- FEAT_C000_0001_EDX },
|
|
|
619821 |
- {&env->features[FEAT_7_0_EBX],
|
|
|
619821 |
- &host_def.features[FEAT_7_0_EBX],
|
|
|
619821 |
- FEAT_7_0_EBX },
|
|
|
619821 |
- {&env->features[FEAT_7_0_ECX],
|
|
|
619821 |
- &host_def.features[FEAT_7_0_ECX],
|
|
|
619821 |
- FEAT_7_0_ECX },
|
|
|
619821 |
- {&env->features[FEAT_7_0_EDX],
|
|
|
619821 |
- &host_def.features[FEAT_7_0_EDX],
|
|
|
619821 |
- FEAT_7_0_EDX },
|
|
|
619821 |
- {&env->features[FEAT_XSAVE],
|
|
|
619821 |
- &host_def.features[FEAT_XSAVE],
|
|
|
619821 |
- FEAT_XSAVE },
|
|
|
619821 |
- {&env->features[FEAT_SVM],
|
|
|
619821 |
- &host_def.features[FEAT_SVM],
|
|
|
619821 |
- FEAT_SVM },
|
|
|
619821 |
- {&env->features[FEAT_KVM],
|
|
|
619821 |
- &host_def.features[FEAT_KVM],
|
|
|
619821 |
- FEAT_KVM },
|
|
|
619821 |
- };
|
|
|
619821 |
+ int rv = 0;
|
|
|
619821 |
+ FeatureWord w;
|
|
|
619821 |
|
|
|
619821 |
assert(kvm_enabled());
|
|
|
619821 |
|
|
|
619821 |
- kvm_cpu_fill_host(&host_def);
|
|
|
619821 |
- for (rv = 0, i = 0; i < ARRAY_SIZE(ft); ++i) {
|
|
|
619821 |
- FeatureWord w = ft[i].feat_word;
|
|
|
619821 |
+ for (w = 0; w < FEATURE_WORDS; w++) {
|
|
|
619821 |
FeatureWordInfo *wi = &feature_word_info[w];
|
|
|
619821 |
+ uint32_t guest_feat = env->features[w];
|
|
|
619821 |
+ uint32_t host_feat = kvm_arch_get_supported_cpuid(s, wi->cpuid_eax,
|
|
|
619821 |
+ wi->cpuid_ecx,
|
|
|
619821 |
+ wi->cpuid_reg);
|
|
|
619821 |
+ uint32_t mask;
|
|
|
619821 |
for (mask = 1; mask; mask <<= 1) {
|
|
|
619821 |
- if (*ft[i].guest_feat & mask &&
|
|
|
619821 |
- !(*ft[i].host_feat & mask)) {
|
|
|
619821 |
+ if (guest_feat & mask && !(host_feat & mask)) {
|
|
|
619821 |
unavailable_host_feature(wi, mask);
|
|
|
619821 |
rv = 1;
|
|
|
619821 |
}
|
|
|
619821 |
@@ -2677,8 +2643,9 @@ static void x86_cpu_realizefn(DeviceState *dev, Error **errp)
|
|
|
619821 |
env->features[FEAT_7_0_ECX] &= TCG_7_0_ECX_FEATURES;
|
|
|
619821 |
env->features[FEAT_7_0_EDX] &= TCG_7_0_EDX_FEATURES;
|
|
|
619821 |
} else {
|
|
|
619821 |
+ KVMState *s = kvm_state;
|
|
|
619821 |
if ((cpu->check_cpuid || cpu->enforce_cpuid)
|
|
|
619821 |
- && kvm_check_features_against_host(cpu) && cpu->enforce_cpuid) {
|
|
|
619821 |
+ && kvm_check_features_against_host(s, cpu) && cpu->enforce_cpuid) {
|
|
|
619821 |
error_setg(&local_err,
|
|
|
619821 |
"Host's CPU doesn't support requested features");
|
|
|
619821 |
goto out;
|
|
|
619821 |
--
|
|
|
619821 |
1.8.3.1
|
|
|
619821 |
|