This will help us simplify the code that calls report_unavailable_features() later.
Signed-off-by: Eduardo Habkost <ehabk...@redhat.com> --- 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