diff options
| author | Eduardo Habkost | 2013-01-22 21:25:01 +0100 |
|---|---|---|
| committer | Andreas Färber | 2013-01-27 14:34:26 +0100 |
| commit | b164e48ed1600055bc190aa3ab42c18004d2c711 (patch) | |
| tree | aa0b929a382279f4a2bc3defbae311c0ccc2fdd8 /target-s390x | |
| parent | pc: Reverse pc_init_pci() compatibility logic (diff) | |
| download | qemu-b164e48ed1600055bc190aa3ab42c18004d2c711.tar.gz qemu-b164e48ed1600055bc190aa3ab42c18004d2c711.tar.xz qemu-b164e48ed1600055bc190aa3ab42c18004d2c711.zip | |
kvm: Create kvm_arch_vcpu_id() function
This will allow each architecture to define how the VCPU ID is set on
the KVM_CREATE_VCPU ioctl call.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Acked-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-s390x')
| -rw-r--r-- | target-s390x/kvm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c index add6a58f9c..99deddf96d 100644 --- a/target-s390x/kvm.c +++ b/target-s390x/kvm.c @@ -76,6 +76,11 @@ int kvm_arch_init(KVMState *s) return 0; } +unsigned long kvm_arch_vcpu_id(CPUState *cpu) +{ + return cpu->cpu_index; +} + int kvm_arch_init_vcpu(CPUState *cpu) { int ret = 0; |
