From: Laszlo Ersek <lersek@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] virtio-scsi: clean up virtio_scsi_parse_cdb
Date: Thu, 18 Sep 2014 17:43:59 +0200 [thread overview]
Message-ID: <541AFDBF.8050103@redhat.com> (raw)
In-Reply-To: <1411052302-10459-1-git-send-email-pbonzini@redhat.com>
On 09/18/14 16:58, Paolo Bonzini wrote:
> The command direction according to the guest-passed buffers
> is already stored in the VirtIOSCSIReq. We can use it instead
> of computing it again from req->elem.
>
> Cc: Laszlo Ersek <lersek@redhat.com>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> hw/scsi/virtio-scsi.c | 8 +-------
> 1 file changed, 1 insertion(+), 7 deletions(-)
>
> diff --git a/hw/scsi/virtio-scsi.c b/hw/scsi/virtio-scsi.c
> index f0d21a3..6953cbe 100644
> --- a/hw/scsi/virtio-scsi.c
> +++ b/hw/scsi/virtio-scsi.c
> @@ -430,13 +430,7 @@ static int virtio_scsi_parse_cdb(SCSIDevice *dev, SCSICommand *cmd,
> * host device passthrough.
> */
> cmd->xfer = req->qsgl.size;
> - if (cmd->xfer == 0) {
> - cmd->mode = SCSI_XFER_NONE;
> - } else if (iov_size(req->elem.in_sg, req->elem.in_num) > req->resp_size) {
> - cmd->mode = SCSI_XFER_FROM_DEV;
> - } else {
> - cmd->mode = SCSI_XFER_TO_DEV;
> - }
> + cmd->mode = req->mode;
> return 0;
> }
>
>
virtio_scsi_handle_cmd() [hw/scsi/virtio-scsi.c]
virtio_scsi_parse_req() [hw/scsi/virtio-scsi.c]
/* sets req->mode */
scsi_req_new() [hw/scsi/scsi-bus.c]
scsi_block_parse_cdb() | scsi_generic_parse_cdb() [hw/scsi/scsi-disk.c | hw/scsi/scsi-generic.c]
scsi_bus_parse_cdb() [hw/scsi/scsi-bus.c]
virtio_scsi_parse_cdb() [hw/scsi/virtio-scsi.c]
/* uses req->mode */
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
prev parent reply other threads:[~2014-09-18 16:31 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-18 14:58 [Qemu-devel] [PATCH] virtio-scsi: clean up virtio_scsi_parse_cdb Paolo Bonzini
2014-09-18 15:43 ` Laszlo Ersek [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=541AFDBF.8050103@redhat.com \
--to=lersek@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).