mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
target-i386: Rename KVM auto-feature-enable compat function
The x86_cpu_compat_disable_kvm_features() name was a bit confusing, as it won't forcibly disable the feature for all CPU models (i.e. add it to kvm_default_unset_features), but it will instead turn off the KVM auto-enabling of the feature (i.e. remove it from kvm_default_features), meaning the feature may still be enabled by default in some CPU models). Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
179b9f40f2
commit
1cadaa9482
4 changed files with 6 additions and 6 deletions
|
@ -462,7 +462,7 @@ static uint32_t kvm_default_unset_features[FEATURE_WORDS] = {
|
|||
[FEAT_1_ECX] = CPUID_EXT_MONITOR,
|
||||
};
|
||||
|
||||
void x86_cpu_compat_disable_kvm_features(FeatureWord w, uint32_t features)
|
||||
void x86_cpu_compat_kvm_no_autoenable(FeatureWord w, uint32_t features)
|
||||
{
|
||||
kvm_default_features[w] &= ~features;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue