summaryrefslogtreecommitdiff
path: root/hw/char
diff options
context:
space:
mode:
authorAnton Blanchard <anton@samba.org>2013-08-13 14:10:04 +1000
committerAlexander Graf <agraf@suse.de>2013-09-02 10:06:41 +0200
commit7770b6f78a2d655e03852a5de238f5926c92be6a (patch)
tree83dfc0b0e9cc941dcbf0b5a5b11e9dad30413123 /hw/char
parent28290f37e20cda27574f15be9e9499493e3d0fe8 (diff)
downloadqemu-7770b6f78a2d655e03852a5de238f5926c92be6a.tar.gz
pseries: Fix stalls on hypervisor virtual console
A number of users are reporting stalls when using the pseries hypervisor virtual console. A simple test case is to paste 15 or 17 characters at a time into the console. Pasting 15 characters at a time works fine but pasting 17 characters hangs for a random amount of time. Other activity (network, qemu monitor etc) unblocks it. If qemu-char tries to send more than 16 characters at once, vty_can_receive returns false. At this point we have to wait for the guest to consume that output. Everything is good so far. The problem occurs when the the guest does consume the output. We need to signal back to the qemu-char layer that we are ready for more input. Without this we block until something else kicks us (eg network activity). Signed-off-by: Anton Blanchard <anton@samba.org> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/char')
-rw-r--r--hw/char/spapr_vty.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/char/spapr_vty.c b/hw/char/spapr_vty.c
index a7997213b6..9c2aef82e6 100644
--- a/hw/char/spapr_vty.c
+++ b/hw/char/spapr_vty.c
@@ -47,6 +47,8 @@ static int vty_getchars(VIOsPAPRDevice *sdev, uint8_t *buf, int max)
buf[n++] = dev->buf[dev->out++ % VTERM_BUFSIZE];
}
+ qemu_chr_accept_input(dev->chardev);
+
return n;
}