From 72199bb7d7a22eb29b7b19b680f87d2770a7d46e Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 5 Aug 2016 11:21:46 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20link=20and=20link=20to=20both=20=E2=80=9C?= =?UTF-8?q?page=20tables=E2=80=9D=20and=20=E2=80=9Cremap=20the=20kernel?= =?UTF-8?q?=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- blog/post/2016-04-11-kernel-heap.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/blog/post/2016-04-11-kernel-heap.md b/blog/post/2016-04-11-kernel-heap.md index 7582b4a4..083d1314 100644 --- a/blog/post/2016-04-11-kernel-heap.md +++ b/blog/post/2016-04-11-kernel-heap.md @@ -458,9 +458,10 @@ That's it. Now our `memory::init` function can only be called once. The macro wo [AtomicBool]: https://doc.rust-lang.org/nightly/core/sync/atomic/struct.AtomicBool.html ### Mapping the Heap -Now we're ready to map the heap pages. In order to do it, we need access to the `ActivePageTable` or `Mapper` instance (see the [previous post]). Therefore we return it from the `paging::remap_the_kernel` function: +Now we're ready to map the heap pages. In order to do it, we need access to the `ActivePageTable` or `Mapper` instance (see the [page table] and [kernel remapping] posts). Therefore we return it from the `paging::remap_the_kernel` function: -[previous post]: {{ page.previous.url }} +[page table]: {{% relref "2015-12-09-page-tables.md" %}} +[kernel remapping]: {{% relref "2016-01-01-remap-the-kernel.md" %}} ```rust // in src/memory/paging/mod.rs