From efed15d860e091133903ae834c686524b0150e8f Mon Sep 17 00:00:00 2001 From: Alexander Kuleshov Date: Thu, 3 May 2018 23:45:10 +0600 Subject: [PATCH] kaslr: improve sentence Signed-off-by: Alexander Kuleshov --- 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 28521b9..c171f62 100644 --- a/Booting/linux-bootstrap-6.md +++ b/Booting/linux-bootstrap-6.md @@ -353,7 +353,7 @@ struct slot_area { static struct slot_area slot_areas[MAX_SLOT_AREA]; ``` -array. The kernel decompressor should select random index of this array and it will be random place where kernel will be decompressed. This selection will be executed by the `slots_fetch_random` function. The main goal of the `slots_fetch_random` function is to select random memory range from the `slot_areas` array via `kaslr_get_random_long` function: +array. The kernel will select a random index of this array for kernel to be decompressed. This selection will be executed by the `slots_fetch_random` function. The main goal of the `slots_fetch_random` function is to select random memory range from the `slot_areas` array via `kaslr_get_random_long` function: ```C slot = kaslr_get_random_long("Physical") % slot_max;