Go to the documentation of this file.
7 #ifndef __UM_PGTABLE_3LEVEL_H
8 #define __UM_PGTABLE_3LEVEL_H
15 #define PGDIR_SHIFT 30
17 #define PGDIR_SHIFT 31
19 #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
20 #define PGDIR_MASK (~(PGDIR_SIZE-1))
27 #define PMD_SIZE (1UL << PMD_SHIFT)
28 #define PMD_MASK (~(PMD_SIZE-1))
34 #define PTRS_PER_PTE 512
36 #define PTRS_PER_PMD 512
37 #define PTRS_PER_PGD 512
39 #define PTRS_PER_PMD 1024
40 #define PTRS_PER_PGD 1024
43 #define USER_PTRS_PER_PGD ((TASK_SIZE + (PGDIR_SIZE - 1)) / PGDIR_SIZE)
44 #define FIRST_USER_ADDRESS 0
46 #define pte_ERROR(e) \
47 printk("%s:%d: bad pte %p(%016lx).\n", __FILE__, __LINE__, &(e), \
49 #define pmd_ERROR(e) \
50 printk("%s:%d: bad pmd %p(%016lx).\n", __FILE__, __LINE__, &(e), \
52 #define pgd_ERROR(e) \
53 printk("%s:%d: bad pgd %p(%016lx).\n", __FILE__, __LINE__, &(e), \
56 #define pud_none(x) (!(pud_val(x) & ~_PAGE_NEWPAGE))
57 #define pud_bad(x) ((pud_val(x) & (~PAGE_MASK & ~_PAGE_USER)) != _KERNPG_TABLE)
58 #define pud_present(x) (pud_val(x) & _PAGE_PRESENT)
59 #define pud_populate(mm, pud, pmd) \
60 set_pud(pud, __pud(_PAGE_TABLE + __pa(pmd)))
63 #define set_pud(pudptr, pudval) set_64bit((u64 *) (pudptr), pud_val(pudval))
65 #define set_pud(pudptr, pudval) (*(pudptr) = (pudval))
68 static inline int pgd_newpage(
pgd_t pgd)
76 #define set_pmd(pmdptr, pmdval) set_64bit((u64 *) (pmdptr), pmd_val(pmdval))
78 #define set_pmd(pmdptr, pmdval) (*(pmdptr) = (pmdval))
89 #define pud_page(pud) phys_to_page(pud_val(pud) & PAGE_MASK)
90 #define pud_page_vaddr(pud) ((unsigned long) __va(pud_val(pud) & PAGE_MASK))
93 #define pmd_offset(pud, address) ((pmd_t *) pud_page_vaddr(*(pud)) + \
119 #define PTE_FILE_MAX_BITS 32
123 #define pte_to_pgoff(p) ((p).pte >> 32)
125 #define pgoff_to_pte(off) ((pte_t) { ((off) << 32) | _PAGE_FILE })
129 #define pte_to_pgoff(pte) ((pte).pte_high)
131 #define pgoff_to_pte(off) ((pte_t) { _PAGE_FILE, (off) })