From: Anthony Liguori Date: Tue, 26 Mar 2013 15:04:43 +0000 (-0500) Subject: qtest: use synchronous I/O for char device X-Git-Tag: v1.5.0-rc0~412 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0fbf01fe911e84c588be41636570f46f597113d6;p=thirdparty%2Fqemu.git qtest: use synchronous I/O for char device Peter reported that rtc-test would periodically hang. It turns out this was due to an EAGAIN occurring on qemu_chr_fe_write. Instead of heavily refactoring qtest, just use a synchronous version of the write operation for qemu_chr_fe_write to address this problem. Reported-by: Peter Maydell Signed-off-by: Anthony Liguori --- diff --git a/qtest.c b/qtest.c index 5e0e9ec7918..b03b68adb3f 100644 --- a/qtest.c +++ b/qtest.c @@ -191,7 +191,7 @@ static void GCC_FMT_ATTR(2, 3) qtest_send(CharDriverState *chr, len = vsnprintf(buffer, sizeof(buffer), fmt, ap); va_end(ap); - qemu_chr_fe_write(chr, (uint8_t *)buffer, len); + qemu_chr_fe_write_all(chr, (uint8_t *)buffer, len); if (qtest_log_fp && qtest_opened) { fprintf(qtest_log_fp, "%s", buffer); }