From 476ec742c67ce3198d8e7a97c62645d9ea4fb8bd Mon Sep 17 00:00:00 2001 From: Pawel Wieczorkiewicz Date: Thu, 2 Nov 2023 10:35:40 +0100 Subject: [PATCH] smp: enable interrupts on AP CPUs Signed-off-by: Pawel Wieczorkiewicz --- smp/smp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/smp/smp.c b/smp/smp.c index 7cd96643..fc0ef959 100644 --- a/smp/smp.c +++ b/smp/smp.c @@ -60,6 +60,7 @@ void __noreturn ap_startup(void) { smp_wmb(); init_timers(cpu); + sti(); if (opt_fpu) enable_fpu();