blob: d77db8990eaaa9e7b8250f50134d22979fc4a1d7 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_PGTABLE_2LEVEL_DEFS_H
2#define _ASM_X86_PGTABLE_2LEVEL_DEFS_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
Jeremy Fitzhardinge5311ab62007-05-02 19:27:13 +02004#define SHARED_KERNEL_PMD 0
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006/*
7 * traditional i386 two-level paging structure:
8 */
9
10#define PGDIR_SHIFT 22
11#define PTRS_PER_PGD 1024
12
13/*
14 * the i386 is two-level, so we don't really have any
15 * PMD directory physically.
16 */
17
18#define PTRS_PER_PTE 1024
19
H. Peter Anvin1965aae2008-10-22 22:26:29 -070020#endif /* _ASM_X86_PGTABLE_2LEVEL_DEFS_H */