| Submitter | Paolo Bonzini |
|---|---|
| Date | July 27, 2012, 3:02 p.m. |
| Message ID | <1343401379-19495-7-git-send-email-pbonzini@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/173730/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/scsi-disk.c b/hw/scsi-disk.c index 525816c..8907197 100644 --- a/hw/scsi-disk.c +++ b/hw/scsi-disk.c @@ -2040,7 +2040,7 @@ static TypeInfo scsi_cd_info = { #ifdef __linux__ static Property scsi_block_properties[] = { - DEFINE_SCSI_DISK_PROPERTIES(), + DEFINE_PROP_DRIVE("drive", SCSIDiskState, qdev.conf.bs), DEFINE_PROP_END_OF_LIST(), };
scsi-block is a passthrough device and does not allow customization of vendor, product, removable, DPOFUA, block size or any other piece of information. Thus, drop DEFINE_SCSI_DISK_PROPERTIES() from the list of qdev properties. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> --- hw/scsi-disk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)