diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2014-10-03 16:39:47 -0300 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2014-11-03 19:39:10 +0100 |
commit | 1cadaa9482244f7d6477afc34c04a5dad84afdde (patch) | |
tree | 1f4f6ebba9c72e257b55c7e5e34e7d35370e333c /hw/i386/pc_q35.c | |
parent | 179b9f40f2582de75bd63a11040ae8f7437096b6 (diff) | |
download | qemu-1cadaa9482244f7d6477afc34c04a5dad84afdde.zip |
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>
Diffstat (limited to 'hw/i386/pc_q35.c')
-rw-r--r-- | hw/i386/pc_q35.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c index bdb1a37769..d2484746c3 100644 --- a/hw/i386/pc_q35.c +++ b/hw/i386/pc_q35.c @@ -299,7 +299,7 @@ static void pc_compat_1_7(MachineState *machine) smbios_defaults = false; gigabyte_align = false; option_rom_has_mr = true; - x86_cpu_compat_disable_kvm_features(FEAT_1_ECX, CPUID_EXT_X2APIC); + x86_cpu_compat_kvm_no_autoenable(FEAT_1_ECX, CPUID_EXT_X2APIC); } static void pc_compat_1_6(MachineState *machine) |