From: Bernhard Kohl Date: Tue, 31 Aug 2010 09:22:29 +0000 (+0200) Subject: scsi-disk: fix the mode data length field returned by the MODE SENSE command X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~7218^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78e70c30612833fd0017cfa5b519bc23df808927;p=sdk%2Femulator%2Fqemu.git scsi-disk: fix the mode data length field returned by the MODE SENSE command The MODE DATA LENGTH field indicates the length in bytes of the following data that is available to be transferred. The mode data length does not include the number of bytes in the MODE DATA LENGTH field. Signed-off-by: Bernhard Kohl Signed-off-by: Kevin Wolf --- diff --git a/hw/scsi-disk.c b/hw/scsi-disk.c index 07a6d86..b627ffe 100644 --- a/hw/scsi-disk.c +++ b/hw/scsi-disk.c @@ -653,7 +653,7 @@ static int scsi_disk_emulate_mode_sense(SCSIRequest *req, uint8_t *outbuf) } buflen = p - outbuf; - outbuf[0] = buflen - 4; + outbuf[0] = buflen - 1; if (buflen > req->cmd.xfer) buflen = req->cmd.xfer; return buflen;