From 2607a6a4bde9893e7fbf56254f14de437ccbf752 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 24 Aug 2022 12:24:12 +0200 Subject: [PATCH] Kernel: Update comment about what the MM lock protects --- Kernel/Memory/MemoryManager.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Kernel/Memory/MemoryManager.cpp b/Kernel/Memory/MemoryManager.cpp index 3ab26a5731..4d1b3df8ef 100644 --- a/Kernel/Memory/MemoryManager.cpp +++ b/Kernel/Memory/MemoryManager.cpp @@ -62,8 +62,6 @@ static MemoryManager* s_the; // The MM lock protects: // - all data members of MemoryManager -// - the quickmap mechanism -// - the PTE/PDE mapping mechanism RecursiveSpinlock s_mm_lock { LockRank::MemoryManager }; MemoryManager& MemoryManager::the()