diff options
-rw-r--r-- | include/asm-x86/pgtable.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-x86/pgtable.h b/include/asm-x86/pgtable.h index 2f3d90807efb..18a5f9e32834 100644 --- a/include/asm-x86/pgtable.h +++ b/include/asm-x86/pgtable.h | |||
@@ -139,6 +139,7 @@ static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; | |||
139 | static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; } | 139 | static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; } |
140 | static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; } | 140 | static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; } |
141 | static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_PSE; } | 141 | static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_PSE; } |
142 | static inline int pte_global(pte_t pte) { return pte_val(pte) & _PAGE_GLOBAL; } | ||
142 | static inline int pte_exec(pte_t pte) { return !(pte_val(pte) & _PAGE_NX); } | 143 | static inline int pte_exec(pte_t pte) { return !(pte_val(pte) & _PAGE_NX); } |
143 | 144 | ||
144 | static inline int pmd_large(pmd_t pte) { | 145 | static inline int pmd_large(pmd_t pte) { |
@@ -155,6 +156,8 @@ static inline pte_t pte_mkyoung(pte_t pte) { return __pte(pte_val(pte) | _PAGE_A | |||
155 | static inline pte_t pte_mkwrite(pte_t pte) { return __pte(pte_val(pte) | _PAGE_RW); } | 156 | static inline pte_t pte_mkwrite(pte_t pte) { return __pte(pte_val(pte) | _PAGE_RW); } |
156 | static inline pte_t pte_mkhuge(pte_t pte) { return __pte(pte_val(pte) | _PAGE_PSE); } | 157 | static inline pte_t pte_mkhuge(pte_t pte) { return __pte(pte_val(pte) | _PAGE_PSE); } |
157 | static inline pte_t pte_clrhuge(pte_t pte) { return __pte(pte_val(pte) & ~_PAGE_PSE); } | 158 | static inline pte_t pte_clrhuge(pte_t pte) { return __pte(pte_val(pte) & ~_PAGE_PSE); } |
159 | static inline pte_t pte_mkglobal(pte_t pte) { return __pte(pte_val(pte) | _PAGE_GLOBAL); } | ||
160 | static inline pte_t pte_clrglobal(pte_t pte) { return __pte(pte_val(pte) & ~_PAGE_GLOBAL); } | ||
158 | 161 | ||
159 | extern pteval_t __supported_pte_mask; | 162 | extern pteval_t __supported_pte_mask; |
160 | 163 | ||