aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/page_32.h
diff options
context:
space:
mode:
authorJeremy Fitzhardinge <jeremy@goop.org>2008-01-30 07:32:57 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:32:57 -0500
commitc8e5393ab38564d2f45b560a2f95bc8f9ff6f823 (patch)
tree2976d59bb412786712bddec0eedf82e1db58401d /include/asm-x86/page_32.h
parentb7fff536d0ad45c4810f9b99845c707ceadc3afc (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_32.h')
-rw-r--r--include/asm-x86/page_32.h30
1 files changed, 7 insertions, 23 deletions
diff --git a/include/asm-x86/page_32.h b/include/asm-x86/page_32.h
index e424bef4395a..11c4b39cada1 100644
--- a/include/asm-x86/page_32.h
+++ b/include/asm-x86/page_32.h
@@ -26,18 +26,12 @@ typedef u64 pgdval_t;
26typedef u64 pgprotval_t; 26typedef u64 pgprotval_t;
27typedef u64 phys_addr_t; 27typedef u64 phys_addr_t;
28 28
29typedef struct { unsigned long pte_low, pte_high; } pte_t; 29typedef union {
30 30 struct {
31static inline unsigned long long native_pte_val(pte_t pte) 31 unsigned long pte_low, pte_high;
32{ 32 };
33 return pte.pte_low | ((unsigned long long)pte.pte_high << 32); 33 pteval_t pte;
34} 34} pte_t;
35
36static inline pte_t native_make_pte(unsigned long long val)
37{
38 return (pte_t) { .pte_low = val, .pte_high = (val >> 32) } ;
39}
40
41#endif /* __ASSEMBLY__ 35#endif /* __ASSEMBLY__
42 */ 36 */
43#else /* !CONFIG_X86_PAE */ 37#else /* !CONFIG_X86_PAE */
@@ -53,19 +47,9 @@ typedef unsigned long pgdval_t;
53typedef unsigned long pgprotval_t; 47typedef unsigned long pgprotval_t;
54typedef unsigned long phys_addr_t; 48typedef unsigned long phys_addr_t;
55 49
56typedef struct { pteval_t pte_low; } pte_t; 50typedef union { pteval_t pte, pte_low; } pte_t;
57typedef pte_t boot_pte_t; 51typedef pte_t boot_pte_t;
58 52
59static inline unsigned long native_pte_val(pte_t pte)
60{
61 return pte.pte_low;
62}
63
64static inline pte_t native_make_pte(unsigned long val)
65{
66 return (pte_t) { .pte_low = val };
67}
68
69#endif /* __ASSEMBLY__ */ 53#endif /* __ASSEMBLY__ */
70#endif /* CONFIG_X86_PAE */ 54#endif /* CONFIG_X86_PAE */
71 55