diff options
| author | Blue Swirl <blauwirbel@gmail.com> | 2013-03-09 11:02:23 +0000 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2013-03-09 11:02:23 +0000 |
| commit | eb839909aa22069e04e1c910fcdf7feaa5581af6 (patch) | |
| tree | dbe8648a2a0d7568109ba143e51ed40185e6cdda /target-s390x/kvm.c | |
| parent | 62e1aeaee4d0450222a0ea43c713b59526e3e0fe (diff) | |
| parent | 8a7df84f9ff4342cae30f4e515e6ac82a0eb0bea (diff) | |
| download | focaccia-qemu-eb839909aa22069e04e1c910fcdf7feaa5581af6.tar.gz focaccia-qemu-eb839909aa22069e04e1c910fcdf7feaa5581af6.zip | |
Merge branch 's390-for-upstream' of git://github.com/agraf/qemu
* 's390-for-upstream' of git://github.com/agraf/qemu: s390/virtio-ccw: remove redundant call to blockdev_mark_auto_del s390/css: Fix subchannel detection Allow virtio-net features for legacy s390 virtio bus s390: virtio-ccw maintainer s390: simplify kvm cpu init
Diffstat (limited to 'target-s390x/kvm.c')
| -rw-r--r-- | target-s390x/kvm.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c index 3929771182..8f111ae732 100644 --- a/target-s390x/kvm.c +++ b/target-s390x/kvm.c @@ -103,13 +103,8 @@ unsigned long kvm_arch_vcpu_id(CPUState *cpu) int kvm_arch_init_vcpu(CPUState *cpu) { - int ret = 0; - - if (kvm_vcpu_ioctl(cpu, KVM_S390_INITIAL_RESET, NULL) < 0) { - perror("cannot init reset vcpu"); - } - - return ret; + /* nothing todo yet */ + return 0; } void kvm_arch_reset_vcpu(CPUState *cpu) |