Page MenuHomeFreeBSD

pci: Only re-route IRQs based on firmware on x86
ClosedPublic

Authored by cperciva on Mar 28 2025, 6:12 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Aug 8, 6:03 PM
Unknown Object (File)
Sat, Aug 8, 5:12 PM
Unknown Object (File)
Sat, Aug 8, 11:30 AM
Unknown Object (File)
Fri, Aug 7, 3:01 PM
Unknown Object (File)
Fri, Aug 7, 10:06 AM
Unknown Object (File)
Wed, Aug 5, 7:02 AM
Unknown Object (File)
Sun, Aug 2, 4:44 AM
Unknown Object (File)
Sat, Aug 1, 6:01 AM

Details

Summary

There is a (very historical) call to pci_assign_interrupt for the
purpose of routing IRQs which may have been set up wrong by x86 BIOS
or firmware. On non-x86 systems, this is unnecessary; and on INTRNG
systems it results in a (synthetic) IRQ leak and ultimately a kernel
panic after many hotplug/unplug cycles.

Suggested by: jhb
MFC after: 2 weeks
Sponsored by: Amazon

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 63186
Build 60070: arc lint + arc unit

Event Timeline

cperciva created this revision.
This revision is now accepted and ready to land.Mar 28 2025, 6:43 PM

Could it bring a new flow of messages into the kernel message buffer? After today's upgrade of my desktop PC, I see plenty of "Can't enable IRQ/MSI because no handler is installed," which didn't appear in the past.

It was triggered by D49543 (likely) and seems to be harmless so far.