diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-01-30 07:32:57 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:32:57 -0500 |
commit | c8e5393ab38564d2f45b560a2f95bc8f9ff6f823 (patch) | |
tree | 2976d59bb412786712bddec0eedf82e1db58401d /include/asm-x86/page.h | |
parent | b7fff536d0ad45c4810f9b99845c707ceadc3afc (diff) |
x86: page.h: make pte_t a union to always include
Make sure pte_t, whatever its definition, has a pte element with type
pteval_t. This allows common code to access it without needing to be
specifically parameterised on what pagetable mode we're compiling for.
For 32-bit, this means that pte_t becomes a union with "pte" and "{
pte_low, pte_high }" (PAE) or just "pte_low" (non-PAE).
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/page.h')
-rw-r--r-- | include/asm-x86/page.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/asm-x86/page.h b/include/asm-x86/page.h index 91920565a575..a6495eb5c605 100644 --- a/include/asm-x86/page.h +++ b/include/asm-x86/page.h | |||
@@ -108,6 +108,16 @@ static inline pmdval_t native_pmd_val(pmd_t pmd) | |||
108 | #include <asm-generic/pgtable-nopmd.h> | 108 | #include <asm-generic/pgtable-nopmd.h> |
109 | #endif /* PAGETABLE_LEVELS >= 3 */ | 109 | #endif /* PAGETABLE_LEVELS >= 3 */ |
110 | 110 | ||
111 | static inline pte_t native_make_pte(pteval_t val) | ||
112 | { | ||
113 | return (pte_t) { .pte = val }; | ||
114 | } | ||
115 | |||
116 | static inline pteval_t native_pte_val(pte_t pte) | ||
117 | { | ||
118 | return pte.pte; | ||
119 | } | ||
120 | |||
111 | #define pgprot_val(x) ((x).pgprot) | 121 | #define pgprot_val(x) ((x).pgprot) |
112 | #define __pgprot(x) ((pgprot_t) { (x) } ) | 122 | #define __pgprot(x) ((pgprot_t) { (x) } ) |
113 | 123 | ||