From 34e8b63191cf3d966f1d7c69be79b26d68a3a67b Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Tue, 20 Mar 2018 07:33:56 -0400 Subject: [PATCH] remove obsolete self-references --- arch/x86/kernel/entry.asm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/arch/x86/kernel/entry.asm b/arch/x86/kernel/entry.asm index ee86b7710..f8dd675ae 100644 --- a/arch/x86/kernel/entry.asm +++ b/arch/x86/kernel/entry.asm @@ -116,12 +116,10 @@ boot_pml4: DQ boot_pml4 + 0x223 ; PG_PRESENT | PG_RW | PG_ACCESSED | PG_SELF (self-reference) boot_pdpt: DQ boot_pgd + 0x23 ; PG_PRESENT | PG_RW | PG_ACCESSED - times 510 DQ 0 ; PAGE_MAP_ENTRIES - 2 - DQ boot_pml4 + 0x223 ; PG_PRESENT | PG_RW | PG_ACCESSED | PG_SELF (self-reference) + times 511 DQ 0 ; PAGE_MAP_ENTRIES - 1 boot_pgd: DQ boot_pgt + 0x23 ; PG_PRESENT | PG_RW | PG_ACCESSED - times 510 DQ 0 ; PAGE_MAP_ENTRIES - 2 - DQ boot_pml4 + 0x223 ; PG_PRESENT | PG_RW | PG_ACCESSED | PG_SELF (self-reference) + times 511 DQ 0 ; PAGE_MAP_ENTRIES - 1 boot_pgt: times 512 DQ 0