From 1845e63e7ca31a85d3a99af5318432161eb1cacf Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Mon, 27 May 2024 08:02:57 +0000 Subject: [PATCH] devices: make IOAPIC log a bit more useful Signed-off-by: Wei Liu --- devices/src/ioapic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devices/src/ioapic.rs b/devices/src/ioapic.rs index 3f9be8c89..bcfd0a186 100644 --- a/devices/src/ioapic.rs +++ b/devices/src/ioapic.rs @@ -416,7 +416,7 @@ impl InterruptController for Ioapic { self.interrupt_source_group .trigger(irq as InterruptIndex) .map_err(Error::TriggerInterrupt)?; - debug!("Interrupt successfully delivered"); + debug!("Interrupt {irq} successfully delivered"); // If trigger mode is level sensitive, set the Remote IRR bit. // It will be cleared when the EOI is received.