1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-03 04:10:56 +00:00

Fix typo in paging

This commit is contained in:
Kevin Soules 2015-03-02 05:42:40 +01:00
parent 5d216aa249
commit 77475cb517

View File

@ -23,7 +23,7 @@ So... I will try to explain how paging works in theory in this post. Of course i
Enabling paging Enabling paging
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
There are three three paging modes: There are three paging modes:
* 32-bit paging; * 32-bit paging;
* PAE paging; * PAE paging;
@ -140,7 +140,7 @@ As i wrote about linux kernel for `x86_64` uses 4-level page tables. Their names
* Page Middle Directory * Page Middle Directory
* Page Table Entry * Page Table Entry
After that you compiled and installed linux kernel, you can note `System.map` file which stores address of the functions whic are used by the kernel. Note that addresses are virtual. For example: After that you compiled and installed linux kernel, you can note `System.map` file which stores address of the functions that are used by the kernel. Note that addresses are virtual. For example:
``` ```
$ grep "start_kernel" System.map $ grep "start_kernel" System.map