diff options
author | Matthew Rosato <mjrosato@linux.vnet.ibm.com> | 2016-03-04 12:34:34 -0500 |
---|---|---|
committer | Cornelia Huck <cornelia.huck@de.ibm.com> | 2016-03-10 10:37:15 +0100 |
commit | 96b1a8bb55f1aeb72a943d1001841ff8b0687059 (patch) | |
tree | 90feaf80df338c6eff79116a3242b47943e316e6 /hw/s390x/s390-virtio.c | |
parent | 502edbf834a3c86a8ab40b23e040a45198301e1c (diff) | |
download | qemu-96b1a8bb55f1aeb72a943d1001841ff8b0687059.tar.gz qemu-96b1a8bb55f1aeb72a943d1001841ff8b0687059.tar.bz2 qemu-96b1a8bb55f1aeb72a943d1001841ff8b0687059.zip |
s390x/cpu: Add error handling to cpu creation
Check for and propogate errors during s390 cpu creation.
Signed-off-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com>
Message-Id: <1457112875-5209-7-git-send-email-mjrosato@linux.vnet.ibm.com>
Reviewed-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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/s390x/s390-virtio.c b/hw/s390x/s390-virtio.c index f00d6b4bae..4ea9040f3a 100644 --- a/hw/s390x/s390-virtio.c +++ b/hw/s390x/s390-virtio.c @@ -116,7 +116,7 @@ void s390_init_cpus(MachineState *machine) } for (i = 0; i < smp_cpus; i++) { - cpu_s390x_init(machine->cpu_model); + s390x_new_cpu(machine->cpu_model, i, &error_fatal); } } |