aboutsummaryrefslogtreecommitdiff
path: root/target/s390x
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2022-09-29 15:20:12 +0800
committerPaolo Bonzini <pbonzini@redhat.com>2022-10-10 09:23:16 +0200
commit3dba0a335cf5c53146b606be6ddfab4df81c464e (patch)
treecd88f1a5f421da22731ec31629d6f985960d9615 /target/s390x
parent12f89a39cf3c5760cba82ce68929d748961f62df (diff)
downloadqemu-3dba0a335cf5c53146b606be6ddfab4df81c464e.zip
qemu-3dba0a335cf5c53146b606be6ddfab4df81c464e.tar.gz
qemu-3dba0a335cf5c53146b606be6ddfab4df81c464e.tar.bz2
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 'target/s390x')
-rw-r--r--target/s390x/kvm/kvm.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/target/s390x/kvm/kvm.c b/target/s390x/kvm/kvm.c
index 6a8dbad..508c24c 100644
--- a/target/s390x/kvm/kvm.c
+++ b/target/s390x/kvm/kvm.c
@@ -2581,3 +2581,7 @@ int kvm_s390_get_zpci_op(void)
{
return cap_zpci_op;
}
+
+void kvm_arch_accel_class_init(ObjectClass *oc)
+{
+}