index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Kernel
/
VM
/
PhysicalRegion.h
Age
Commit message (
Expand
)
Author
2021-08-06
Kernel: Rename Kernel/VM/ to Kernel/Memory/
Andreas Kling
2021-07-14
Kernel: Fix logic error in PhysicalRegion::contains()
Andreas Kling
2021-07-13
Kernel: Remove some friendships and make some classes non-copy/moveable
Andreas Kling
2021-07-13
Kernel: Remove some unnecessary includes in VM/Physical*
Andreas Kling
2021-07-13
Kernel: Avoid O(n) loop over zones when allocating from PhysicalRegion
Andreas Kling
2021-07-13
Kernel: Make PhysicalRegion eternally allocated
Andreas Kling
2021-07-13
Kernel: Remove PhysicalRegion::finalize_capacity()
Andreas Kling
2021-07-13
Kernel: Simplify the way PhysicalRegions are constructed
Andreas Kling
2021-07-13
Kernel: Remove unused used/free pages API's from PhysicalRegion
Andreas Kling
2021-07-13
Kernel: Remove API for requesting physical allocation alignment
Andreas Kling
2021-07-13
Kernel: Implement zone-based buddy allocator for physical memory
Andreas Kling
2021-07-12
Kernel: Remove "supervisor" bit from PhysicalPage
Andreas Kling
2021-07-11
Kernel: Remove pointless ref-counting from PhysicalRegion
Andreas Kling
2021-07-08
Kernel: Return an already destructed PhysicalPage to the allocators
Tom
2021-07-08
Kernel: Move PhysicalPage classes out of the heap into an array
Tom
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-02-28
Kernel: Use default con/de-structors
Ben Wiederhake
2021-01-28
Kernel: Allow specifying a physical alignment when allocating
Tom
2020-09-25
Meta+Kernel: Make clang-format-10 clean
Ben Wiederhake
2020-09-09
Kernel: Optimize single physical page allocation and randomize returns
Tom
2020-08-30
Kernel: Remove unused variable PhysicalRegion::m_last
Andreas Kling
2020-08-25
Kernel: Make PhysicalPage not movable and use atomic ref counting
Tom
2020-08-22
Revert "Kernel: Make PhysicalPage not movable and use atomic ref counting"
Andreas Kling
2020-08-22
Kernel: Make PhysicalPage not movable and use atomic ref counting
Tom
2020-05-08
Kernel: Use NonnullRefPtrVector<T> instead of Vector<RefPtr<T>> some
Andreas Kling
2020-03-08
Kernel: Allow contiguous allocations in physical memory
Liav A
2020-02-16
Kernel: Move all code into the Kernel namespace
Andreas Kling
2020-01-18
Meta: Add license header to source files
Andreas Kling
2019-07-09
Kernel: Move PhysicalAddress.h into VM/
Andreas Kling
2019-06-21
AK: Rename Retainable.h => RefCounted.h.
Andreas Kling
2019-06-21
AK: Rename RetainPtr.h => RefPtr.h, Retained.h => NonnullRefPtr.h.
Andreas Kling
2019-06-21
AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.
Andreas Kling
2019-06-21
AK: Rename Retainable => RefCounted.
Andreas Kling
2019-06-14
VM: Pass a PhysicalPage by rvalue reference when returning it to the freelist.
Sergey Bugaev
2019-06-12
Kernel: Refactor MemoryManager to use a Bitmap rather than a Vector
Conrad Pankoff