From: Paolo Bonzini <pbonzini@redhat.com>
To: Fam Zheng <famz@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] scsi: Fix scsi_req_cancel_async for no aiocb req
Date: Wed, 28 Jan 2015 10:45:04 +0100 [thread overview]
Message-ID: <54C8AFA0.6050506@redhat.com> (raw)
In-Reply-To: <1422350219-1900-1-git-send-email-famz@redhat.com>
On 27/01/2015 10:16, Fam Zheng wrote:
> scsi_req_cancel_complete is responsible for releasing the request, so we
> shouldn't skip it in any case. This doesn't affect the only existing
> caller, virtio-scsi, but is useful for other devices once they use it.
>
> Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
> Signed-off-by: Fam Zheng <famz@redhat.com>
> ---
> hw/scsi/scsi-bus.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/hw/scsi/scsi-bus.c b/hw/scsi/scsi-bus.c
> index 9b740a3..db39ae0 100644
> --- a/hw/scsi/scsi-bus.c
> +++ b/hw/scsi/scsi-bus.c
> @@ -1756,6 +1756,8 @@ void scsi_req_cancel_async(SCSIRequest *req, Notifier *notifier)
> req->io_canceled = true;
> if (req->aiocb) {
> blk_aio_cancel_async(req->aiocb);
> + } else {
> + scsi_req_cancel_complete(req);
> }
> }
>
>
Applied, thanks.
Paolo
prev parent reply other threads:[~2015-01-28 9:45 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-27 9:16 [Qemu-devel] [PATCH] scsi: Fix scsi_req_cancel_async for no aiocb req Fam Zheng
2015-01-28 9:45 ` 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=54C8AFA0.6050506@redhat.com \
--to=pbonzini@redhat.com \
--cc=famz@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 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.