* Re: [Qemu-devel] [PATCH v6 12/12] virtio-blk: add x-data-plane=on|off performance feature
[not found] ` <20121218145717.GA11063@stefanha-thinkpad.redhat.com>
@ 2012-12-18 15:22 ` Michael S. Tsirkin
2012-12-20 4:04 ` Rusty Russell
0 siblings, 1 reply; 2+ messages in thread
From: Michael S. Tsirkin @ 2012-12-18 15:22 UTC (permalink / raw)
To: Stefan Hajnoczi
Cc: Anthony Liguori, yvugenfi, qemu-devel, virtualization, Blue Swirl,
khoa, Stefan Hajnoczi, Paolo Bonzini
On Tue, Dec 18, 2012 at 03:57:17PM +0100, Stefan Hajnoczi wrote:
> > > @@ -407,6 +409,14 @@ static void virtio_blk_handle_output(VirtIODevice *vdev, VirtQueue *vq)
> > > .num_writes = 0,
> > > };
> > >
> > > + /* Some guests kick before setting VIRTIO_CONFIG_S_DRIVER_OK so start
> > > + * dataplane here instead of waiting for .set_status().
> > > + */
> >
> > By the way which guests are these?
>
> I ran a Windows 8 guest today with build 48 virtio-win drivers. It
> notifies before the device gets its .set_status() callback invoked.
> But I could swear I've seen Linux guests do this too.
That's very broken. But looking at linux drivers it also
seems linux guests do this even today.
We have:
err = drv->probe(dev);
if (err)
add_status(dev, VIRTIO_CONFIG_S_FAILED);
else {
add_status(dev, VIRTIO_CONFIG_S_DRIVER_OK);
if (drv->scan)
drv->scan(dev);
}
this means that unless drivers implement scan() they
will make device active before DRIVER_OK is written
as the result linux can access it and kick.
And almost no drivers implement scan.
Nasty.
Rusty, what do you think? Worth fixing?
It does mean that for now we are stuck
with a work around, but I think we need it
in virtio core in qemu, it's not dataplane
specific.
--
MST
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH v6 12/12] virtio-blk: add x-data-plane=on|off performance feature
2012-12-18 15:22 ` [Qemu-devel] [PATCH v6 12/12] virtio-blk: add x-data-plane=on|off performance feature Michael S. Tsirkin
@ 2012-12-20 4:04 ` Rusty Russell
0 siblings, 0 replies; 2+ messages in thread
From: Rusty Russell @ 2012-12-20 4:04 UTC (permalink / raw)
To: Michael S. Tsirkin, Stefan Hajnoczi
Cc: Anthony Liguori, yvugenfi, qemu-devel, virtualization, Blue Swirl,
khoa, Stefan Hajnoczi, Paolo Bonzini
"Michael S. Tsirkin" <mst@redhat.com> writes:
> On Tue, Dec 18, 2012 at 03:57:17PM +0100, Stefan Hajnoczi wrote:
>> > > @@ -407,6 +409,14 @@ static void virtio_blk_handle_output(VirtIODevice *vdev, VirtQueue *vq)
>> > > .num_writes = 0,
>> > > };
>> > >
>> > > + /* Some guests kick before setting VIRTIO_CONFIG_S_DRIVER_OK so start
>> > > + * dataplane here instead of waiting for .set_status().
>> > > + */
>> >
>> > By the way which guests are these?
>>
>> I ran a Windows 8 guest today with build 48 virtio-win drivers. It
>> notifies before the device gets its .set_status() callback invoked.
>> But I could swear I've seen Linux guests do this too.
>
>
> That's very broken. But looking at linux drivers it also
> seems linux guests do this even today.
> We have:
>
> err = drv->probe(dev);
> if (err)
> add_status(dev, VIRTIO_CONFIG_S_FAILED);
> else {
> add_status(dev, VIRTIO_CONFIG_S_DRIVER_OK);
> if (drv->scan)
> drv->scan(dev);
> }
>
> this means that unless drivers implement scan() they
> will make device active before DRIVER_OK is written
> as the result linux can access it and kick.
> And almost no drivers implement scan.
> Nasty.
Yes, that's true. But as long as they have completed feature
negotiation, we allow this (that's why we tool feature negotiation out
of the drivers).
For example, filling an input virtqueue may well mean we kick the vq,
and almost every device does this.
virtio_block is the worst: add_disk() does partition scanning.
> Rusty, what do you think? Worth fixing?
If we tried, I'm fairly sure things would slip through. My feeling has
been that we should not rely on the status to indicate readiness.
> It does mean that for now we are stuck
> with a work around, but I think we need it
> in virtio core in qemu, it's not dataplane
> specific.
Yes, it's a general problem.
Cheers,
Rusty.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-12-20 4:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1355144985-12897-1-git-send-email-stefanha@redhat.com>
[not found] ` <1355144985-12897-13-git-send-email-stefanha@redhat.com>
[not found] ` <20121216160853.GC15790@redhat.com>
[not found] ` <20121218145717.GA11063@stefanha-thinkpad.redhat.com>
2012-12-18 15:22 ` [Qemu-devel] [PATCH v6 12/12] virtio-blk: add x-data-plane=on|off performance feature Michael S. Tsirkin
2012-12-20 4:04 ` Rusty Russell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox