From: Markus Armbruster <armbru@redhat.com>
To: Li Feng <fengli@smartx.com>
Cc: "Michael S. Tsirkin" <mst@redhat.com>,
"Raphael Norwitz" <raphael.norwitz@nutanix.com>,
"Kevin Wolf" <kwolf@redhat.com>,
"Hanna Reitz" <hreitz@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Fam Zheng" <fam@euphon.net>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Viresh Kumar" <viresh.kumar@linaro.org>,
qemu-block@nongnu.org (open list:Block layer core),
qemu-devel@nongnu.org (open list:All patches CC here)
Subject: Re: [PATCH v3 5/5] vhost-user-scsi: start vhost when guest kicks
Date: Fri, 01 Sep 2023 13:44:06 +0200 [thread overview]
Message-ID: <87zg2686ex.fsf@pond.sub.org> (raw)
In-Reply-To: <20230731121018.2856310-6-fengli@smartx.com> (Li Feng's message of "Mon, 31 Jul 2023 20:10:10 +0800")
Li Feng <fengli@smartx.com> writes:
> Let's keep the same behavior as vhost-user-blk.
>
> Some old guests kick virtqueue before setting VIRTIO_CONFIG_S_DRIVER_OK.
>
> Signed-off-by: Li Feng <fengli@smartx.com>
> ---
> hw/scsi/vhost-user-scsi.c | 48 +++++++++++++++++++++++++++++++++++----
> 1 file changed, 44 insertions(+), 4 deletions(-)
>
> diff --git a/hw/scsi/vhost-user-scsi.c b/hw/scsi/vhost-user-scsi.c
> index 5bf012461b..a7fa8e8df2 100644
> --- a/hw/scsi/vhost-user-scsi.c
> +++ b/hw/scsi/vhost-user-scsi.c
> @@ -113,8 +113,48 @@ static void vhost_user_scsi_reset(VirtIODevice *vdev)
> }
> }
>
> -static void vhost_dummy_handle_output(VirtIODevice *vdev, VirtQueue *vq)
> +static void vhost_user_scsi_handle_output(VirtIODevice *vdev, VirtQueue *vq)
> {
> + VHostUserSCSI *s = (VHostUserSCSI *)vdev;
> + DeviceState *dev = &s->parent_obj.parent_obj.parent_obj.parent_obj;
> + VHostSCSICommon *vsc = VHOST_SCSI_COMMON(s);
> + VirtIOSCSICommon *vs = VIRTIO_SCSI_COMMON(dev);
> +
> + Error *local_err = NULL;
> + int i, ret;
> +
> + if (!vdev->start_on_kick) {
> + return;
> + }
> +
> + if (!s->connected) {
> + return;
> + }
> +
> + if (vhost_dev_is_started(&vsc->dev)) {
> + return;
> + }
> +
> + /*
> + * Some guests kick before setting VIRTIO_CONFIG_S_DRIVER_OK so start
> + * vhost here instead of waiting for .set_status().
> + */
> + ret = vhost_user_scsi_start(s);
> + if (ret < 0) {
> + error_reportf_err(local_err, "vhost-user-scsi: vhost start failed: ");
Crashes, since @local_err is null. Please test your error paths.
Obvious fix: drop this call.
> + qemu_chr_fe_disconnect(&vs->conf.chardev);
> + return;
> + }
> +
> + /* Kick right away to begin processing requests already in vring */
> + for (i = 0; i < vsc->dev.nvqs; i++) {
> + VirtQueue *kick_vq = virtio_get_queue(vdev, i);
> +
> + if (!virtio_queue_get_desc_addr(vdev, i)) {
> + continue;
> + }
> + event_notifier_set(virtio_queue_get_host_notifier(kick_vq));
> + }
> }
>
> static int vhost_user_scsi_connect(DeviceState *dev, Error **errp)
> @@ -243,9 +283,9 @@ static void vhost_user_scsi_realize(DeviceState *dev, Error **errp)
> return;
> }
>
> - virtio_scsi_common_realize(dev, vhost_dummy_handle_output,
> - vhost_dummy_handle_output,
> - vhost_dummy_handle_output, &err);
> + virtio_scsi_common_realize(dev, vhost_user_scsi_handle_output,
> + vhost_user_scsi_handle_output,
> + vhost_user_scsi_handle_output, &err);
> if (err != NULL) {
> error_propagate(errp, err);
> return;
next prev parent reply other threads:[~2023-09-01 11:45 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-21 10:51 [PATCH] vhost-user-scsi: support reconnect to backend Li Feng
2023-07-24 17:21 ` Raphael Norwitz
2023-07-24 20:30 ` Michael S. Tsirkin
2023-07-25 10:19 ` Li Feng
2023-07-27 21:21 ` Raphael Norwitz
2023-07-28 7:48 ` Li Feng
2023-07-30 22:09 ` Raphael Norwitz
2023-07-31 11:32 ` Li Feng
2023-07-25 10:42 ` [PATCH v2 0/4] Implement reconnect for vhost-user-scsi Li Feng
2023-07-25 10:42 ` [PATCH v2 1/4] vhost: fix the fd leak Li Feng
2023-07-30 22:09 ` Raphael Norwitz
2023-07-25 10:42 ` [PATCH v2 2/4] vhost-user-common: send get_inflight_fd once Li Feng
2023-07-28 6:04 ` Michael S. Tsirkin
2023-07-28 7:49 ` Li Feng
2023-07-30 22:13 ` Raphael Norwitz
2023-07-31 11:38 ` Li Feng
2023-07-31 23:11 ` Raphael Norwitz
2023-07-25 10:42 ` [PATCH v2 3/4] vhost: move and rename the conn retry times Li Feng
2023-07-30 22:13 ` Raphael Norwitz
2023-07-25 10:42 ` [PATCH v2 4/4] vhost-user-scsi: support reconnect to backend Li Feng
2023-07-25 10:58 ` Li Feng
2023-07-30 22:14 ` Raphael Norwitz
2023-07-31 10:24 ` Li Feng
2023-07-31 12:10 ` [PATCH v3 0/5] Implement reconnect for vhost-user-scsi Li Feng
2023-07-31 12:10 ` [PATCH v3 1/5] vhost: fix the fd leak Li Feng
2023-08-03 13:41 ` Fiona Ebner
2023-07-31 12:10 ` [PATCH v3 2/5] vhost-user-common: send get_inflight_fd once Li Feng
2023-07-31 23:34 ` Raphael Norwitz
2023-07-31 12:10 ` [PATCH v3 3/5] vhost: move and rename the conn retry times Li Feng
2023-07-31 12:10 ` [PATCH v3 4/5] vhost-user-scsi: support reconnect to backend Li Feng
2023-07-31 23:35 ` Raphael Norwitz
2023-09-01 12:00 ` Markus Armbruster
2023-09-12 8:29 ` Li Feng
2023-07-31 12:10 ` [PATCH v3 5/5] vhost-user-scsi: start vhost when guest kicks Li Feng
2023-07-31 23:35 ` Raphael Norwitz
2023-09-01 11:44 ` Markus Armbruster [this message]
2023-09-12 7:53 ` Li Feng
2023-09-12 8:52 ` [PATCH v4 0/5] Implement reconnect for vhost-user-scsi Li Feng
2023-09-12 8:52 ` [PATCH v4 1/5] vhost-user-common: send get_inflight_fd once Li Feng
2023-09-12 8:52 ` [PATCH v4 2/5] vhost: move and rename the conn retry times Li Feng
2023-09-12 8:52 ` [PATCH v4 3/5] vhost-user-scsi: support reconnect to backend Li Feng
2023-09-12 8:52 ` [PATCH v4 4/5] vhost-user-scsi: start vhost when guest kicks Li Feng
2023-09-12 8:52 ` [PATCH v4 5/5] vhost-user: fix lost reconnect Li Feng
2023-09-19 11:40 ` [PATCH v5 0/5] Implement reconnect for vhost-user-scsi Li Feng
2023-09-19 11:40 ` [PATCH v5 1/5] vhost-user-common: send get_inflight_fd once Li Feng
2023-09-19 11:40 ` [PATCH v5 2/5] vhost: move and rename the conn retry times Li Feng
2023-09-19 11:40 ` [PATCH v5 3/5] vhost-user-scsi: support reconnect to backend Li Feng
2023-09-19 11:40 ` [PATCH v5 4/5] vhost-user-scsi: start vhost when guest kicks Li Feng
2023-09-19 11:40 ` [PATCH v5 5/5] vhost-user: fix lost reconnect Li Feng
2023-09-22 11:46 ` [PATCH v6 0/5] Implement reconnect for vhost-user-scsi Li Feng
2023-09-22 11:46 ` [PATCH v6 1/5] vhost-user-common: send get_inflight_fd once Li Feng
2023-09-29 0:54 ` Raphael Norwitz
2023-10-08 8:49 ` Li Feng
2023-10-08 8:50 ` Michael S. Tsirkin
2023-10-08 8:53 ` Li Feng
2023-09-22 11:46 ` [PATCH v6 2/5] vhost: move and rename the conn retry times Li Feng
2023-09-22 11:46 ` [PATCH v6 3/5] vhost-user-scsi: support reconnect to backend Li Feng
2023-09-29 0:55 ` Raphael Norwitz
2023-10-08 8:45 ` Li Feng
2023-09-22 11:46 ` [PATCH v6 4/5] vhost-user-scsi: start vhost when guest kicks Li Feng
2023-09-29 0:55 ` Raphael Norwitz
2023-09-22 11:46 ` [PATCH v6 5/5] vhost-user: fix lost reconnect Li Feng
2023-09-29 0:55 ` Raphael Norwitz
2023-09-29 0:55 ` Raphael Norwitz
2023-10-08 8:49 ` [PATCH v6 0/5] Implement reconnect for vhost-user-scsi Michael S. Tsirkin
2023-10-08 8:53 ` Li Feng
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=87zg2686ex.fsf@pond.sub.org \
--to=armbru@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=fam@euphon.net \
--cc=fengli@smartx.com \
--cc=hreitz@redhat.com \
--cc=kwolf@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=raphael.norwitz@nutanix.com \
--cc=viresh.kumar@linaro.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.