Hi, I record and replay using these commands
qemu-system-x86_64 \ -icount shift=auto,rr=record,rrfile=replay.bin \ -cdrom /b/iumansky/vmhost/qfx-ms-fixed.iso \ -L /b/iumansky/devel/qemu-src/qemu/pc-bios/ \ -nographic \ -m 4096 \ -drive file=disk.qcow2,if=none,snapshot=off,id=img-direct \ -drive driver=blkreplay,if=none,image=img-direct,id=img-blkreplay \ -device ide-hd,drive=img-blkreplay \ -netdev user,id=net1 -device rtl8139,netdev=net1 \ -object filter-replay,id=replay,netdev=net1 Recording works fine. However replay sometimes work but most of the time hangs. I found that the place where it hangs is On INTERRUPT event. Cpu->interrupt_request is 2. But interrupt is disabled x ((X86CPU*)cpu)->env->eflags 0x2. Hang happen not at the same icount but with the above symptom always. Thank you for your help Ilya
