From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=57880 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OqPe8-0007bw-Nm for qemu-devel@nongnu.org; Tue, 31 Aug 2010 08:09:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OqPdx-0000iB-IZ for qemu-devel@nongnu.org; Tue, 31 Aug 2010 08:09:00 -0400 Received: from demumfd002.nsn-inter.net ([93.183.12.31]:10945) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OqPdx-0000gZ-2m for qemu-devel@nongnu.org; Tue, 31 Aug 2010 08:08:49 -0400 From: Bernhard Kohl Date: Tue, 31 Aug 2010 14:08:22 +0200 Message-Id: <1283256507-15467-2-git-send-email-bernhard.kohl@nsn.com> In-Reply-To: <1283256507-15467-1-git-send-email-bernhard.kohl@nsn.com> References: <1283256507-15467-1-git-send-email-bernhard.kohl@nsn.com> Subject: [Qemu-devel] [PATCH v3 1/6] scsi-disk: fix the mode data length field returned by the MODE SENSE command List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, Bernhard Kohl 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 --- hw/scsi-disk.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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; -- 1.7.2.2