Kernel: Reorder locking with VirtualRange

This commit is contained in:
Bananymous 2025-04-01 22:59:33 +03:00
parent 2e3b917192
commit 76bad31dd5
1 changed files with 2 additions and 2 deletions

View File

@ -106,10 +106,10 @@ namespace Kernel
ASSERT(&PageTable::current() == &m_page_table);
ASSERT(&m_page_table != &page_table);
auto result = TRY(create_to_vaddr(page_table, m_vaddr, m_size, m_flags, m_preallocated));
SpinLockGuard _(m_lock);
auto result = TRY(create_to_vaddr(page_table, m_vaddr, m_size, m_flags, m_preallocated));
const size_t page_count = m_size / PAGE_SIZE;
for (size_t i = 0; i < page_count; i++)
{