diff options
author | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2009-02-11 14:52:22 -0500 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2009-02-11 14:52:22 -0500 |
commit | 9049a11de73d3ecc623f1903100d099f82ede56c (patch) | |
tree | c03d130d58168e337a66fe999682452b7a02b42b /arch/x86/include/asm/page.h | |
parent | c47c1b1f3a9d6973108020df1dcab7604f7774dd (diff) | |
parent | e4d0407185cdbdcfd99fc23bde2e5454bbc46329 (diff) |
Merge commit 'remotes/tip/x86/paravirt' into x86/untangle2
* commit 'remotes/tip/x86/paravirt': (175 commits)
xen: use direct ops on 64-bit
xen: make direct versions of irq_enable/disable/save/restore to common code
xen: setup percpu data pointers
xen: fix 32-bit build resulting from mmu move
x86/paravirt: return full 64-bit result
x86, percpu: fix kexec with vmlinux
x86/vmi: fix interrupt enable/disable/save/restore calling convention.
x86/paravirt: don't restore second return reg
xen: setup percpu data pointers
x86: split loading percpu segments from loading gdt
x86: pass in cpu number to switch_to_new_gdt()
x86: UV fix uv_flush_send_and_wait()
x86/paravirt: fix missing callee-save call on pud_val
x86/paravirt: use callee-saved convention for pte_val/make_pte/etc
x86/paravirt: implement PVOP_CALL macros for callee-save functions
x86/paravirt: add register-saving thunks to reduce caller register pressure
x86/paravirt: selectively save/restore regs around pvops calls
x86: fix paravirt clobber in entry_64.S
x86/pvops: add a paravirt_ident functions to allow special patching
xen: move remaining mmu-related stuff into mmu.c
...
Conflicts:
arch/x86/mach-voyager/voyager_smp.c
arch/x86/mm/fault.c
Diffstat (limited to 'arch/x86/include/asm/page.h')
-rw-r--r-- | arch/x86/include/asm/page.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/include/asm/page.h b/arch/x86/include/asm/page.h index 823cc931363f..40226999cbf8 100644 --- a/arch/x86/include/asm/page.h +++ b/arch/x86/include/asm/page.h | |||
@@ -163,7 +163,7 @@ static inline pteval_t native_pte_val(pte_t pte) | |||
163 | return pte.pte; | 163 | return pte.pte; |
164 | } | 164 | } |
165 | 165 | ||
166 | static inline pteval_t native_pte_flags(pte_t pte) | 166 | static inline pteval_t pte_flags(pte_t pte) |
167 | { | 167 | { |
168 | return native_pte_val(pte) & PTE_FLAGS_MASK; | 168 | return native_pte_val(pte) & PTE_FLAGS_MASK; |
169 | } | 169 | } |
@@ -189,7 +189,6 @@ static inline pteval_t native_pte_flags(pte_t pte) | |||
189 | #endif | 189 | #endif |
190 | 190 | ||
191 | #define pte_val(x) native_pte_val(x) | 191 | #define pte_val(x) native_pte_val(x) |
192 | #define pte_flags(x) native_pte_flags(x) | ||
193 | #define __pte(x) native_make_pte(x) | 192 | #define __pte(x) native_make_pte(x) |
194 | 193 | ||
195 | #endif /* CONFIG_PARAVIRT */ | 194 | #endif /* CONFIG_PARAVIRT */ |