summaryrefslogtreecommitdiff
path: root/Kernel/Memory/MemoryManager.cpp
AgeCommit message (Expand)Author
2022-08-20Kernel: Make self-contained locking smart pointers their own classesAndreas Kling
2022-08-19Kernel/x86: Re-enable interrupts ASAP when handling page faultsAndreas Kling
2022-08-18Kernel: Add a comment about what the MM lock protectsAndreas Kling
2022-08-16Kernel: Release 1 page instead of all pages when starved for pagesdylanbobb
2022-08-15Kernel: Don't release file-pages if volatile memory purge did itJorropo
2022-08-14Kernel: Dump list of processes and their memory usage when OOMingAndreas Kling
2022-08-14Kernel: Release some clean file-backed memory when starved for pagesAndreas Kling
2022-08-14Kernel: Update outdated "user physical pages" terminologyAndreas Kling
2022-08-09Kernel: Fix SMP deadlock in MM::allocate_contiguous_physical_pagesBrian Gianforcaro
2022-07-14Kernel+Userland: Rename prefix of user_physical => physicalLiav A
2022-07-14Kernel+Userland: Remove supervisor pages conceptLiav A
2022-07-14Kernel: Allocate user physical pages instead of supervisor ones for DMALiav A
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-06-06Kernel: Tighten assertion in MM::find_free_user_physical_pageIdan Horowitz
2022-06-06Kernel: Only use uncommitted pages when allocating contiguous user pagesIdan Horowitz
2022-04-05Kernel: Remove MemoryManager::region_tree() accessorAndreas Kling
2022-04-05Kernel: Move allocate_unbacked_region_anywhere() to MemoryManagerAndreas Kling
2022-04-05Kernel: Move create_identity_mapped_region() to MemoryManagerAndreas Kling
2022-04-05Kernel: Add RegionTree::find_region_containing(address or range)Andreas Kling
2022-04-05Kernel: Add RegionTree::remove(Region&)Andreas Kling
2022-04-05Kernel: Take the RegionTree spinlock when inspecting tree from outsideAndreas Kling
2022-04-03Kernel: Unbreak ASLR in the new RegionTree worldAndreas Kling
2022-04-03Kernel: Stop exposing RegionTree API for VM range allocationAndreas Kling
2022-04-03Kernel: Make VM allocation atomic for userspace regionsAndreas Kling
2022-04-03LibWeb: Make VM allocation atomic for kernel regionsAndreas Kling
2022-04-03Kernel: Use intrusive RegionTree solution for kernel regions as wellAndreas Kling
2022-04-02Kernel: Make MemoryManager compile on aarch64James Mintram
2022-04-02Kernel: Make handle_crash available to aarch64James Mintram
2022-04-02Kernel: Make PageDirectory.cpp compile on aarch64James Mintram
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-17Kernel: Use default constructors/destructorsLenny Maiorani
2022-02-11Kernel: Make contiguous VM objects use "user physical pages" by defaultAndreas Kling
2022-01-28Kernel: Move kernel region checks from x86 page fault handler to MMAndreas Kling
2022-01-28Kernel: Quickly reject userspace addresses in kernel_region_from_vaddr()Andreas Kling
2022-01-28Kernel: Convert MemoryManager::allocate_user_physical_page to ErrorOrIdan Horowitz
2022-01-28Kernel: Make allocate_supervisor_physical_page OOM-fallibleIdan Horowitz
2022-01-28Kernel: Make allocate_contiguous_supervisor_physical_pages OOM-fallibleIdan Horowitz
2022-01-28Kernel: Use memset instead of fast_u32_fill in MemoryManager zero fillsIdan Horowitz
2022-01-16Kernel: Use an IntrusiveRedBlackTree for kernel regionsAndreas Kling
2022-01-15Kernel: Only register kernel regions with MemoryManagerAndreas Kling
2022-01-10Kernel: Remove redundant hash map of page tables in PageDirectoryAndreas Kling
2022-01-09Kernel: Add implied auto qualifiers in MemoryHendiadyoin1
2022-01-09Kernel: Overload DMA helper without Physical Page output parameterPankaj Raghav
2022-01-09Kernel: Set Cacheable parameter to NO explicitly in DMA helpersPankaj Raghav
2022-01-08Kernel: Implement read functionality for MemoryDeviceLiav A
2022-01-08Kernel: Change method name to clarify physical memory mmap validationLiav A
2022-01-07Kernel/Memory: Remove needless VERIFY in /dev/mem mmap validation methodLiav A
2022-01-04Kernel: Scan ACPI memory ranges for the RSDP tableTom
2022-01-01Kernel: Add DMA allocate functions that are TRY-ablePankaj Raghav
2021-12-28Kernel: Propagate overflow errors from Memory::page_round_upGuilherme Goncalves