diff options
| author | Cornelia Huck <cornelia.huck@de.ibm.com> | 2015-10-16 12:25:54 +0200 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@redhat.com> | 2015-10-29 17:59:27 +0000 |
| commit | ed65fd1a2750d24290354cc7ea49caec7c13e30b (patch) | |
| tree | d99e74f807a26506457a24cca5bc676b990818db /include/hw/compat.h | |
| parent | 80fd50f96b8dc46e185f61d9b6438a6414507076 (diff) | |
| download | focaccia-qemu-ed65fd1a2750d24290354cc7ea49caec7c13e30b.tar.gz focaccia-qemu-ed65fd1a2750d24290354cc7ea49caec7c13e30b.zip | |
virtio-blk: switch off scsi-passthrough by default
Devices that are compliant with virtio-1 do not support scsi passthrough any more (and it has not been a recommended setup anyway for quite some time). To avoid having to switch it off explicitly in newer qemus that turn on virtio-1 by default, let's switch the default to scsi=false for 2.5. Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com> Message-id: 1444991154-79217-4-git-send-email-cornelia.huck@de.ibm.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include/hw/compat.h')
| -rw-r--r-- | include/hw/compat.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/hw/compat.h b/include/hw/compat.h index 095de5d12f..93e71afb4a 100644 --- a/include/hw/compat.h +++ b/include/hw/compat.h @@ -2,7 +2,11 @@ #define HW_COMPAT_H #define HW_COMPAT_2_4 \ - /* empty */ + {\ + .driver = "virtio-blk-device",\ + .property = "scsi",\ + .value = "true",\ + }, #define HW_COMPAT_2_3 \ {\ |