From 83c3e7d3baf30ddb215a740eb532feddd2640d29 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Fri, 11 Jun 2010 23:21:02 +0000 Subject: [PATCH] Added kPAEPageDirRange constant. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37103 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/arch/x86/paging/pae/paging.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/system/kernel/arch/x86/paging/pae/paging.h b/src/system/kernel/arch/x86/paging/pae/paging.h index a3e4cb5acd..ae6d45b64a 100644 --- a/src/system/kernel/arch/x86/paging/pae/paging.h +++ b/src/system/kernel/arch/x86/paging/pae/paging.h @@ -58,6 +58,8 @@ static const uint32 kPAEPageDirEntryCount = 512; static const uint32 kPAEPageTableEntryCount = 512; static const size_t kPAEPageTableRange = kPAEPageTableEntryCount * B_PAGE_SIZE; +static const size_t kPAEPageDirRange + = kPAEPageDirEntryCount * kPAEPageTableRange; typedef uint64 pae_page_directory_pointer_table_entry;