of: MSI: Simplify irqdomain lookup
[linux/fpc-iii.git] / arch / x86 / include / asm / vdso.h
blobdeabaf9759b640d5cd93f50f9db67ef2dc60a807
1 #ifndef _ASM_X86_VDSO_H
2 #define _ASM_X86_VDSO_H
4 #include <asm/page_types.h>
5 #include <linux/linkage.h>
6 #include <linux/init.h>
8 #ifndef __ASSEMBLER__
10 #include <linux/mm_types.h>
12 struct vdso_image {
13 void *data;
14 unsigned long size; /* Always a multiple of PAGE_SIZE */
16 /* text_mapping.pages is big enough for data/size page pointers */
17 struct vm_special_mapping text_mapping;
19 unsigned long alt, alt_len;
21 long sym_vvar_start; /* Negative offset to the vvar area */
23 long sym_vvar_page;
24 long sym_hpet_page;
25 long sym_pvclock_page;
26 long sym_VDSO32_NOTE_MASK;
27 long sym___kernel_sigreturn;
28 long sym___kernel_rt_sigreturn;
29 long sym___kernel_vsyscall;
30 long sym_int80_landing_pad;
33 #ifdef CONFIG_X86_64
34 extern const struct vdso_image vdso_image_64;
35 #endif
37 #ifdef CONFIG_X86_X32
38 extern const struct vdso_image vdso_image_x32;
39 #endif
41 #if defined CONFIG_X86_32 || defined CONFIG_COMPAT
42 extern const struct vdso_image vdso_image_32;
43 #endif
45 extern void __init init_vdso_image(const struct vdso_image *image);
47 #endif /* __ASSEMBLER__ */
49 #endif /* _ASM_X86_VDSO_H */