diff options
| author | Alexander Graf | 2015-06-16 23:06:33 +0200 |
|---|---|---|
| committer | Alexander Graf | 2015-06-17 12:40:52 +0200 |
| commit | 1f68f1d36c3af09ed31a529ad69c3d09880d10fd (patch) | |
| tree | d2cd05b326650223c788f4373b4e0acfa454de3a /blockdev.c | |
| parent | target-s390x: PER: add Breaking-Event-Address register (diff) | |
| download | qemu-1f68f1d36c3af09ed31a529ad69c3d09880d10fd.tar.gz qemu-1f68f1d36c3af09ed31a529ad69c3d09880d10fd.tar.xz qemu-1f68f1d36c3af09ed31a529ad69c3d09880d10fd.zip | |
s390x: Switch to s390-ccw machine as default
We now finally have TCG support for the basic set of instructions necessary
to run the s390-ccw machine. That means in any aspect possible that machine
type is now superior to the legacy s390-virtio machine.
Switch over to the ccw machine as default. That way people don't get a halfway
broken machine with the s390x target.
Signed-off-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Diffstat (limited to 'blockdev.c')
| -rw-r--r-- | blockdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blockdev.c b/blockdev.c index 3aa1ae6698..41d7e0fe54 100644 --- a/blockdev.c +++ b/blockdev.c @@ -942,7 +942,7 @@ DriveInfo *drive_new(QemuOpts *all_opts, BlockInterfaceType block_default_type) devopts = qemu_opts_create(qemu_find_opts("device"), NULL, 0, &error_abort); if (arch_type == QEMU_ARCH_S390X) { - qemu_opt_set(devopts, "driver", "virtio-blk-s390", &error_abort); + qemu_opt_set(devopts, "driver", "virtio-blk-ccw", &error_abort); } else { qemu_opt_set(devopts, "driver", "virtio-blk-pci", &error_abort); } |
