diff options
author | Akihiko Odaki <akihiko.odaki@daynix.com> | 2023-08-22 17:31:02 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2023-08-22 17:31:02 +0100 |
commit | 5e0d65909c6f335d578b90491e165440c99adf81 (patch) | |
tree | ea45e942a7cfc3dee65dca867c443a7436014d19 /target/riscv/kvm.c | |
parent | a9c9bbee855877293683012942d3485d50f286af (diff) | |
download | qemu-5e0d65909c6f335d578b90491e165440c99adf81.zip qemu-5e0d65909c6f335d578b90491e165440c99adf81.tar.gz qemu-5e0d65909c6f335d578b90491e165440c99adf81.tar.bz2 |
kvm: Introduce kvm_arch_get_default_type hook
kvm_arch_get_default_type() returns the default KVM type. This hook is
particularly useful to derive a KVM type that is valid for "none"
machine model, which is used by libvirt to probe the availability of
KVM.
For MIPS, the existing mips_kvm_type() is reused. This function ensures
the availability of VZ which is mandatory to use KVM on the current
QEMU.
Cc: qemu-stable@nongnu.org
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Message-id: 20230727073134.134102-2-akihiko.odaki@daynix.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
[PMM: added doc comment for new function]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'target/riscv/kvm.c')
-rw-r--r-- | target/riscv/kvm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target/riscv/kvm.c b/target/riscv/kvm.c index b1fd223..dbcf26f 100644 --- a/target/riscv/kvm.c +++ b/target/riscv/kvm.c @@ -914,6 +914,11 @@ int kvm_arch_add_msi_route_post(struct kvm_irq_routing_entry *route, return 0; } +int kvm_arch_get_default_type(MachineState *ms) +{ + return 0; +} + int kvm_arch_init(MachineState *ms, KVMState *s) { return 0; |