xref: /linux/arch/s390/include/asm/vdso.h (revision 566ab427f827b0256d3e8ce0235d088e6a9c28bd)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __S390_VDSO_H__
3 #define __S390_VDSO_H__
4 
5 #include <vdso/datapage.h>
6 
7 #ifndef __ASSEMBLY__
8 
9 extern struct vdso_data *vdso_data;
10 
11 int vdso_getcpu_init(void);
12 
13 #endif /* __ASSEMBLY__ */
14 
15 /* Default link address for the vDSO */
16 #define VDSO_LBASE	0
17 
18 #define __VVAR_PAGES	2
19 
20 #define VDSO_VERSION_STRING	LINUX_2.6.29
21 
22 #endif /* __S390_VDSO_H__ */
23