diff --git a/Kernel/Lock.cpp b/Kernel/Lock.cpp index 1aaad518cb..720f6ae8b1 100644 --- a/Kernel/Lock.cpp +++ b/Kernel/Lock.cpp @@ -80,6 +80,9 @@ void Lock::lock(Mode mode) // Note, we may now be on a different CPU! Processor::current().restore_critical(prev_crit, prev_flags); + } else { + // We need to process e.g. smp messages + Processor::wait_check(); } } }