Kernel: Don't log spurious interrupts
Some PCs seem to be spamming a lot of int 7
This commit is contained in:
parent
3573656244
commit
c7afd46016
|
@ -381,9 +381,7 @@ namespace Kernel
|
||||||
|
|
||||||
Thread::current().save_sse();
|
Thread::current().save_sse();
|
||||||
|
|
||||||
if (!InterruptController::get().is_in_service(irq))
|
if (InterruptController::get().is_in_service(irq))
|
||||||
dprintln("spurious irq 0x{2H}", irq);
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
InterruptController::get().eoi(irq);
|
InterruptController::get().eoi(irq);
|
||||||
if (auto* handler = s_interruptables[irq])
|
if (auto* handler = s_interruptables[irq])
|
||||||
|
|
Loading…
Reference in New Issue