提交 8459e396 编写于 作者: E Eduardo Habkost 提交者: Andreas Färber

target-i386: Pass FeatureWord argument to report_unavailable_features()

This will help us simplify the code that calls
report_unavailable_features() later.
Signed-off-by: NEduardo Habkost <ehabkost@redhat.com>
Signed-off-by: NAndreas Färber <afaerber@suse.de>
上级 51f63aed
......@@ -1234,8 +1234,9 @@ static const TypeInfo host_x86_cpu_type_info = {
#endif
static void report_unavailable_features(FeatureWordInfo *f, uint32_t mask)
static void report_unavailable_features(FeatureWord w, uint32_t mask)
{
FeatureWordInfo *f = &feature_word_info[w];
int i;
for (i = 0; i < 32; ++i) {
......@@ -1840,7 +1841,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;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册