From: Fam Zheng <famz@redhat.com>
To: Kevin Wolf <kwolf@redhat.com>
Cc: qemu-devel@nongnu.org, Paolo Bonzini <pbonzini@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
Stefan Hajnoczi <stefanha@redhat.com>,
Max Reitz <mreitz@redhat.com>,
qemu-block@nongnu.org, qemu-stable@nongnu.org
Subject: Re: [Qemu-devel] [PATCH for-2.6] virtio: Register host notifier handler as external
Date: Thu, 21 Apr 2016 19:57:51 +0800 [thread overview]
Message-ID: <20160421115751.GA2220@ad.usersys.redhat.com> (raw)
In-Reply-To: <20160421114207.GD4193@noname.redhat.com>
On Thu, 04/21 13:42, Kevin Wolf wrote:
> Am 21.04.2016 um 10:57 hat Fam Zheng geschrieben:
> > On Thu, 04/21 10:07, Kevin Wolf wrote:
> > > Am 21.04.2016 um 07:05 hat Fam Zheng geschrieben:
> > > > On Thu, 04/21 10:04, Fam Zheng wrote:
> > > > > This ensures the bdrv_drained_begin() in block layer is effective and
> > > > > fixes launchpad bug #1570134.
> > > >
> > > > Forgot to add to the subject, but this patch is for 2.6.
> > >
> > > Also CCing qemu-stable (this affects 2.5) and qemu-block.
> > >
> > > > > Signed-off-by: Fam Zheng <famz@redhat.com>
> > > > > ---
> > > > > hw/virtio/virtio.c | 7 ++++---
> > > > > 1 file changed, 4 insertions(+), 3 deletions(-)
> > > > >
> > > > > diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
> > > > > index f745c4a..002c2c6 100644
> > > > > --- a/hw/virtio/virtio.c
> > > > > +++ b/hw/virtio/virtio.c
> > > > > @@ -1829,10 +1829,11 @@ void virtio_queue_set_host_notifier_fd_handler(VirtQueue *vq, bool assign,
> > > > > bool set_handler)
> > > > > {
> > > > > if (assign && set_handler) {
> > > > > - event_notifier_set_handler(&vq->host_notifier,
> > > > > - virtio_queue_host_notifier_read);
> > > > > + aio_set_event_notifier(qemu_get_aio_context(), &vq->host_notifier,
> > > > > + true, virtio_queue_host_notifier_read);
> > > > > } else {
> > > > > - event_notifier_set_handler(&vq->host_notifier, NULL);
> > > > > + aio_set_event_notifier(qemu_get_aio_context(), &vq->host_notifier,
> > > > > + true, NULL);
> > > > > }
> > >
> > > This feels like fixing one special case of a more general problem. Are
> > > we sure that event_notifier_set_handler() should ever result in an
> > > internal handler? The default should probably be external, and block
> > > drivers need to take care to use functions that have the is_external
> > > parameter so they can mark themselves internal.
> > >
> >
> > Looks like this is the only event_notifier_set_handler caller that
> > should be fixed. If we see problem in other devices they can be
> > addressed case by case, I'm not sure marking event_notifier_set_handler
> > as external is a better idea for 2.6. (The other two callers are
> > hyperv.c, which seems never set the handler, and ccid-card-emulated.c,
> > which device I have no idea about.)
>
> As we don't have a lot of time for 2.6 any more, this local fix is
> probably the right thing to do. It fixes what we know is broken and
> has a very low risk of breaking other things.
>
> But we should probably review all fd handlers during the 2.7 development
> cycle. I didn't see anything obvious that could possibly call into the
> block layer, but even unrelated and therefore harmless users should
> probably be marked as external to avoid unnecessary traps for future
> development.
Completely agreed. I'm adding this to my todo list for 2.7.
Fam
next prev parent reply other threads:[~2016-04-21 11:57 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-21 2:04 [Qemu-devel] [PATCH] virtio: Register host notifier handler as external Fam Zheng
2016-04-21 5:05 ` [Qemu-devel] [PATCH for-2.6] " Fam Zheng
2016-04-21 8:07 ` Kevin Wolf
2016-04-21 8:57 ` Fam Zheng
2016-04-21 11:42 ` Kevin Wolf
2016-04-21 11:57 ` Fam Zheng [this message]
2016-04-21 12:20 ` [Qemu-devel] [PATCH] " Michael S. Tsirkin
2016-04-21 14:28 ` Fam Zheng
2016-05-09 12:32 ` Paolo Bonzini
2016-04-21 16:29 ` Fam Zheng
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=20160421115751.GA2220@ad.usersys.redhat.com \
--to=famz@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@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 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).