From: "Andreas Färber" <afaerber@suse.de>
To: qemu-devel@nongnu.org
Cc: "Eduardo Habkost" <ehabkost@redhat.com>,
"Andreas Färber" <afaerber@suse.de>
Subject: [Qemu-devel] [PULL 03/19] target-i386: Merge feature filtering/checking functions
Date: Thu, 26 Jun 2014 00:12:03 +0200 [thread overview]
Message-ID: <1403734339-14405-4-git-send-email-afaerber@suse.de> (raw)
In-Reply-To: <1403734339-14405-1-git-send-email-afaerber@suse.de>
From: Eduardo Habkost <ehabkost@redhat.com>
Merge filter_features_for_kvm() and kvm_check_features_against_host().
Both functions made exactly the same calculations, the only difference
was that filter_features_for_kvm() changed the bits on cpu->features[],
and kvm_check_features_against_host() did error reporting.
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
---
target-i386/cpu.c | 54 ++++++++++++++++++++----------------------------------
1 file changed, 20 insertions(+), 34 deletions(-)
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index e848f9c..f8c4993 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1251,35 +1251,6 @@ static void report_unavailable_features(FeatureWordInfo *f, uint32_t mask)
}
}
-/* Check if all requested cpu flags are making their way to the guest
- *
- * 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 kvm_check_features_against_host(KVMState *s, X86CPU *cpu)
-{
- CPUX86State *env = &cpu->env;
- int rv = 0;
- FeatureWord w;
-
- assert(kvm_enabled());
-
- for (w = 0; w < FEATURE_WORDS; w++) {
- FeatureWordInfo *wi = &feature_word_info[w];
- uint32_t guest_feat = env->features[w];
- uint32_t host_feat = kvm_arch_get_supported_cpuid(s, wi->cpuid_eax,
- wi->cpuid_ecx,
- wi->cpuid_reg);
- uint32_t unavailable_features = guest_feat & ~host_feat;
- if (unavailable_features) {
- report_unavailable_features(wi, unavailable_features);
- rv = 1;
- }
- }
- return rv;
-}
-
static void x86_cpuid_version_get_family(Object *obj, Visitor *v, void *opaque,
const char *name, Error **errp)
{
@@ -1843,11 +1814,21 @@ CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
return cpu_list;
}
-static void filter_features_for_kvm(X86CPU *cpu)
+/*
+ * Filters CPU feature words based on host availability of each feature.
+ *
+ * This function may be called only if KVM is enabled.
+ *
+ * Returns: 0 if all flags are supported by the host, non-zero otherwise.
+ */
+static int filter_features_for_kvm(X86CPU *cpu)
{
CPUX86State *env = &cpu->env;
KVMState *s = kvm_state;
FeatureWord w;
+ int rv = 0;
+
+ assert(kvm_enabled());
for (w = 0; w < FEATURE_WORDS; w++) {
FeatureWordInfo *wi = &feature_word_info[w];
@@ -1857,7 +1838,15 @@ static void filter_features_for_kvm(X86CPU *cpu)
uint32_t requested_features = env->features[w];
env->features[w] &= host_feat;
cpu->filtered_features[w] = requested_features & ~env->features[w];
+ if (cpu->filtered_features[w]) {
+ if (cpu->check_cpuid || cpu->enforce_cpuid) {
+ report_unavailable_features(wi, cpu->filtered_features[w]);
+ }
+ rv = 1;
+ }
}
+
+ return rv;
}
/* Load data from X86CPUDefinition
@@ -2608,14 +2597,11 @@ static void x86_cpu_realizefn(DeviceState *dev, Error **errp)
env->features[FEAT_8000_0001_ECX] &= TCG_EXT3_FEATURES;
env->features[FEAT_SVM] &= TCG_SVM_FEATURES;
} else {
- KVMState *s = kvm_state;
- if ((cpu->check_cpuid || cpu->enforce_cpuid)
- && kvm_check_features_against_host(s, cpu) && cpu->enforce_cpuid) {
+ if (filter_features_for_kvm(cpu) && cpu->enforce_cpuid) {
error_setg(&local_err,
"Host's CPU doesn't support requested features");
goto out;
}
- filter_features_for_kvm(cpu);
}
#ifndef CONFIG_USER_ONLY
--
1.8.4.5
next prev parent reply other threads:[~2014-06-25 22:12 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-25 22:12 [Qemu-devel] [PULL 00/19] QOM CPUState patch queue 2014-06-26 Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 01/19] target-i386: kvm: Don't enable MONITOR by default on any CPU model Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 02/19] target-i386: Simplify reporting of unavailable features Andreas Färber
2014-06-25 22:12 ` Andreas Färber [this message]
2014-06-25 22:12 ` [Qemu-devel] [PULL 04/19] target-i386: Pass FeatureWord argument to report_unavailable_features() Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 05/19] target-i386: Isolate KVM-specific code on CPU feature filtering logic Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 06/19] target-i386: Make TCG feature filtering more readable Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 07/19] target-i386: Filter FEAT_7_0_EBX TCG features too Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 08/19] target-i386: Filter KVM and 0xC0000001 features on TCG Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 09/19] target-i386: Define TCG_*_FEATURES earlier in cpu.c Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 10/19] target-i386: Loop-based copying and setting/unsetting of feature words Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 11/19] target-i386: Loop-based feature word filtering in TCG mode Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 12/19] target-i386: Support check/enforce flags in TCG mode, too Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 13/19] target-i386: Add "migratable" property to "host" CPU model Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 14/19] target-i386: Set migratable=yes by default on "host" CPU mooel Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 15/19] savevm: check vmsd for migratability status Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 16/19] target-i386: block migration and savevm if invariant tsc is exposed Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 17/19] target-i386: Support "invariant tsc" flag Andreas Färber
2014-08-08 7:07 ` chenliang (T)
2014-08-08 21:42 ` Marcelo Tosatti
2014-06-25 22:12 ` [Qemu-devel] [PULL 18/19] target-i386: Fix indentation of CPU model definitions Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 19/19] target-i386: Broadwell CPU model Andreas Färber
2014-06-26 12:57 ` [Qemu-devel] [PULL 00/19] QOM CPUState patch queue 2014-06-26 Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1403734339-14405-4-git-send-email-afaerber@suse.de \
--to=afaerber@suse.de \
--cc=ehabkost@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).