All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jason Wang <jasowang@redhat.com>
To: Cornelia Huck <cornelia.huck@de.ibm.com>, qemu-devel@nongnu.org
Cc: famz@redhat.com, mst@redhat.com, pl@kamp.de,
	marcandre.lureau@gmail.com, stefanha@redhat.com,
	pbonzini@redhat.com
Subject: Re: [Qemu-devel] [PATCH] virtio: revert host notifiers to old semantics
Date: Mon, 4 Jul 2016 14:59:13 +0800	[thread overview]
Message-ID: <577A0941.7010200@redhat.com> (raw)
In-Reply-To: <1467300702-97031-1-git-send-email-cornelia.huck@de.ibm.com>



On 2016年06月30日 23:31, Cornelia Huck wrote:
> The host notifier rework tried both to unify host notifiers across
> transports and plug a possible hole during host notifier
> re-assignment. Unfortunately, this meant a change in semantics that
> breaks vhost and iSCSI+dataplane.
>
> As the minimal fix, keep the common host notifier code but revert
> to the old semantics so that we have time to figure out the proper
> fix.
>
> Fixes: 6798e245a3 ("virtio-bus: common ioeventfd infrastructure")
> Reported-by: Peter Lieven <pl@kamp.de>
> Reported-by: Jason Wang <jasowang@redhat.com>
> Reported-by: Marc-André Lureau <marcandre.lureau@gmail.com>
> Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
> ---
>   hw/virtio/virtio-bus.c | 26 ++++++++++----------------
>   1 file changed, 10 insertions(+), 16 deletions(-)
>
> diff --git a/hw/virtio/virtio-bus.c b/hw/virtio/virtio-bus.c
> index 1313760..a85b7c8 100644
> --- a/hw/virtio/virtio-bus.c
> +++ b/hw/virtio/virtio-bus.c
> @@ -176,8 +176,8 @@ static int set_host_notifier_internal(DeviceState *proxy, VirtioBusState *bus,
>               return r;
>           }
>       } else {
> -        virtio_queue_set_host_notifier_fd_handler(vq, false, false);
>           k->ioeventfd_assign(proxy, notifier, n, assign);
> +        virtio_queue_set_host_notifier_fd_handler(vq, false, false);
>           event_notifier_cleanup(notifier);
>       }
>       return r;
> @@ -251,31 +251,25 @@ int virtio_bus_set_host_notifier(VirtioBusState *bus, int n, bool assign)
>   {
>       VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(bus);
>       DeviceState *proxy = DEVICE(BUS(bus)->parent);
> -    VirtIODevice *vdev = virtio_bus_get_device(bus);
> -    VirtQueue *vq = virtio_get_queue(vdev, n);
>   
>       if (!k->ioeventfd_started) {
>           return -ENOSYS;
>       }
> +    k->ioeventfd_set_disabled(proxy, assign);
>       if (assign) {
>           /*
>            * Stop using the generic ioeventfd, we are doing eventfd handling
>            * ourselves below
> +         *
> +         * FIXME: We should just switch the handler and not deassign the
> +         * ioeventfd.
> +         * Otherwise, there's a window where we don't have an
> +         * ioeventfd and we may end up with a notification where
> +         * we don't expect one.
>            */
> -        k->ioeventfd_set_disabled(proxy, true);
> -    }
> -    /*
> -     * Just switch the handler, don't deassign the ioeventfd.
> -     * Otherwise, there's a window where we don't have an
> -     * ioeventfd and we may end up with a notification where
> -     * we don't expect one.
> -     */
> -    virtio_queue_set_host_notifier_fd_handler(vq, assign, !assign);
> -    if (!assign) {
> -        /* Use generic ioeventfd handler again. */
> -        k->ioeventfd_set_disabled(proxy, false);
> +        virtio_bus_stop_ioeventfd(bus);
>       }
> -    return 0;
> +    return set_host_notifier_internal(proxy, bus, n, assign, false);
>   }
>   
>   static char *virtio_bus_get_dev_path(DeviceState *dev)

Reviewed-by: Jason Wang <jasowang@redhat.com>
Tested-by: Jason Wang <jasowang@redhat.com>

      parent reply	other threads:[~2016-07-04  6:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-30 15:31 [Qemu-devel] [PATCH] virtio: revert host notifiers to old semantics Cornelia Huck
2016-07-01  8:42 ` Marc-André Lureau
2016-07-04  6:26 ` Peter Lieven
2016-07-04  6:59 ` Jason Wang [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=577A0941.7010200@redhat.com \
    --to=jasowang@redhat.com \
    --cc=cornelia.huck@de.ibm.com \
    --cc=famz@redhat.com \
    --cc=marcandre.lureau@gmail.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=pl@kamp.de \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.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 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.