qemu-devel
[Top][All Lists]
Advanced

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

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


From: Eduardo Habkost
Subject: [Qemu-devel] [qom-cpu PATCH 03/10] target-i386: Pass FeatureWord argument to report_unavailable_features()
Date: Fri, 28 Feb 2014 17:21:46 -0300

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

Signed-off-by: Eduardo Habkost <address@hidden>
---
 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 b46478b..af82289 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1172,8 +1172,9 @@ static void kvm_cpu_fill_host(X86CPUDefinition 
*x86_cpu_def)
     }
 }
 
-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) {
@@ -1794,7 +1795,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]