From: Greg Kurz <groug@kaod.org>
To: elohimes@gmail.com
Cc: ehabkost@redhat.com, mst@redhat.com, qemu-devel@nongnu.org,
dgilbert@redhat.com, Xie Yongji <xieyongji@baidu.com>
Subject: Re: [Qemu-devel] [PATCH v3 1/5] virtio: add "use-started" property
Date: Fri, 14 Jun 2019 13:44:52 +0200 [thread overview]
Message-ID: <20190614134452.7924f135@bahia.lan> (raw)
In-Reply-To: <20190614093121.5580-2-xieyongji@baidu.com>
On Fri, 14 Jun 2019 17:31:17 +0800
elohimes@gmail.com wrote:
> From: Xie Yongji <xieyongji@baidu.com>
>
> In order to avoid migration issues, we introduce a "use-started"
> property to the base virtio device to indicate whether use
> "started" flag or not. This property will be true by default and
> set to false when machine type <= 4.0.1.
>
> Suggested-by: Greg Kurz <groug@kaod.org>
> Signed-off-by: Xie Yongji <xieyongji@baidu.com>
> ---
> hw/block/vhost-user-blk.c | 4 ++--
> hw/core/machine.c | 8 ++++++--
This patch conflicts with latest upstream changes to hw_compat_4_0_1[].
It seems you need to rebase. Also, I'm still not sure how we're supposed
to handle hw_compat_4_0_1[] versus hw_compat_4_0[]... nobody commented
on:
https://lists.gnu.org/archive/html/qemu-devel/2019-06/msg00637.html
https://lists.gnu.org/archive/html/qemu-devel/2019-06/msg00641.html
Maybe worth to sort that out before re-posting.
> hw/virtio/virtio.c | 18 +++++++-----------
> include/hw/virtio/virtio.h | 21 +++++++++++++++++++++
> 4 files changed, 36 insertions(+), 15 deletions(-)
>
> diff --git a/hw/block/vhost-user-blk.c b/hw/block/vhost-user-blk.c
> index 9cb61336a6..85bc4017e7 100644
> --- a/hw/block/vhost-user-blk.c
> +++ b/hw/block/vhost-user-blk.c
> @@ -191,7 +191,7 @@ static void vhost_user_blk_stop(VirtIODevice *vdev)
> static void vhost_user_blk_set_status(VirtIODevice *vdev, uint8_t status)
> {
> VHostUserBlk *s = VHOST_USER_BLK(vdev);
> - bool should_start = vdev->started;
> + bool should_start = virtio_device_started(vdev, status);
> int ret;
>
> if (!vdev->vm_running) {
> @@ -317,7 +317,7 @@ static int vhost_user_blk_connect(DeviceState *dev)
> }
>
> /* restore vhost state */
> - if (vdev->started) {
> + if (virtio_device_started(vdev, vdev->status)) {
> ret = vhost_user_blk_start(vdev);
> if (ret < 0) {
> error_report("vhost-user-blk: vhost start failed: %s",
> diff --git a/hw/core/machine.c b/hw/core/machine.c
> index f1a0f45f9c..60d1e27d2c 100644
> --- a/hw/core/machine.c
> +++ b/hw/core/machine.c
> @@ -24,10 +24,14 @@
> #include "hw/pci/pci.h"
> #include "hw/mem/nvdimm.h"
>
> -GlobalProperty hw_compat_4_0_1[] = {};
> +GlobalProperty hw_compat_4_0_1[] = {
> + { "virtio-device", "use-started", "false" },
> +};
> const size_t hw_compat_4_0_1_len = G_N_ELEMENTS(hw_compat_4_0_1);
>
> -GlobalProperty hw_compat_4_0[] = {};
> +GlobalProperty hw_compat_4_0[] = {
> + { "virtio-device", "use-started", "false" },
> +};
> const size_t hw_compat_4_0_len = G_N_ELEMENTS(hw_compat_4_0);
>
> GlobalProperty hw_compat_3_1[] = {
> diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
> index 07f4a64b48..19062fbb96 100644
> --- a/hw/virtio/virtio.c
> +++ b/hw/virtio/virtio.c
> @@ -1162,10 +1162,8 @@ int virtio_set_status(VirtIODevice *vdev, uint8_t val)
> }
> }
> }
> - vdev->started = val & VIRTIO_CONFIG_S_DRIVER_OK;
> - if (unlikely(vdev->start_on_kick && vdev->started)) {
> - vdev->start_on_kick = false;
> - }
> +
> + virtio_set_started(vdev, val & VIRTIO_CONFIG_S_DRIVER_OK);
>
> if (k->set_status) {
> k->set_status(vdev, val);
> @@ -1536,8 +1534,7 @@ static bool virtio_queue_notify_aio_vq(VirtQueue *vq)
> ret = vq->handle_aio_output(vdev, vq);
>
> if (unlikely(vdev->start_on_kick)) {
> - vdev->started = true;
> - vdev->start_on_kick = false;
> + virtio_set_started(vdev, true);
> }
> }
>
> @@ -1557,8 +1554,7 @@ static void virtio_queue_notify_vq(VirtQueue *vq)
> vq->handle_output(vdev, vq);
>
> if (unlikely(vdev->start_on_kick)) {
> - vdev->started = true;
> - vdev->start_on_kick = false;
> + virtio_set_started(vdev, true);
> }
> }
> }
> @@ -1579,8 +1575,7 @@ void virtio_queue_notify(VirtIODevice *vdev, int n)
> }
>
> if (unlikely(vdev->start_on_kick)) {
> - vdev->started = true;
> - vdev->start_on_kick = false;
> + virtio_set_started(vdev, true);
> }
> }
>
> @@ -2291,7 +2286,7 @@ static void virtio_vmstate_change(void *opaque, int running, RunState state)
> VirtIODevice *vdev = opaque;
> BusState *qbus = qdev_get_parent_bus(DEVICE(vdev));
> VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
> - bool backend_run = running && vdev->started;
> + bool backend_run = running && virtio_device_started(vdev, vdev->status);
> vdev->vm_running = running;
>
> if (backend_run) {
> @@ -2669,6 +2664,7 @@ static void virtio_device_instance_finalize(Object *obj)
>
> static Property virtio_properties[] = {
> DEFINE_VIRTIO_COMMON_FEATURES(VirtIODevice, host_features),
> + DEFINE_PROP_BOOL("use-started", VirtIODevice, use_started, true),
> DEFINE_PROP_END_OF_LIST(),
> };
>
> diff --git a/include/hw/virtio/virtio.h b/include/hw/virtio/virtio.h
> index 27c0efc3d0..15d5366939 100644
> --- a/include/hw/virtio/virtio.h
> +++ b/include/hw/virtio/virtio.h
> @@ -105,6 +105,7 @@ struct VirtIODevice
> uint16_t device_id;
> bool vm_running;
> bool broken; /* device in invalid state, needs reset */
> + bool use_started;
> bool started;
> bool start_on_kick; /* virtio 1.0 transitional devices support that */
> VMChangeStateEntry *vmstate;
> @@ -351,4 +352,24 @@ static inline bool virtio_is_big_endian(VirtIODevice *vdev)
> /* Devices conforming to VIRTIO 1.0 or later are always LE. */
> return false;
> }
> +
> +static inline bool virtio_device_started(VirtIODevice *vdev, uint8_t status)
> +{
> + if (vdev->use_started) {
> + return vdev->started;
> + }
> +
> + return status & VIRTIO_CONFIG_S_DRIVER_OK;
> +}
> +
> +static inline void virtio_set_started(VirtIODevice *vdev, bool started)
> +{
> + if (started) {
> + vdev->start_on_kick = false;
> + }
> +
> + if (vdev->use_started) {
> + vdev->started = started;
> + }
> +}
> #endif
next prev parent reply other threads:[~2019-06-14 11:50 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-14 9:31 [Qemu-devel] [PATCH v3 0/5] virtio: fix some issues of "started" and "start_on_kick" flag elohimes
2019-06-14 9:31 ` [Qemu-devel] [PATCH v3 1/5] virtio: add "use-started" property elohimes
2019-06-14 11:44 ` Greg Kurz [this message]
2019-06-17 2:14 ` Yongji Xie
2019-06-17 5:20 ` Greg Kurz
2019-06-17 6:04 ` Yongji Xie
2019-06-22 15:51 ` Greg Kurz
2019-06-24 9:44 ` Yongji Xie
2019-06-14 9:31 ` [Qemu-devel] [PATCH v3 2/5] virtio: Set "start_on_kick" for legacy devices elohimes
2019-06-16 17:27 ` Greg Kurz
2019-06-14 9:31 ` [Qemu-devel] [PATCH v3 3/5] virtio: Set "start_on_kick" on virtio_set_features() elohimes
2019-06-14 9:31 ` [Qemu-devel] [PATCH v3 4/5] virtio: Make sure we get correct state of device on handle_aio_output() elohimes
2019-06-14 9:31 ` [Qemu-devel] [PATCH v3 5/5] virtio: Don't change "started" flag on virtio_vmstate_change() elohimes
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=20190614134452.7924f135@bahia.lan \
--to=groug@kaod.org \
--cc=dgilbert@redhat.com \
--cc=ehabkost@redhat.com \
--cc=elohimes@gmail.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=xieyongji@baidu.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).