summaryrefslogtreecommitdiffstats
path: root/results/scraper/launchpad-without-comments/1490886
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-30 12:24:58 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-30 12:27:06 +0000
commit33606b41d35115f887ea688b1a16f2ff85bf2fe4 (patch)
tree406b2c7b19a087ba437c68f3dbf0b589fa1d6150 /results/scraper/launchpad-without-comments/1490886
parentadedf8771bc4de3113041ca21bd4d0d1c0014b6a (diff)
downloademulator-bug-study-33606b41d35115f887ea688b1a16f2ff85bf2fe4.tar.gz
emulator-bug-study-33606b41d35115f887ea688b1a16f2ff85bf2fe4.zip
add launchpad bug reports without comments
Diffstat (limited to 'results/scraper/launchpad-without-comments/1490886')
-rw-r--r--results/scraper/launchpad-without-comments/149088632
1 files changed, 32 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1490886 b/results/scraper/launchpad-without-comments/1490886
new file mode 100644
index 00000000..1ecd9171
--- /dev/null
+++ b/results/scraper/launchpad-without-comments/1490886
@@ -0,0 +1,32 @@
+spice-qemu-char.c Assert
+
+spice-qemu-char.c:173: spice_chr_add_watch: Assertion `cond == G_IO_OUT' failed.
+I trace the code virtio-console.c:
+ret = qemu_chr_fe_write(vcon->chr, buf, len);
+ trace_virtio_console_flush_buf(port->id, len, ret);
+
+ if (ret < len) {
+ VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(port);
+
+ /*
+ * Ideally we'd get a better error code than just -1, but
+ * that's what the chardev interface gives us right now. If
+ * we had a finer-grained message, like -EPIPE, we could close
+ * this connection.
+ */
+ if (ret < 0)
+ ret = 0;
+ if (!k->is_console) {
+ virtio_serial_throttle_port(port, true);
+ if (!vcon->watch) {
+ vcon->watch = qemu_chr_fe_add_watch(vcon->chr,
+ G_IO_OUT|G_IO_HUP,
+ chr_write_unblocked, vcon);
+ }
+ }
+ }
+and spice-qemu-char.c in function:spice_chr_add_watch
+assert(cond == G_IO_OUT);
+so run in this code,will trigger this assert.
+
+My qemu version is 2.3.0 and spice-server version is 0.12.5 \ No newline at end of file