diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2013-12-23 21:10:40 +0530 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2014-03-05 03:06:24 +0100 |
commit | 135a129a1cd047cc913e88c795eda859a0ebb81f (patch) | |
tree | 989f0f2ab90da6d61caffa3af5ab22152c6a8e25 /include/hw/boards.h | |
parent | 9c06a1f79f959fffd09bfb7efc3d76051a6cd2da (diff) | |
download | qemu-135a129a1cd047cc913e88c795eda859a0ebb81f.zip qemu-135a129a1cd047cc913e88c795eda859a0ebb81f.tar.gz qemu-135a129a1cd047cc913e88c795eda859a0ebb81f.tar.bz2 |
kvm: Add a new machine option kvm-type
Targets like ppc64 support different types of KVM, one which use
hypervisor mode and the other which doesn't. Add a new machine
option kvm-type that helps in selecting the respective ones
We also add a new QEMUMachine callback get_vm_type that helps
in mapping the string representation of kvm type specified.
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
[agraf: spelling fixes, use error_report(), use qemumachine.h]
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/hw/boards.h')
-rw-r--r-- | include/hw/boards.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/hw/boards.h b/include/hw/boards.h index ed6d9f8..c2096e6 100644 --- a/include/hw/boards.h +++ b/include/hw/boards.h @@ -23,6 +23,8 @@ typedef void QEMUMachineResetFunc(void); typedef void QEMUMachineHotAddCPUFunc(const int64_t id, Error **errp); +typedef int QEMUMachineGetKvmtypeFunc(const char *arg); + struct QEMUMachine { const char *name; const char *alias; @@ -30,6 +32,7 @@ struct QEMUMachine { QEMUMachineInitFunc *init; QEMUMachineResetFunc *reset; QEMUMachineHotAddCPUFunc *hot_add_cpu; + QEMUMachineGetKvmtypeFunc *kvm_type; BlockInterfaceType block_default_type; int max_cpus; unsigned int no_serial:1, |