From: Paolo Bonzini <pbonzini@redhat.com>
To: Roland Dreier <roland@kernel.org>
Cc: Roland Dreier <roland@purestorage.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] scsi-disk: Add support for port WWN and index descriptors in VPD page 83h
Date: Wed, 19 Feb 2014 18:07:48 +0100 [thread overview]
Message-ID: <5304E4E4.10703@redhat.com> (raw)
In-Reply-To: <1392827321-10205-1-git-send-email-roland@kernel.org>
Il 19/02/2014 17:28, Roland Dreier ha scritto:
> From: Roland Dreier <roland@purestorage.com>
>
> To make a VM more convincing to my application, it's useful to be able
> to add a port WWN and relative target port index to the descriptors
> returned for VPD page 83h. Add device properties to allow setting
> these, and return them from INQUIRY commands.
>
> Signed-off-by: Roland Dreier <roland@purestorage.com>
I'm applying to scsi-next, thanks.
Paolo
> ---
> hw/scsi/scsi-disk.c | 26 ++++++++++++++++++++++++++
> 1 file changed, 26 insertions(+)
>
> diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c
> index a8d0f15ebe61..12013a6768a1 100644
> --- a/hw/scsi/scsi-disk.c
> +++ b/hw/scsi/scsi-disk.c
> @@ -75,6 +75,8 @@ struct SCSIDiskState
> bool media_event;
> bool eject_request;
> uint64_t wwn;
> + uint64_t port_wwn;
> + uint16_t port_index;
> uint64_t max_unmap_size;
> QEMUBH *bh;
> char *version;
> @@ -617,6 +619,24 @@ static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf)
> stq_be_p(&outbuf[buflen], s->wwn);
> buflen += 8;
> }
> +
> + if (s->port_wwn) {
> + outbuf[buflen++] = 0x61; // SAS / Binary
> + outbuf[buflen++] = 0x93; // PIV / Target port / NAA
> + outbuf[buflen++] = 0; // reserved
> + outbuf[buflen++] = 8;
> + stq_be_p(&outbuf[buflen], s->port_wwn);
> + buflen += 8;
> + }
> +
> + if (s->port_index) {
> + outbuf[buflen++] = 0x61; // SAS / Binary
> + outbuf[buflen++] = 0x94; // PIV / Target port / relative target port
> + outbuf[buflen++] = 0; // reserved
> + outbuf[buflen++] = 4;
> + stw_be_p(&outbuf[buflen + 2], s->port_index);
> + buflen += 4;
> + }
> break;
> }
> case 0xb0: /* block limits */
> @@ -2536,6 +2556,8 @@ static Property scsi_hd_properties[] = {
> DEFINE_PROP_BIT("dpofua", SCSIDiskState, features,
> SCSI_DISK_F_DPOFUA, false),
> DEFINE_PROP_HEX64("wwn", SCSIDiskState, wwn, 0),
> + DEFINE_PROP_HEX64("port_wwn", SCSIDiskState, port_wwn, 0),
> + DEFINE_PROP_UINT16("port_index", SCSIDiskState, port_index, 0),
> DEFINE_PROP_UINT64("max_unmap_size", SCSIDiskState, max_unmap_size,
> DEFAULT_MAX_UNMAP_SIZE),
> DEFINE_BLOCK_CHS_PROPERTIES(SCSIDiskState, qdev.conf),
> @@ -2584,6 +2606,8 @@ static const TypeInfo scsi_hd_info = {
> static Property scsi_cd_properties[] = {
> DEFINE_SCSI_DISK_PROPERTIES(),
> DEFINE_PROP_HEX64("wwn", SCSIDiskState, wwn, 0),
> + DEFINE_PROP_HEX64("port_wwn", SCSIDiskState, port_wwn, 0),
> + DEFINE_PROP_UINT16("port_index", SCSIDiskState, port_index, 0),
> DEFINE_PROP_END_OF_LIST(),
> };
>
> @@ -2647,6 +2671,8 @@ static Property scsi_disk_properties[] = {
> DEFINE_PROP_BIT("dpofua", SCSIDiskState, features,
> SCSI_DISK_F_DPOFUA, false),
> DEFINE_PROP_HEX64("wwn", SCSIDiskState, wwn, 0),
> + DEFINE_PROP_HEX64("port_wwn", SCSIDiskState, port_wwn, 0),
> + DEFINE_PROP_UINT16("port_index", SCSIDiskState, port_index, 0),
> DEFINE_PROP_UINT64("max_unmap_size", SCSIDiskState, max_unmap_size,
> DEFAULT_MAX_UNMAP_SIZE),
> DEFINE_PROP_END_OF_LIST(),
>
next prev parent reply other threads:[~2014-02-19 17:08 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-19 16:28 [Qemu-devel] [PATCH] scsi-disk: Add support for port WWN and index descriptors in VPD page 83h Roland Dreier
2014-02-19 17:07 ` Paolo Bonzini [this message]
2014-02-19 18:11 ` Andreas Färber
2014-02-19 18:18 ` Roland Dreier
2014-02-19 22:09 ` Paolo Bonzini
2014-02-20 15:35 ` Paolo Bonzini
2014-02-20 16:02 ` Andreas Färber
2014-02-20 16:10 ` Paolo Bonzini
2014-02-20 17:54 ` Markus Armbruster
-- strict thread matches above, loose matches on Subject: below --
2014-02-20 17:14 Roland Dreier
2014-02-20 17:15 ` Paolo Bonzini
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=5304E4E4.10703@redhat.com \
--to=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=roland@kernel.org \
--cc=roland@purestorage.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.