qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Ronnie Sahlberg <ronniesahlberg@gmail.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] SCSI: Standard INQUIRY data should report HiSup flag as set.
Date: Mon, 17 Sep 2012 11:17:51 +0200	[thread overview]
Message-ID: <5056EABF.3080902@redhat.com> (raw)
In-Reply-To: <1347671609-26498-2-git-send-email-ronniesahlberg@gmail.com>

Il 15/09/2012 03:13, Ronnie Sahlberg ha scritto:
> 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>
> ---
>  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 1585683..52bc062 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 */
> 

Applied to scsi-next branch, thanks.

Paolo

      reply	other threads:[~2012-09-17  9:18 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-15  1:13 [Qemu-devel] [PATCH] SCSI disk, set HISUP bit in INQ data Ronnie Sahlberg
2012-09-15  1:13 ` [Qemu-devel] [PATCH] SCSI: Standard INQUIRY data should report HiSup flag as set Ronnie Sahlberg
2012-09-17  9:17   ` Paolo Bonzini [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5056EABF.3080902@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=ronniesahlberg@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).