diff options
author | David Hildenbrand | 2015-07-21 11:11:11 +0200 |
---|---|---|
committer | Cornelia Huck | 2015-10-21 12:21:30 +0200 |
commit | 1cd4e0f6f0a6b1978a5868b41d4faae2071dc4ee (patch) | |
tree | a9e43a3179d5c28b91793436f3a3aa5310f06194 /hw/s390x/s390-virtio.c | |
parent | s390x: reset crypto only on clear reset and QEMU reset (diff) | |
download | qemu-1cd4e0f6f0a6b1978a5868b41d4faae2071dc4ee.tar.gz qemu-1cd4e0f6f0a6b1978a5868b41d4faae2071dc4ee.tar.xz qemu-1cd4e0f6f0a6b1978a5868b41d4faae2071dc4ee.zip |
s390x/cmma: clean up cmma reset
The cmma reset is per VM, so we don't need a cpu object. We can
directly make use of kvm_state, as it is already available when
the reset is called. By moving the cmma reset in our machine reset
function, we can avoid a manual reset handler.
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'hw/s390x/s390-virtio.c')
-rw-r--r-- | hw/s390x/s390-virtio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/s390x/s390-virtio.c b/hw/s390x/s390-virtio.c index 9a7b7c2578..cbde9772e5 100644 --- a/hw/s390x/s390-virtio.c +++ b/hw/s390x/s390-virtio.c @@ -320,6 +320,7 @@ void s390_machine_reset(void) S390CPU *ipl_cpu = S390_CPU(qemu_get_cpu(0)); qemu_devices_reset(); + s390_cmma_reset(); s390_crypto_reset(); /* all cpus are stopped - configure and start the ipl cpu only */ |