diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2015-09-11 12:40:27 -0300 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2015-10-02 16:22:01 -0300 |
commit | 5114e8422201190c3e2e1a4d77e38ad70cf001d2 (patch) | |
tree | 1d45505e66a63597795f92b1e29442b9d672ed45 /target-i386/cpu.h | |
parent | a32ef3bfc12c8d0588f43f74dcc5280885bbdb30 (diff) | |
download | qemu-5114e8422201190c3e2e1a4d77e38ad70cf001d2.zip qemu-5114e8422201190c3e2e1a4d77e38ad70cf001d2.tar.gz qemu-5114e8422201190c3e2e1a4d77e38ad70cf001d2.tar.bz2 |
target-i386: Convert kvm_default_*features to property/value pairs
Convert the kvm_default_features and kvm_default_unset_features arrays
into a simple list of property/value pairs that will be applied to
X86CPU objects when using KVM.
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 034fab6..dc7654d 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -1341,8 +1341,15 @@ void cpu_smm_update(X86CPU *cpu); void cpu_report_tpr_access(CPUX86State *env, TPRAccess access); -void x86_cpu_compat_kvm_no_autoenable(FeatureWord w, uint32_t features); -void x86_cpu_compat_kvm_no_autodisable(FeatureWord w, uint32_t features); +/* Change the value of a KVM-specific default + * + * If value is NULL, no default will be set and the original + * value from the CPU model table will be kept. + * + * It is valid to call this funciton only for properties that + * are already present in the kvm_default_props table. + */ +void x86_cpu_change_kvm_default(const char *prop, const char *value); /* Return name of 32-bit register, from a R_* constant */ |