pgtable-2level-defs.h 338 B

123456789101112131415161718
  1. #ifndef _I386_PGTABLE_2LEVEL_DEFS_H
  2. #define _I386_PGTABLE_2LEVEL_DEFS_H
  3. /*
  4. * traditional i386 two-level paging structure:
  5. */
  6. #define PGDIR_SHIFT 22
  7. #define PTRS_PER_PGD 1024
  8. /*
  9. * the i386 is two-level, so we don't really have any
  10. * PMD directory physically.
  11. */
  12. #define PTRS_PER_PTE 1024
  13. #endif /* _I386_PGTABLE_2LEVEL_DEFS_H */