[Spice-devel] PATCH: virtio_console: Fix poll blocking even though there is data to read (version 2)

Hans de Goede hdegoede at redhat.com
Wed Sep 15 08:18:23 PDT 2010


Hi All,

I found this while working on a Linux agent for spice, the symptom I was
seeing was select blocking on the spice vdagent virtio serial port even
though there were messages queued up there.

I found this while working on a Linux agent for spice, the symptom I was
seeing was select blocking on the spice vdagent virtio serial port even
though there were messages queued up there.

virtio_console's port_fops_poll checks port->inbuf != NULL to determine if
read won't block. However if an application reads enough bytes from inbuf
through port_fops_read, to empty the current port->inbuf, port->inbuf
will be NULL even though there may be buffers left in the virtqueue.

This causes poll() to block even though there is data ready to be read, this
patch fixes this by using port_has_data(port) instead of the
port->inbuf != NULL check.

Signed-off-By: Hans de Goede <hdegoede at redhat.com>

Regards,

Hans

-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: linux-2.6.35.4-virtio_console-fix-poll.patch
URL: <http://lists.freedesktop.org/archives/spice-devel/attachments/20100915/5a80c00c/attachment.ksh>


More information about the Spice-devel mailing list