Add missing and (#1093)

This commit is contained in:
Hofer-Julian
2022-04-07 19:08:10 +02:00
committed by GitHub
parent f365ade976
commit 5217bc27b7

View File

@@ -447,7 +447,7 @@ When we run it, we see the following output:
We see that there are various non-empty entries, which all map to different level 3 tables. There are so many regions because kernel code, kernel stack, the physical memory mapping, and the boot information all use separate memory areas. We see that there are various non-empty entries, which all map to different level 3 tables. There are so many regions because kernel code, kernel stack, the physical memory mapping, and the boot information all use separate memory areas.
To traverse the page tables further and take a look at a level 3 table, we can take the mapped frame of an entry convert it to a virtual address again: To traverse the page tables further and take a look at a level 3 table, we can take the mapped frame of an entry and convert it to a virtual address again:
```rust ```rust
// in the `for` loop in src/main.rs // in the `for` loop in src/main.rs