diff options
Diffstat (limited to 'results/classifier/zero-shot/105/graphic/1231')
| -rw-r--r-- | results/classifier/zero-shot/105/graphic/1231 | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/results/classifier/zero-shot/105/graphic/1231 b/results/classifier/zero-shot/105/graphic/1231 new file mode 100644 index 000000000..c7d320c93 --- /dev/null +++ b/results/classifier/zero-shot/105/graphic/1231 @@ -0,0 +1,26 @@ +graphic: 0.969 +device: 0.822 +instruction: 0.691 +vnc: 0.678 +semantic: 0.652 +network: 0.437 +mistranslation: 0.415 +KVM: 0.305 +boot: 0.245 +other: 0.237 +socket: 0.193 +assembly: 0.045 + +Loading migration of VM in debug state fails (with potential solution) +Description of problem: +``` +qemu-system-x86_64: invalid runstate transition: 'inmigrate' -> 'debug' +Aborted (core dumped) +``` +Steps to reproduce: +1. Start VM with gdbstub +2. Pause VM via gdbstub +3. Save migration snapshot via HMP: `migrate "exec: gzip -c > foo.gz"` +4. Start new QEMU instance from snapshot by adding these args to whatever you used to launch QEMU: `-incoming "exec: gzip -c -d foo.gz"` +Additional information: +This can be fixed by adding `{ RUN_STATE_INMIGRATE, RUN_STATE_DEBUG },` to `runstate_transitions_def` in `softmmu/runstate.c`. It's not clear if there are any negative ramifications of this, but it seems to work for me? |