summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronniesahlberg@gmail.com>2012-09-14 18:13:29 -0700
committerDoug Goldstein <cardoe@cardoe.com>2012-11-13 22:50:03 -0600
commit00e14c32d0a5017966f83f0799170d0c366f8c2d (patch)
treed833b44f2286613da8a8e11d360c5dde6b327438
parentscsi-disk: fix check for out-of-range LBA (diff)
downloadqemu-kvm-00e14c32d0a5017966f83f0799170d0c366f8c2d.tar.gz
qemu-kvm-00e14c32d0a5017966f83f0799170d0c366f8c2d.tar.bz2
qemu-kvm-00e14c32d0a5017966f83f0799170d0c366f8c2d.zip
SCSI: Standard INQUIRY data should report HiSup flag as set.
QEMU as far as I know only reports LUN numbers using the modes that are described in SAM4. As such, since all LUN numbers generated by the SCSI emulation in QEMU follow SAM4, we should set the HiSup bit in the standard INQUIRY data to indicate such. From SAM4: 4.6.3 LUNs overview All LUN formats described in this standard are hierarchical in structure even when only a single level in that hierarchy is used. The HISUP bit shall be set to one in the standard INQUIRY data (see SPC-4) when any LUN format described in this standard is used. Non-hierarchical formats are outside the scope of this standard. Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com> (cherry picked from commit 1109c894052751df99962c009fd7dbae397721f5) Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com> (cherry picked from commit 75a44ae297b67aef5378f25fcf49b035e563b29b)
-rw-r--r--hw/scsi-disk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/scsi-disk.c b/hw/scsi-disk.c
index d62185285..7ed1bde93 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 */