diff options
author | Paolo Bonzini | 2022-09-29 09:20:12 +0200 |
---|---|---|
committer | Paolo Bonzini | 2022-10-10 09:23:16 +0200 |
commit | 3dba0a335cf5c53146b606be6ddfab4df81c464e (patch) | |
tree | cd88f1a5f421da22731ec31629d6f985960d9615 /include | |
parent | i386: kvm: extend kvm_{get, put}_vcpu_events to support pending triple fault (diff) | |
download | qemu-3dba0a335cf5c53146b606be6ddfab4df81c464e.tar.gz qemu-3dba0a335cf5c53146b606be6ddfab4df81c464e.tar.xz qemu-3dba0a335cf5c53146b606be6ddfab4df81c464e.zip |
kvm: allow target-specific accelerator properties
Several hypervisor capabilities in KVM are target-specific. When exposed
to QEMU users as accelerator properties (i.e. -accel kvm,prop=value), they
should not be available for all targets.
Add a hook for targets to add their own properties to -accel kvm, for
now no such property is defined.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20220929072014.20705-3-chenyi.qiang@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sysemu/kvm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sysemu/kvm.h b/include/sysemu/kvm.h index 790d35ef78..e9a97eda8c 100644 --- a/include/sysemu/kvm.h +++ b/include/sysemu/kvm.h @@ -349,6 +349,8 @@ bool kvm_device_supported(int vmfd, uint64_t type); extern const KVMCapabilityInfo kvm_arch_required_capabilities[]; +void kvm_arch_accel_class_init(ObjectClass *oc); + void kvm_arch_pre_run(CPUState *cpu, struct kvm_run *run); MemTxAttrs kvm_arch_post_run(CPUState *cpu, struct kvm_run *run); |