https://bugzilla.kernel.org/show_bug.cgi?id=209025 --- Comment #9 from Niklas Schnelle (niklas@xxxxxxxxx) --- Hi Robert, git does not know what you compiled so you could just do "git bisect;git good v5.8;git bad v5.9-rc1" with that said it is of course best to always compile the versions you tell git are (not) working. I'm a fellow Arch Linux user (on all my private machines) and actually suspect its current QEMU and other package versions were necessary to expose this bug and are the reason Alex could not reproduce this. I did not do the git bisect with PKGBUILDs though, instead I have a custom systemd-boot entry and in the .config set LOCALVERSION="-niklas" then I used the following commands: cd linux zcat /proc/config.gz > .config # once ton get Arch Config make oldconfig make -j 24 sudo make modules_install -j INSTALL_MOD_STRIP=1 sudo cp arch/x86_64/boot/bzImage /boot/vmlinuz-linux-niklas sudo mkinitcpio -p linux-niklas The last part is arch specific, on other distros there is a special installkernel script that does the copy to /boot and rebuilds the initramfs and also creates bootloader entries. Also only add the strip flag if you don't need debug symbols in modules. The manual cp/modules_install of course means I have to delete the /usr/lib/modules/.. folders manually but they all have "niklas" in the name so that's easy enough ;-) -- You are receiving this mail because: You are watching the assignee of the bug.