aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/pgtable_32.h
diff options
context:
space:
mode:
authorJeremy Fitzhardinge <jeremy@goop.org>2008-01-30 07:32:56 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:32:56 -0500
commit4614139c6a74fe02c85f702ba9c0e57f8e38647e (patch)
treec5d2145a98ecdd5d275ee278c2fbc3d3c8bee8e1 /include/asm-x86/pgtable_32.h
parente8a4852453c5af27d2a9c606e76809afa3dedb64 (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.h28
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 */
108static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
109static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
110static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; }
111static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
112static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_PSE; }
113
114static inline int pmd_large(pmd_t pte) {
115 return (pmd_val(pte) & (_PAGE_PSE|_PAGE_PRESENT)) ==
116 (_PAGE_PSE|_PAGE_PRESENT);
117}
118
119static inline pte_t pte_mkclean(pte_t pte) { return __pte(pte_val(pte) & ~_PAGE_DIRTY); }
120static inline pte_t pte_mkold(pte_t pte) { return __pte(pte_val(pte) & ~_PAGE_ACCESSED); }
121static inline pte_t pte_wrprotect(pte_t pte) { return __pte(pte_val(pte) & ~_PAGE_RW); }
122static inline pte_t pte_mkexec(pte_t pte) { return __pte(pte_val(pte) & ~_PAGE_NX); }
123static inline pte_t pte_mkdirty(pte_t pte) { return __pte(pte_val(pte) | _PAGE_DIRTY); }
124static inline pte_t pte_mkyoung(pte_t pte) { return __pte(pte_val(pte) | _PAGE_ACCESSED); }
125static inline pte_t pte_mkwrite(pte_t pte) { return __pte(pte_val(pte) | _PAGE_RW); }
126static inline pte_t pte_mkhuge(pte_t pte) { return __pte(pte_val(pte) | _PAGE_PSE); }
127static 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 *