aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2008-01-30 07:31:08 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:31:08 -0500
commit929fd589135ed417663f1b75b8031c9cf6687700 (patch)
tree4c7dcaa88ce62a69d969899f0febadc0c56923dd /include
parent954683a2c19696114894384e34f858bb9f455b11 (diff)
x86: some whitespace cleanups in paging code
This patch does some whitespace cleanups in the paging code to fix some checkpatch.pl warnings of my formerly merged cleanup patches. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/asm-x86/pgtable_64.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/asm-x86/pgtable_64.h b/include/asm-x86/pgtable_64.h
index 6cf40dec0932..3072619365a8 100644
--- a/include/asm-x86/pgtable_64.h
+++ b/include/asm-x86/pgtable_64.h
@@ -154,22 +154,22 @@ static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm, unsigned long
154#define _PAGE_BIT_GLOBAL 8 /* Global TLB entry PPro+ */ 154#define _PAGE_BIT_GLOBAL 8 /* Global TLB entry PPro+ */
155#define _PAGE_BIT_NX 63 /* No execute: only valid after cpuid check */ 155#define _PAGE_BIT_NX 63 /* No execute: only valid after cpuid check */
156 156
157#define _PAGE_PRESENT (_AC(1,UL)<<_PAGE_BIT_PRESENT) 157#define _PAGE_PRESENT (_AC(1, UL)<<_PAGE_BIT_PRESENT)
158#define _PAGE_RW (_AC(1,UL)<<_PAGE_BIT_RW) 158#define _PAGE_RW (_AC(1, UL)<<_PAGE_BIT_RW)
159#define _PAGE_USER (_AC(1,UL)<<_PAGE_BIT_USER) 159#define _PAGE_USER (_AC(1, UL)<<_PAGE_BIT_USER)
160#define _PAGE_PWT (_AC(1,UL)<<_PAGE_BIT_PWT) 160#define _PAGE_PWT (_AC(1, UL)<<_PAGE_BIT_PWT)
161#define _PAGE_PCD (_AC(1,UL)<<_PAGE_BIT_PCD) 161#define _PAGE_PCD (_AC(1, UL)<<_PAGE_BIT_PCD)
162#define _PAGE_ACCESSED (_AC(1,UL)<<_PAGE_BIT_ACCESSED) 162#define _PAGE_ACCESSED (_AC(1, UL)<<_PAGE_BIT_ACCESSED)
163#define _PAGE_DIRTY (_AC(1,UL)<<_PAGE_BIT_DIRTY) 163#define _PAGE_DIRTY (_AC(1, UL)<<_PAGE_BIT_DIRTY)
164/* 2MB page */ 164/* 2MB page */
165#define _PAGE_PSE (_AC(1,UL)<<_PAGE_BIT_PSE) 165#define _PAGE_PSE (_AC(1, UL)<<_PAGE_BIT_PSE)
166/* nonlinear file mapping, saved PTE; unset:swap */ 166/* nonlinear file mapping, saved PTE; unset:swap */
167#define _PAGE_FILE (_AC(1,UL)<<_PAGE_BIT_FILE) 167#define _PAGE_FILE (_AC(1, UL)<<_PAGE_BIT_FILE)
168/* Global TLB entry */ 168/* Global TLB entry */
169#define _PAGE_GLOBAL (_AC(1,UL)<<_PAGE_BIT_GLOBAL) 169#define _PAGE_GLOBAL (_AC(1, UL)<<_PAGE_BIT_GLOBAL)
170 170
171#define _PAGE_PROTNONE 0x080 /* If not present */ 171#define _PAGE_PROTNONE 0x080 /* If not present */
172#define _PAGE_NX (_AC(1,UL)<<_PAGE_BIT_NX) 172#define _PAGE_NX (_AC(1, UL)<<_PAGE_BIT_NX)
173 173
174#define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY) 174#define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
175#define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | _PAGE_DIRTY) 175#define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | _PAGE_DIRTY)