| Submitter | Paolo Bonzini |
|---|---|
| Date | Sept. 21, 2012, 2:52 p.m. |
| Message ID | <1348239169-25040-8-git-send-email-pbonzini@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/185795/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/scsi-disk.c b/hw/scsi-disk.c index 4ffca7a..95e9158 100644 --- a/hw/scsi-disk.c +++ b/hw/scsi-disk.c @@ -678,7 +678,7 @@ static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf) * is actually implemented, but we're good enough. */ outbuf[2] = 5; - outbuf[3] = 2; /* Format 2 */ + outbuf[3] = 2 | 0x10; /* Format 2, HiSup */ if (buflen > 36) { outbuf[4] = buflen - 5; /* Additional Length = (Len - 1) - 4 */