From: Andrzej Zaborowski <balrogg@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 4/6] virtio-serial: Call .guest_ready when new space is available in the queue.
Date: Mon, 9 Jan 2012 08:57:54 +0100 [thread overview]
Message-ID: <1326095876-31319-5-git-send-email-balrogg@gmail.com> (raw)
In-Reply-To: <1326095876-31319-1-git-send-email-balrogg@gmail.com>
Without that it's impossible to write a virtio-serial port driver that
sends any buffers bigger than a couple kilobytes, other than by
polling to check when space in the queue becomes available.
Signed-off-by: Andrzej Zaborowski <andrew.zaborowski@intel.com>
---
hw/virtio-serial-bus.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/hw/virtio-serial-bus.c b/hw/virtio-serial-bus.c
index 3a9004a..72bbe78 100644
--- a/hw/virtio-serial-bus.c
+++ b/hw/virtio-serial-bus.c
@@ -495,6 +495,14 @@ static void handle_output(VirtIODevice *vdev, VirtQueue *vq)
static void handle_input(VirtIODevice *vdev, VirtQueue *vq)
{
+ VirtIOSerial *vser = DO_UPCAST(VirtIOSerial, vdev, vdev);
+ VirtIOSerialPort *port = find_port_by_vq(vser, vq);
+ VirtIOSerialPortInfo *info =
+ port ? DO_UPCAST(VirtIOSerialPortInfo, qdev, port->dev.info) : NULL;
+
+ if (info && info->guest_ready) {
+ info->guest_ready(port);
+ }
}
static uint32_t get_features(VirtIODevice *vdev, uint32_t features)
--
1.7.4.4
next prev parent reply other threads:[~2012-01-09 18:59 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-09 7:57 [Qemu-devel] [PATCH 0/6] OpenGL passthrough support once again Andrzej Zaborowski
2012-01-09 7:57 ` [Qemu-devel] [PATCH 1/6] gl: Add an OpenGL offscreen rendering API and backends Andrzej Zaborowski
2012-01-09 7:57 ` [Qemu-devel] [PATCH 3/6] gl: OpenGL passthrough implementation Andrzej Zaborowski
2012-01-09 7:57 ` [Qemu-devel] [PATCH 2/6] gl: Add mesa OpenGL headers Andrzej Zaborowski
2012-01-09 7:57 ` Andrzej Zaborowski [this message]
2012-01-09 7:57 ` [Qemu-devel] [PATCH 5/6] gl: virtio-serial port driver for OpenGL passthrough Andrzej Zaborowski
2012-01-09 7:57 ` [Qemu-devel] [PATCH 6/6] gl: -enable-gl switch to enable the GL virtio port Andrzej Zaborowski
2012-01-10 8:29 ` [Qemu-devel] [PATCH 0/6] OpenGL passthrough support once again Alon Levy
2012-01-10 19:05 ` andrzej zaborowski
2012-01-10 8:44 ` [Qemu-devel] [PATCH] (dont commit) virtio-gl-fixes for build on F17 Alon Levy
2012-01-10 19:13 ` andrzej zaborowski
2012-01-12 10:42 ` Alon Levy
2012-01-12 13:18 ` andrzej zaborowski
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=1326095876-31319-5-git-send-email-balrogg@gmail.com \
--to=balrogg@gmail.com \
--cc=qemu-devel@nongnu.org \
/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).