I am not sure if it is right to use this thread for it, instead of starting a new one, but since it is still about the fix to this issue I post it here.
I fixed the issue by adding the kernel parameter module_blacklist=i915
in grub at boot-time. When I saw it worked I wanted to make that persistent, by adding a /etc/modprobe.d/blacklist.conf
in which I had the line
blacklist i915
when I started my PC the lag was back. lspci -vnn | grep -PA9 'VGA|3D|Display'
showed Kernel driver in use: i915
again. Remembering what was said in the wiki about modules maybe still loading, because another module depends on them, I changed the blacklist.conf
to
install i915 /bin/true
On reboot the module is not in use ( lspci -vnn | grep -PA9 'VGA|3D|Display'
does not show Kernel driver in use: i915
). But the lag is still there.
Rebooting with editing the boot command in grub and adding module_blacklist=i915
to the linux
line does fix it again.
I am puzzled.