From f26fa392656e2efc9bcc2f34a539f2f37ec0589f Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Fri, 26 Feb 2021 00:19:26 +0200 Subject: [PATCH] [fixme] move those out --- nucleus/src/arch/aarch64/memory/virt_page.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nucleus/src/arch/aarch64/memory/virt_page.rs b/nucleus/src/arch/aarch64/memory/virt_page.rs index 46e3373..3d59187 100644 --- a/nucleus/src/arch/aarch64/memory/virt_page.rs +++ b/nucleus/src/arch/aarch64/memory/virt_page.rs @@ -1,8 +1,9 @@ // Verbatim from https://github.com/rust-osdev/x86_64/blob/aa9ae54657beb87c2a491f2ab2140b2332afa6ba/src/structures/paging/page.rs // Abstractions for default-sized and huge virtual memory pages. -// x86_64 page level numbering: P4 -> P3 -> P2 -> P1 -// armv8a page level numbering: L0 -> L1 -> L2 -> L3 +// @fixme x86_64 page level numbering: P4 -> P3 -> P2 -> P1 +// @fixme armv8a page level numbering: L0 -> L1 -> L2 -> L3 + use { crate::memory::{ page_size::{NotGiantPageSize, PageSize, Size1GiB, Size2MiB, Size4KiB},