From 869c31442e967575805171ecc7e8f3904de3e4b3 Mon Sep 17 00:00:00 2001 From: Dongliang Mu Date: Fri, 16 Mar 2018 16:22:56 -0400 Subject: [PATCH] fix two wrong links --- MM/linux-mm-3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MM/linux-mm-3.md b/MM/linux-mm-3.md index 96f5c48..6cf81b4 100644 --- a/MM/linux-mm-3.md +++ b/MM/linux-mm-3.md @@ -337,7 +337,7 @@ Last two steps of the `kmemcheck_fault` function is to call the `kmemcheck_acces static struct kmemcheck_error error_fifo[CONFIG_KMEMCHECK_QUEUE_SIZE]; ``` -The `kmemcheck` mechanism declares special [tasklet](https://0xax.gitbooks.io/linux-insides/content/interrupts/interrupts-9.html): +The `kmemcheck` mechanism declares special [tasklet](https://0xax.gitbooks.io/linux-insides/content/Interrupts/interrupts-9.html): ```C static DECLARE_TASKLET(kmemcheck_tasklet, &do_wakeup, 0); @@ -429,6 +429,6 @@ Links * [translation lookaside buffer](https://en.wikipedia.org/wiki/Translation_lookaside_buffer) * [per-cpu variables](https://0xax.gitbooks.io/linux-insides/content/Concepts/per-cpu.html) * [flags register](https://en.wikipedia.org/wiki/FLAGS_register) -* [tasklet](https://0xax.gitbooks.io/linux-insides/content/interrupts/interrupts-9.html) +* [tasklet](https://0xax.gitbooks.io/linux-insides/content/Interrupts/interrupts-9.html) * [Paging](http://0xax.gitbooks.io/linux-insides/content/Theory/Paging.html) * [Previous part](https://0xax.gitbooks.io/linux-insides/content/MM/linux-mm-2.html)