From f998c45910ac1c67f16f07aca04e278189a0f02c Mon Sep 17 00:00:00 2001 From: Ayyuce Demirbas Date: Wed, 22 Jul 2020 01:36:41 +0300 Subject: [PATCH] The link is broken Added new link to kaslr_64.c source code file --- Booting/linux-bootstrap-6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Booting/linux-bootstrap-6.md b/Booting/linux-bootstrap-6.md index 91a1251..e0bc8ec 100644 --- a/Booting/linux-bootstrap-6.md +++ b/Booting/linux-bootstrap-6.md @@ -146,7 +146,7 @@ Now, we call another function: initialize_identity_maps(); ``` -The `initialize_identity_maps` function is defined in the [arch/x86/boot/compressed/kaslr_64.c](https://github.com/torvalds/linux/blob/v4.16/arch/x86/boot/compressed/kaslr_64.c) source code file. This function starts by initialising an instance of the `x86_mapping_info` structure called `mapping_info`: +The `initialize_identity_maps` function is defined in the [arch/x86/boot/compressed/kaslr_64.c](https://github.com/torvalds/linux/blob/master/arch/x86/boot/compressed/kaslr_64.c) source code file. This function starts by initialising an instance of the `x86_mapping_info` structure called `mapping_info`: ```C mapping_info.alloc_pgt_page = alloc_pgt_page;