Improve the panic message for a busted MP table with conflicting entries
for the same PCI interrupt. Tested by: Pavel Gubin pg at ie dot tusur dot ru MFC after: 3 days
This commit is contained in:
parent
a2af6bc259
commit
9eba48462e
@ -935,7 +935,9 @@ mptable_pci_route_interrupt_handler(u_char *entry, void *arg)
|
||||
if (args->vector == vector)
|
||||
return;
|
||||
KASSERT(args->vector == -1,
|
||||
("Multiple entries for PCI IRQ %d", args->vector));
|
||||
("Multiple IRQs for PCI interrupt %d.%d.INT%c: %d and %d\n",
|
||||
args->bus, args->irq >> 2, 'A' + (args->irq & 0x3), args->vector,
|
||||
vector));
|
||||
args->vector = vector;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user