On 7/11/2025 8:06 AM, Paolo Bonzini wrote:
max_features is always set to true for instances created by -cpu max or
-cpu host; it's always false for other classes. Therefore it can be
turned into a field in the X86CPUClass.
Signed-off-by: Paolo Bonzini <pbonz...@redhat.com>
missed one place:
----------------8<---------------
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -8302,7 +8302,7 @@ void x86_cpu_expand_features(X86CPU *cpu, Error
**errp)
}
}
- /*TODO: Now cpu->max_features doesn't overwrite features
+ /*TODO: Now xcc->max_features doesn't overwrite features
* set using QOM properties, and we can convert
* plus_features & minus_features to global properties
* inside x86_cpu_parse_featurestr() too.
with above added,
Reviewed-by: Xiaoyao Li <xiaoyao...@intel.com>