Convert front matters to hugo's toml-based format

This commit is contained in:
Philipp Oppermann
2016-04-25 21:54:02 +02:00
parent 814fc5c3c0
commit cdc0b0748b
11 changed files with 68 additions and 52 deletions

View File

@@ -1,7 +1,8 @@
---
layout: post
title: 'Page Tables'
---
+++
title = "Page Tables"
slug = "modifying-page-tables"
date = "2015-12-09"
+++
In this post we will create a paging module, which allows us to access and modify the 4-level page table. We will explore recursive page table mapping and use some Rust features to make it safe. Finally we will create functions to translate virtual addresses and to map and unmap pages.