Mapping physical memory directly
https://www.sceen.net/mapping-physical-memory-directly/ [www.sceen.net]
2018-01-12 18:32
The Linux kernel has historically used a technique that could be considered dirty, but has proved very effective. It maps physical memory directly into the kernel space. This direct mapping of physical memory allows users of the physical page allocator to directly access the pages they obtain without any mapping operation. The only operation required to obtain the virtual address of a physical page is adding a fixed offset.
Nice intro to concept of direct mapping.