diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-01-30 07:32:56 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:32:56 -0500 |
commit | 4614139c6a74fe02c85f702ba9c0e57f8e38647e (patch) | |
tree | c5d2145a98ecdd5d275ee278c2fbc3d3c8bee8e1 /include/asm-x86/pgtable_32.h | |
parent | e8a4852453c5af27d2a9c606e76809afa3dedb64 (diff) |
x86/pgtable: unify pagetable accessors, #6
Unify functions to test and set bits in pagetable entries.
NOP: only moves existing code around, without any change to it.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/pgtable_32.h')
-rw-r--r-- | include/asm-x86/pgtable_32.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/include/asm-x86/pgtable_32.h b/include/asm-x86/pgtable_32.h index 1c43c302609c..0aaefdda5158 100644 --- a/include/asm-x86/pgtable_32.h +++ b/include/asm-x86/pgtable_32.h | |||
@@ -101,31 +101,6 @@ extern unsigned long pg0[]; | |||
101 | 101 | ||
102 | #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT)) | 102 | #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT)) |
103 | 103 | ||
104 | /* | ||
105 | * The following only work if pte_present() is true. | ||
106 | * Undefined behaviour if not.. | ||
107 | */ | ||
108 | static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } | ||
109 | static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } | ||
110 | static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; } | ||
111 | static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; } | ||
112 | static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_PSE; } | ||
113 | |||
114 | static inline int pmd_large(pmd_t pte) { | ||
115 | return (pmd_val(pte) & (_PAGE_PSE|_PAGE_PRESENT)) == | ||
116 | (_PAGE_PSE|_PAGE_PRESENT); | ||
117 | } | ||
118 | |||
119 | static inline pte_t pte_mkclean(pte_t pte) { return __pte(pte_val(pte) & ~_PAGE_DIRTY); } | ||
120 | static inline pte_t pte_mkold(pte_t pte) { return __pte(pte_val(pte) & ~_PAGE_ACCESSED); } | ||
121 | static inline pte_t pte_wrprotect(pte_t pte) { return __pte(pte_val(pte) & ~_PAGE_RW); } | ||
122 | static inline pte_t pte_mkexec(pte_t pte) { return __pte(pte_val(pte) & ~_PAGE_NX); } | ||
123 | static inline pte_t pte_mkdirty(pte_t pte) { return __pte(pte_val(pte) | _PAGE_DIRTY); } | ||
124 | static inline pte_t pte_mkyoung(pte_t pte) { return __pte(pte_val(pte) | _PAGE_ACCESSED); } | ||
125 | static inline pte_t pte_mkwrite(pte_t pte) { return __pte(pte_val(pte) | _PAGE_RW); } | ||
126 | static inline pte_t pte_mkhuge(pte_t pte) { return __pte(pte_val(pte) | _PAGE_PSE); } | ||
127 | static inline pte_t pte_clrhuge(pte_t pte) { return __pte(pte_val(pte) & ~_PAGE_PSE); } | ||
128 | |||
129 | #ifdef CONFIG_X86_PAE | 104 | #ifdef CONFIG_X86_PAE |
130 | # include <asm/pgtable-3level.h> | 105 | # include <asm/pgtable-3level.h> |
131 | #else | 106 | #else |
@@ -276,9 +251,6 @@ static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) | |||
276 | return pte; | 251 | return pte; |
277 | } | 252 | } |
278 | 253 | ||
279 | #define pmd_large(pmd) \ | ||
280 | ((pmd_val(pmd) & (_PAGE_PSE|_PAGE_PRESENT)) == (_PAGE_PSE|_PAGE_PRESENT)) | ||
281 | |||
282 | /* | 254 | /* |
283 | * the pgd page can be thought of an array like this: pgd_t[PTRS_PER_PGD] | 255 | * the pgd page can be thought of an array like this: pgd_t[PTRS_PER_PGD] |
284 | * | 256 | * |