mirror of
https://github.com/0xAX/linux-insides.git
synced 2024-12-22 06:38:07 +00:00
Merge pull request #592 from zidarsk8/allocater-typo-fix
Fix allocater typo
This commit is contained in:
commit
17d74ce160
@ -299,7 +299,7 @@ for (; addr < end; addr = next) {
|
||||
}
|
||||
```
|
||||
|
||||
First of all here we find next entry of the `Page Global Directory` for the given address and if it is greater than `end` of the given memory region, we set it to `end`. After this we allocater a new page with our `x86_mapping_info` callback that we already considered above and call the `ident_p4d_init` function. The `ident_p4d_init` function will do the same, but for low-level page directories (`p4d` -> `pud` -> `pmd`).
|
||||
First of all here we find next entry of the `Page Global Directory` for the given address and if it is greater than `end` of the given memory region, we set it to `end`. After this we allocate a new page with our `x86_mapping_info` callback that we already considered above and call the `ident_p4d_init` function. The `ident_p4d_init` function will do the same, but for low-level page directories (`p4d` -> `pud` -> `pmd`).
|
||||
|
||||
That's all.
|
||||
|
||||
|
@ -118,4 +118,5 @@ Thank you to all contributors:
|
||||
* [kuritonasu](https://github.com/kuritonasu/)
|
||||
* [Miles Frain](https://github.com/milesfrain)
|
||||
* [Horace Heaven](https://github.com/horaceheaven)
|
||||
* [Miha Zidar](https://github.com/zidarsk8)
|
||||
* [Ivan Kovnatsky](https://github.com/sevenfourk)
|
||||
|
Loading…
Reference in New Issue
Block a user