1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 14:48:08 +00:00

Merge pull request #62 from eax64/linux-paging-fix

Linux paging fix
This commit is contained in:
0xAX 2015-03-02 14:09:50 +06:00
commit 17374a07d7
2 changed files with 3 additions and 2 deletions

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
--------------------------------------------------------------------------------
There are three three paging modes:
There are three paging modes:
* 32-bit 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 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

View File

@ -25,3 +25,4 @@ Thank you to all contributors:
* [Jonatan Pålsson](https://github.com/jonte)
* [George Horrell](https://github.com/georgehorrell)
* [Ciro Santilli](https://github.com/cirosantilli)
* [Kevin Soules](https://github.com/eax64)