Can't solve booting issue----irq 7: nobody cared (try booting with the "irqpoll" option)?

luofeiyu

New Member
Joined
Jul 4, 2021
Messages
2
Reaction score
0
Credits
33
Linux version info:

uname -a
Linux debian 5.10.0-22-amd64 #1 SMP Debian 5.10.178-3 (2023-04-22) x86_64 GNU/Linux

The message always shown on my booting :

sudo dmesg | grep "irq 7"
[ 2.649135] irq 7: nobody cared (try booting with the "irqpoll" option)

irq 7 info on my os:

cat /proc/interrupts | head -n 5
CPU0 CPU1 CPU2 CPU3
0: 35 0 0 0 IO-APIC 2-edge timer
1: 0 4226 0 0 IO-APIC 1-edge i8042
7: 0 0 100000 0 IO-APIC 7-fasteoi pinctrl_amd
8: 0 0 1 0 IO-APIC 8-edge rtc0

My cpu info:

lscpu | grep "Model name"
Model name: AMD Athlon 3000G with Radeon Vega Graphics

It can't solve the issue even to have written irqpoll in the grub.cfg:

sudo grep 'irqpoll' /boot/grub/grub.cfg
linux /boot/vmlinuz-5.10.0-22-amd64 root=UUID=55aaf5c1-acd2-4bb2-9536-f2900c96d6b2 ro single iommu=pt irqpoll
 


You didn't state if this error was keeping you from booting, or not, so...

It can't solve the issue even to have written irqpoll in the grub.cfg:
sudo grep 'irqpoll' /boot/grub/grub.cfg
linux /boot/vmlinuz-5.10.0-22-amd64 root=UUID=55aaf5c1-acd2-4bb2-9536-f2900c96d6b2 ro single iommu=pt irqpoll

I'm pretty sure it should've read something like this with regards to irqpoll, but maybe someone with more experience will be able to help?
kernel /vmlinuz-version ro root=/dev/sda1 quiet irqpoll
Found here:
Understanding kernel messages
 
Last edited:
As @xlbooyahlx suggests, you might try that command on other line, remove the existing line, and then update grub to ensure the changes take effect. You can also try this through the grub rescue menu at boot.

Additionally, if this is just a warning and the OS is working as expected, you can just ignore it. Your post isn't all that clear about what's happening, other than you're getting a warning. Many warnings during boot can be safely ignored.
 
Usually it means that either there is no handler registered for that irq or the one that is returned status indicating that the irq was not from hardware it is supporting in case of shared interrupts probably a faulty Hardware / Firmware or a buggy driver
You might want to check if you are missing any amdgpu firmware - do this
Code:
sudo update-initramfs -u
to see if any are missing - which I betting there is - anyhow like @KGIII has stated it is only a warning
 

Members online


Latest posts

Top