QEMU/KVM and GPU Passthrough Troubleshooting: Difference between revisions
Line 27: | Line 27: | ||
* [http://vfio.blogspot.com/2014/08/vfiovga-faq.html Alex Williamson: VFIO tips and tricks (at vifo.blogspot.com): Usefully Q&A] | * [http://vfio.blogspot.com/2014/08/vfiovga-faq.html Alex Williamson: VFIO tips and tricks (at vifo.blogspot.com): Usefully Q&A] | ||
* [https://pve.proxmox.com/wiki/Pci_passthrough#HDMI_Audio_crackling.2Fbroken Proxmox Wiki: Pci passthrough » HDMI Audio crackling/broken] | * [https://pve.proxmox.com/wiki/Pci_passthrough#HDMI_Audio_crackling.2Fbroken Proxmox Wiki: Pci passthrough » HDMI Audio crackling/broken] | ||
== Hide the Warnings KVM: vcpu0 ignored rdmsr == | |||
<syntaxhighlight lang="shell" line="1"> | |||
sudo nano /etc/modprobe.d/kvm.conf | |||
</syntaxhighlight> | |||
<syntaxhighlight lang="bash"> | |||
options kvm report_ignored_msrs=0 # Or: GRUB_CMDLINE_LINUX_DEFAULT="... kvm.report_ignored_msrs=0 ..." | |||
</syntaxhighlight> | |||
<syntaxhighlight lang="shell" line=1> | |||
sudo update-initramfs -u -k all | |||
</syntaxhighlight> | |||
* Note, according to my experience, this option may cause crashes of the host system!? | |||
===References=== | |||
* [https://forum.proxmox.com/threads/how-to-stop-warnings-kvm-vcpu0-ignored-rdmsr.28552/ Proxmox: How to stop warnings "kvm: vcpu0 ignored rdmsr"] | |||
* [https://forum.proxmox.com/threads/ignore_msrs-for-host-cpu-being-ignored.42416/ ignore_msrs for host CPU being ignored] |
Revision as of 13:02, 2 September 2022
Guest GPU Audio Crackling and IRQ xx: Nobody Cared Fix
The solution of the issue Guest GPU HDMI Audio Crackling, Broken or Losing is well explained by Jonp at UNRAID Forums. In short we must try to enable the MSI – Message Signaled Interrupts option if the device support it. Here is a detailed step-by-step instruction how to do that.
I was mentioned the kernel command irqpool
as solution for this issue, but in my opinion and according to some other posts, provided in the references section, this setting is an actual solution for the problem irq 44: nobody cared (try booting with the "irqpool" option); handlers: vfio_intx_handler; Disabling IRQ #44
, that appears at my system when booting a VM with GPU passthrough with a display attached to it, which was causing host system reboot.
References
- UNRAID Forums: Windows 10 VM Losing Audio
- UNRAID Forums: Kernel Disabling IRQ #16
- RedHat ListMAN: Kernel panic at vfio_intx_handler leads to low performance in guest VM
- Alex Williamson: VFIO tips and tricks (at vifo.blogspot.com): Usefully Q&A
- Proxmox Wiki: Pci passthrough » HDMI Audio crackling/broken
Hide the Warnings KVM: vcpu0 ignored rdmsr
sudo nano /etc/modprobe.d/kvm.conf
options kvm report_ignored_msrs=0 # Or: GRUB_CMDLINE_LINUX_DEFAULT="... kvm.report_ignored_msrs=0 ..."
sudo update-initramfs -u -k all
- Note, according to my experience, this option may cause crashes of the host system!?