Skip to content

Commit ca39de6

Browse files
committed
pmm: remove "Low memory" mappings
Signed-off-by: Pawel Wieczorkiewicz <[email protected]>
1 parent 4f6bd7e commit ca39de6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

mm/pmm.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ static size_t frames_count[MAX_PAGE_ORDER + 1];
6363

6464
addr_range_t addr_ranges[] = {
6565
/* clang-format off */
66-
IDENT_RANGE( "Low memory", L1_PROT_RO, 0x0, MB(1) ),
6766
IDENT_RANGE( ".text.init", L1_PROT_RO, __start_text_init, __end_text_init ),
6867
IDENT_RANGE( ".data.init", L1_PROT, __start_data_init, __end_data_init ),
6968
IDENT_RANGE( ".bss.init", L1_PROT, __start_bss_init, __end_bss_init ),
@@ -76,7 +75,6 @@ addr_range_t addr_ranges[] = {
7675
USER_RANGE( ".data.user", L1_PROT_USER, __start_data_user, __end_data_user ),
7776
USER_RANGE( ".bss.user", L1_PROT_USER, __start_bss_user, __end_bss_user ),
7877

79-
KERNEL_RANGE( "Low memory", L1_PROT, 0x0 + VIRT_KERNEL_BASE, MB(1) + VIRT_KERNEL_BASE),
8078
KERNEL_RANGE( ".text", L1_PROT_RO, __start_text, __end_text ),
8179
KERNEL_RANGE( ".data", L1_PROT, __start_data, __end_data ),
8280
KERNEL_RANGE( ".bss", L1_PROT, __start_bss, __end_bss ),

0 commit comments

Comments
 (0)