diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-30 12:24:58 +0000 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-06-30 12:27:06 +0000 |
| commit | 33606b41d35115f887ea688b1a16f2ff85bf2fe4 (patch) | |
| tree | 406b2c7b19a087ba437c68f3dbf0b589fa1d6150 /results/scraper/launchpad-without-comments/1702798 | |
| parent | adedf8771bc4de3113041ca21bd4d0d1c0014b6a (diff) | |
| download | emulator-bug-study-33606b41d35115f887ea688b1a16f2ff85bf2fe4.tar.gz emulator-bug-study-33606b41d35115f887ea688b1a16f2ff85bf2fe4.zip | |
add launchpad bug reports without comments
Diffstat (limited to 'results/scraper/launchpad-without-comments/1702798')
| -rw-r--r-- | results/scraper/launchpad-without-comments/1702798 | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1702798 b/results/scraper/launchpad-without-comments/1702798 new file mode 100644 index 00000000..0198a8a0 --- /dev/null +++ b/results/scraper/launchpad-without-comments/1702798 @@ -0,0 +1,22 @@ +colo: secondary vm can't receive any packet + +Following document 'COLO-FT.txt', I test colo feature on my hosts. It seems goes well,but I found the secondary vm can't receive any packets. I attached the process and find out the reason as follow, the filter-redirector(red0) didn't flush it's queue because the secondary vm in migrate state(RUN_STATE_INMIGRATE) : +int qemu_can_send_packet(NetClientState *sender) +{ + int vm_running = runstate_is_running(): + + if (!vm_running) { // it will return false on the secondary vm + return 0; + } + ------ +} + +How does it produce outbound packets in the secondary vm as it in migrate state? +static void *qemu_kvm_cpu_thread_fn(void *arg) +{ + ------ + do { + if (cpu_can_run(cpu)) { // it will return false on the secondary vm + r = kvm_cpu_exec(cpu); + ------ +} \ No newline at end of file |