qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH qom-cpu v2 03/10] target-i386: Pass FeatureWord argu


From: Eduardo Habkost
Subject: [Qemu-devel] [PATCH qom-cpu v2 03/10] target-i386: Pass FeatureWord argument to report_unavailable_features()
Date: Mon, 17 Mar 2014 16:45:00 -0300

This will help us simplify the code that calls
report_unavailable_features() later.

Signed-off-by: Eduardo Habkost <address@hidden>
---
Changes v1 -> v2:
 * Rebase to latest qom-cpu (commit 90c5d39c)
---
 target-i386/cpu.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index a704541..5b8e0de 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1230,8 +1230,9 @@ static const TypeInfo host_x86_cpu_type_info = {
 
 #endif
 
-static int report_unavailable_features(FeatureWordInfo *f, uint32_t mask)
+static int report_unavailable_features(FeatureWord w, uint32_t mask)
 {
+    FeatureWordInfo *f = &feature_word_info[w];
     int i;
 
     for (i = 0; i < 32; ++i) {
@@ -1831,7 +1832,7 @@ static int filter_features_for_kvm(X86CPU *cpu)
         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]);
+                report_unavailable_features(w, cpu->filtered_features[w]);
             }
             rv = 1;
         }
-- 
1.8.5.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]