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

Merge pull request #504 from jbcayrou/patch-2

Fix typo linux-initialization-3
This commit is contained in:
0xAX 2017-08-04 23:52:45 +06:00 committed by GitHub
commit 9c65648dd0

View File

@ -260,7 +260,7 @@ and reserves memory region for the given base address and size. `memblock_reserv
First touch of the linux kernel memory manager framework First touch of the linux kernel memory manager framework
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
In the previous paragraph we stopped at the call of the `memblock_reserve` function and as i sad before it is the first function from the memory manager framework. Let's try to understand how it works. `memblock_reserve` function just calls: In the previous paragraph we stopped at the call of the `memblock_reserve` function and as i said before it is the first function from the memory manager framework. Let's try to understand how it works. `memblock_reserve` function just calls:
```C ```C
memblock_reserve_region(base, size, MAX_NUMNODES, 0); memblock_reserve_region(base, size, MAX_NUMNODES, 0);