Kernel: Release debug lock if its locked during kernel panic

Also kernel panic now prints if it had lock
This commit is contained in:
2024-09-18 00:56:02 +03:00
parent f7e549e412
commit 999eb53364
2 changed files with 6 additions and 0 deletions

View File

@@ -17,7 +17,11 @@ namespace Kernel
static void panic_impl(const char* location, const char* message, Args&&... args)
{
asm volatile("cli");
const bool had_debug_lock = Debug::s_debug_lock.current_processor_has_lock();
derrorln("Kernel panic at {}", location);
if (had_debug_lock)
derrorln(" while having debug lock...");
derrorln(message, BAN::forward<Args>(args)...);
if (!g_paniced)
{