You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
367 B
21 lines
367 B
20 years ago
|
#ifndef _I386_PGTABLE_2LEVEL_DEFS_H
|
||
|
#define _I386_PGTABLE_2LEVEL_DEFS_H
|
||
|
|
||
18 years ago
|
#define SHARED_KERNEL_PMD 0
|
||
|
|
||
20 years ago
|
/*
|
||
|
* traditional i386 two-level paging structure:
|
||
|
*/
|
||
|
|
||
|
#define PGDIR_SHIFT 22
|
||
|
#define PTRS_PER_PGD 1024
|
||
|
|
||
|
/*
|
||
|
* the i386 is two-level, so we don't really have any
|
||
|
* PMD directory physically.
|
||
|
*/
|
||
|
|
||
|
#define PTRS_PER_PTE 1024
|
||
|
|
||
|
#endif /* _I386_PGTABLE_2LEVEL_DEFS_H */
|