1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00

Kernel: Remove unused list of user regions in MemoryManager

We were putting all the user Region objects on an intrusive list
but not using it for anything.
This commit is contained in:
Andreas Kling 2021-08-09 02:07:08 +02:00
parent ab5c422a29
commit 96c7b70de3
2 changed files with 0 additions and 5 deletions

View file

@ -285,7 +285,6 @@ private:
PhysicalPageEntry* m_physical_page_entries { nullptr };
size_t m_physical_page_entries_count { 0 };
Region::ListInMemoryManager m_user_regions;
Region::ListInMemoryManager m_kernel_regions;
Vector<UsedMemoryRange> m_used_memory_ranges;
Vector<PhysicalMemoryRange> m_physical_memory_ranges;