permissions: 0.626 semantic: 0.560 other: 0.556 graphic: 0.541 debug: 0.511 vnc: 0.463 device: 0.455 PID: 0.449 performance: 0.436 KVM: 0.411 socket: 0.391 network: 0.365 boot: 0.344 files: 0.213 Qemu after v5.0.0 breaks macos guests The Debian Sid 5.0-6 qemu-kvm package can no longer get further than the Clover bootloader whereas 5.0-6 and earlier worked fine. So I built qemu master from github and it has the same problem, whereas git tag v5.0.0 (or 4.2.1) does not, so something between v5.0.0 release and the last few days has caused the problem. Here's my qemu script, pretty standard macOS-Simple-KVM setup on a Xeon host: qemu-system-x86_64 \ -enable-kvm \ -m 4G \ -machine q35,accel=kvm \ -smp 4,sockets=1,cores=2,threads=2 \ -cpu Penryn,vendor=GenuineIntel,kvm=on,+sse3,+sse4.2,+aes,+xsave,+avx,+xsaveopt,+xsavec,+xgetbv1,+avx2,+bmi2,+smep,+bmi1,+fma,+movbe,+invtsc \ -device isa-applesmc,osk="ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" \ -smbios type=2 \ -drive if=pflash,format=raw,readonly,file="/tmp/OVMF_CODE.fd" \ -drive if=pflash,format=raw,file="/tmp/macos_catalina_VARS.fd" \ -vga qxl \ -device ich9-ahci,id=sata \ -drive id=ESP,if=none,format=raw,file=/tmp/ESP.img \ -device ide-hd,bus=sata.2,drive=ESP \ -drive id=InstallMedia,format=raw,if=none,file=/tmp/BaseSystem.img \ -device ide-hd,bus=sata.3,drive=InstallMedia \ -drive id=SystemDisk,if=none,format=raw,file=/tmp/macos_catalina.img \ -device ide-hd,bus=sata.4,drive=SystemDisk \ -usb -device usb-kbd -device usb-mouse Perhaps something has changed in Penryn support recently, as that's required for macos? See also https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=964247 Also on a related note, kernel 5.6/5.7 (on Debian) hard crashes the host when I try GPU passthrough on macos, whereas Ubuntu20/Win10 work fine - as does 5.5 kernel. See also https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=961676 Is this not the place to report qemu bugs? qemu console screenshot, this is as far as it gets after clover: https://i.imgur.com/HWY96Kq.png same result with or without usb/pci passthrough, qxl/vnc, git master HEAD or debian 5.0-6 Indeed it is, but bear in mind it was QEMU 5.1 release feature freeze this week so most developers are busy rebasing and fixing up bugs from the resulting merge. Given that you have already built QEMU from source, what would help enormously is if you can do a "git bisect" between the v5.0.0 tag (working) and your current master (not working) and provide the output of "git bisect log" in this bug report. By identifying the individual commit that broke your test case, it is much easier for developers to understand the issue and propose a fix. ATB, Mark. Thanks Mark, what an interesting exercise that was - and sorry, didn't know 5.1 was due. So the git bisect revealed this: $ git bisect good 5d971f9e672507210e77d020d89e0e89165c8fc9 is the first bad commit commit 5d971f9e672507210e77d020d89e0e89165c8fc9 Author: Michael S. Tsirkin