[haiku-commits] r37103 - haiku/trunk/src/system/kernel/arch/x86/paging/pae

  • From: ingo_weinhold@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 12 Jun 2010 01:21:02 +0200 (CEST)

Author: bonefish
Date: 2010-06-12 01:21:02 +0200 (Sat, 12 Jun 2010)
New Revision: 37103
Changeset: http://dev.haiku-os.org/changeset/37103/haiku

Modified:
   haiku/trunk/src/system/kernel/arch/x86/paging/pae/paging.h
Log:
Added kPAEPageDirRange constant.


Modified: haiku/trunk/src/system/kernel/arch/x86/paging/pae/paging.h
===================================================================
--- haiku/trunk/src/system/kernel/arch/x86/paging/pae/paging.h  2010-06-11 
18:04:25 UTC (rev 37102)
+++ haiku/trunk/src/system/kernel/arch/x86/paging/pae/paging.h  2010-06-11 
23:21:02 UTC (rev 37103)
@@ -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;


Other related posts:

  • » [haiku-commits] r37103 - haiku/trunk/src/system/kernel/arch/x86/paging/pae - ingo_weinhold