aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/pgtable_32.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-01-30 07:32:55 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:32:55 -0500
commit92ac166f3a776afc51766395076ffcfde112740a (patch)
tree4c15f745eaa76a9a82a9b4c0fdb94a306b6fd8ff /include/asm-x86/pgtable_32.h
parentdcbae6b377d78190954055ef2d8909ae83ff57de (diff)
x86/pgtable: unify pagetable accessors, #2
change the pte_dirty/* inlines to the unified format. Non-NOP! based on: Subject: x86/pgtable: unify pagetable accessors From: Jeremy Fitzhardinge <jeremy@goop.org> 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.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/asm-x86/pgtable_32.h b/include/asm-x86/pgtable_32.h
index 3b40cb6dea18..57d4aab5594b 100644
--- a/include/asm-x86/pgtable_32.h
+++ b/include/asm-x86/pgtable_32.h
@@ -105,15 +105,15 @@ extern unsigned long pg0[];
105 * The following only work if pte_present() is true. 105 * The following only work if pte_present() is true.
106 * Undefined behaviour if not.. 106 * Undefined behaviour if not..
107 */ 107 */
108static inline int pte_dirty(pte_t pte) { return (pte).pte_low & _PAGE_DIRTY; } 108static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
109static inline int pte_young(pte_t pte) { return (pte).pte_low & _PAGE_ACCESSED; } 109static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
110static inline int pte_write(pte_t pte) { return (pte).pte_low & _PAGE_RW; } 110static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; }
111static inline int pte_huge(pte_t pte) { return (pte).pte_low & _PAGE_PSE; } 111static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_PSE; }
112 112
113/* 113/*
114 * The following only works if pte_present() is not true. 114 * The following only works if pte_present() is not true.
115 */ 115 */
116static inline int pte_file(pte_t pte) { return (pte).pte_low & _PAGE_FILE; } 116static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
117 117
118static inline pte_t pte_mkclean(pte_t pte) { (pte).pte_low &= ~_PAGE_DIRTY; return pte; } 118static inline pte_t pte_mkclean(pte_t pte) { (pte).pte_low &= ~_PAGE_DIRTY; return pte; }
119static inline pte_t pte_mkold(pte_t pte) { (pte).pte_low &= ~_PAGE_ACCESSED; return pte; } 119static inline pte_t pte_mkold(pte_t pte) { (pte).pte_low &= ~_PAGE_ACCESSED; return pte; }