summaryrefslogtreecommitdiffstats
path: root/results/scraper/launchpad-without-comments/1902262
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/1902262
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/1902262')
-rw-r--r--results/scraper/launchpad-without-comments/190226219
1 files changed, 19 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1902262 b/results/scraper/launchpad-without-comments/1902262
new file mode 100644
index 00000000..6b2af123
--- /dev/null
+++ b/results/scraper/launchpad-without-comments/1902262
@@ -0,0 +1,19 @@
+vmstate_load_state return error into virtio_load function
+
+Qemu version 4.2.1
+
+In the function of virtio_load, the vmstate_load_state will return error in the following case.
+
+The virtio is legacy mode(disable-modern=on,disable-legacy=off), virtio_device is in reset state.
+
+In the the function of "vmstate_load_state", it will load all subsection. For the vmstate_virtio_extra_state subsection.
+It will execute:
+vmstate_load_state -->
+ ret = field->info->get(f, curr_elem, size, field); line 143 vmstate.c.
+ -->virtio_pci_load_extra_state
+ --> vmstate_load_state
+ -->qemu_peek_byte
+But if the f->buf_index is same with buf_size, qemu_peek_byte function will set "-EIO" error.
+the field->info->get will return 0, then it will get the error "ret = qemu_file_get_error(f);". then the vmstate_load_state will return error.
+
+It output is "Failed to load virtio/extra_state:extra_state" \ No newline at end of file