1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-11-01 20:49:23 +00:00
linux-insides/mm/README.md

8 lines
488 B
Markdown
Raw Normal View History

2015-03-29 13:58:20 +00:00
# Linux kernel memory management
This chapter describes memory management in the linux kernel. You will see here a
couple of posts which describe different parts of the linux memory management framework:
2015-03-30 11:18:39 +00:00
* [Memblock](https://github.com/0xAX/linux-insides/blob/master/mm/linux-mm-1.md) - describes early `memblock` allocator.
2015-04-19 13:58:54 +00:00
* [Fix-Mapped Addresses and ioremap](https://github.com/0xAX/linux-insides/blob/master/mm/linux-mm-2.md) - describes `fix-mapped` addresses and early `ioremap`.