summaryrefslogtreecommitdiff
path: root/Kernel/VM/PhysicalRegion.cpp
AgeCommit message (Expand)Author
2021-07-11Kernel: Remove pointless ref-counting from PhysicalRegionAndreas Kling
2021-07-08Kernel: Return an already destructed PhysicalPage to the allocatorsTom
2021-07-08Kernel: Move PhysicalPage classes out of the heap into an arrayTom
2021-07-08Kernel: Use PAE to allow accessing all physical memory beyond 4GBTom
2021-04-23AK: Rename adopt() to adopt_ref()Andreas Kling
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-03-04AK: Simplify Bitmap and implement in terms of BitmapViewAndreas Kling
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-01-28Kernel: Allow specifying a physical alignment when allocatingTom
2020-12-29Kernel/VM: Make local_offset in PhysicalRegion::find_one_free_page unsignedLuke
2020-12-29Kernel/VM: Make local_offset in PhysicalRegion::free_page_at unsignedLuke
2020-10-16Kernel: Ensure PhysicalRegion free page hint is within valid rangeTom
2020-09-25Meta+Kernel: Make clang-format-10 cleanBen Wiederhake
2020-09-16Kernel: Return ENOMEM in more placesLuke
2020-09-09Kernel: Optimize single physical page allocation and randomize returnsTom
2020-08-30Kernel: Remove unused variable PhysicalRegion::m_lastAndreas Kling
2020-05-08Kernel: Use NonnullRefPtrVector<T> instead of Vector<RefPtr<T>> someAndreas Kling
2020-03-08Kernel: Allow contiguous allocations in physical memoryLiav A
2020-03-08AK: Add global FlatPtr typedef. It's u32 or u64, based on sizeof(void*)Andreas Kling
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-01-20Use uintptr_t instead of u32 when storing pointers as integersAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2019-09-17Kernel: Fix returning pages to regions >= 2GBConrad Pankoff
2019-07-09Kernel: Move PhysicalAddress.h into VM/Andreas Kling
2019-06-22Kernel: Fix all compiler warnings.Andreas Kling
2019-06-21AK: Rename RetainPtr.h => RefPtr.h, Retained.h => NonnullRefPtr.h.Andreas Kling
2019-06-21AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.Andreas Kling
2019-06-12Kernel: Wrap around to region start if necessary in take_free_pageConrad Pankoff
2019-06-12Kernel: Refactor MemoryManager to use a Bitmap rather than a VectorConrad Pankoff