qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Bin Wu <wu.wubin@huawei.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] hw/scsi/virtio-scsi.c: fix the "type" use error in virtio_scsi_handle_ctrl
Date: Mon, 27 Oct 2014 10:27:49 +0100	[thread overview]
Message-ID: <544E1015.4080906@redhat.com> (raw)
In-Reply-To: <1414205024-22263-1-git-send-email-wu.wubin@huawei.com>

On 10/25/2014 04:43 AM, Bin Wu wrote:
> The local variable "type" in virtio_scsi_handle_ctl represents the tmf
> command type from the guest and it has the same meaning as the
> req->req.tmf.type. However, before the invoking of virtio_scsi_parse_req
> the req->req.tmf.type doesn't has the correct value(just initialized to
> zero). Therefore, we need to use the "type" variable to judge the case.
> 
> Signed-off-by: Bin Wu <wu.wubin@huawei.com>
> ---
>  hw/scsi/virtio-scsi.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/hw/scsi/virtio-scsi.c b/hw/scsi/virtio-scsi.c
> index a1725b8..5742d39 100644
> --- a/hw/scsi/virtio-scsi.c
> +++ b/hw/scsi/virtio-scsi.c
> @@ -378,8 +378,8 @@ void virtio_scsi_handle_ctrl_req(VirtIOSCSI *s, VirtIOSCSIReq *req)
>          return;
>      }
>  
> -    virtio_tswap32s(vdev, &req->req.tmf.type);
> -    if (req->req.tmf.type == VIRTIO_SCSI_T_TMF) {
> +    virtio_tswap32s(vdev, &type);
> +    if (type == VIRTIO_SCSI_T_TMF) {
>          if (virtio_scsi_parse_req(req, sizeof(VirtIOSCSICtrlTMFReq),
>                      sizeof(VirtIOSCSICtrlTMFResp)) < 0) {
>              virtio_scsi_bad_req();
> @@ -387,8 +387,8 @@ void virtio_scsi_handle_ctrl_req(VirtIOSCSI *s, VirtIOSCSIReq *req)
>              r = virtio_scsi_do_tmf(s, req);
>          }
>  
> -    } else if (req->req.tmf.type == VIRTIO_SCSI_T_AN_QUERY ||
> -            req->req.tmf.type == VIRTIO_SCSI_T_AN_SUBSCRIBE) {
> +    } else if (type == VIRTIO_SCSI_T_AN_QUERY ||
> +            type == VIRTIO_SCSI_T_AN_SUBSCRIBE) {
>          if (virtio_scsi_parse_req(req, sizeof(VirtIOSCSICtrlANReq),
>                      sizeof(VirtIOSCSICtrlANResp)) < 0) {
>              virtio_scsi_bad_req();
> 

Thanks, applied.

Paolo

      reply	other threads:[~2014-10-27  9:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-25  2:43 [Qemu-devel] [PATCH] hw/scsi/virtio-scsi.c: fix the "type" use error in virtio_scsi_handle_ctrl Bin Wu
2014-10-27  9:27 ` 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=544E1015.4080906@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=wu.wubin@huawei.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).