Hi, I'm observing boot failure for a rhel-9.7 VM. I'm using qemu git tree at commit c079d3a31e.
My local conf is: /configure --enable-kvm --enable-lto --target-list=x86_64-softmmu enable-numa --enable-curses --enable-vhost-net and the qemu command line: /build/qemu-system-x86_64 -smp 4 -enable-kvm -m 4G \ -hda "rhel9.7-20250506.3-image.qcow2" \ -netdev tap,id=nd0,vhostforce=on,vhost=on,ifname=tun0,script=no,downscript=no \ -device virtio-net-pci,netdev=nd0 \ -chardev stdio,id=char0,mux=on,logfile=serial.log,signal=off \ -serial chardev:char0 -mon chardev=char0 \ -cpu host \ -D qemu.log \ -name "raw qemu" it core dumps with the following error: qemu-system-x86_64: ../target/i386/kvm/kvm-cpu.c:149: kvm_cpu_xsave_init: Assertion `esa->size == eax' failed. Dumbly and blindly reverting 29f1ba338baf60a9e455b6fdc37489ca1efe25aa and 5f158abef44c7e0945fc5f76715ef135a9bf9bd2 solves the problem for me. Is that a known problem? Paolo