From 9c157e2677320ad0dba3df814aa4f9b9760f7afd Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Mon, 26 Feb 2024 00:17:56 -0500 Subject: kernel/amd64: sched: Send EOI after context switch Signed-off-by: Ian Moffett --- sys/arch/amd64/amd64/local_intr.S | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/arch/amd64/amd64/local_intr.S b/sys/arch/amd64/amd64/local_intr.S index b7b6345..6d69302 100644 --- a/sys/arch/amd64/amd64/local_intr.S +++ b/sys/arch/amd64/amd64/local_intr.S @@ -41,5 +41,6 @@ lapic_tmr_isr: push_trapframe $0 mov %rsp, %rdi call sched_context_switch + call lapic_send_eoi pop_trapframe iretq -- cgit v1.2.3