aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86_64/page.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-x86_64/page.h')
-rw-r--r--include/asm-x86_64/page.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/asm-x86_64/page.h b/include/asm-x86_64/page.h
index d554b94485df..4974433bbf34 100644
--- a/include/asm-x86_64/page.h
+++ b/include/asm-x86_64/page.h
@@ -102,17 +102,15 @@ typedef struct { unsigned long pgprot; } pgprot_t;
102 102
103/* Note: __pa(&symbol_visible_to_c) should be always replaced with __pa_symbol. 103/* Note: __pa(&symbol_visible_to_c) should be always replaced with __pa_symbol.
104 Otherwise you risk miscompilation. */ 104 Otherwise you risk miscompilation. */
105#define __pa(x) (((unsigned long)(x)>=__START_KERNEL_map)?(unsigned long)(x) - (unsigned long)__START_KERNEL_map:(unsigned long)(x) - PAGE_OFFSET) 105#define __pa(x) ((unsigned long)(x) - PAGE_OFFSET)
106/* __pa_symbol should be used for C visible symbols. 106/* __pa_symbol should be used for C visible symbols.
107 This seems to be the official gcc blessed way to do such arithmetic. */ 107 This seems to be the official gcc blessed way to do such arithmetic. */
108#define __pa_symbol(x) \ 108#define __pa_symbol(x) \
109 ({unsigned long v; \ 109 ({unsigned long v; \
110 asm("" : "=r" (v) : "0" (x)); \ 110 asm("" : "=r" (v) : "0" (x)); \
111 __pa(v); }) 111 (v - __START_KERNEL_map); })
112 112
113#define __va(x) ((void *)((unsigned long)(x)+PAGE_OFFSET)) 113#define __va(x) ((void *)((unsigned long)(x)+PAGE_OFFSET))
114#define __boot_va(x) __va(x)
115#define __boot_pa(x) __pa(x)
116#ifdef CONFIG_FLATMEM 114#ifdef CONFIG_FLATMEM
117#define pfn_valid(pfn) ((pfn) < end_pfn) 115#define pfn_valid(pfn) ((pfn) < end_pfn)
118#endif 116#endif