drm/modes: Fix drm_mode_vrefres() docs
[drm/drm-misc.git] / arch / x86 / entry / vdso / vdso32 / vdso32.lds.S
blob8a3be07006bb63f164ce861044c8a28d3657dcd6
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Linker script for 32-bit vDSO.
4  * We #include the file to define the layout details.
5  *
6  * This file defines the version script giving the user-exported symbols in
7  * the DSO.
8  */
10 #include <asm/page.h>
12 #define BUILD_VDSO32
14 #include "../vdso-layout.lds.S"
16 /* The ELF entry point can be used to set the AT_SYSINFO value.  */
17 ENTRY(__kernel_vsyscall);
20  * This controls what userland symbols we export from the vDSO.
21  */
22 VERSION
24         LINUX_2.6 {
25         global:
26                 __vdso_clock_gettime;
27                 __vdso_gettimeofday;
28                 __vdso_time;
29                 __vdso_clock_getres;
30                 __vdso_clock_gettime64;
31                 __vdso_getcpu;
32         };
34         LINUX_2.5 {
35         global:
36                 __kernel_vsyscall;
37                 __kernel_sigreturn;
38                 __kernel_rt_sigreturn;
39         local: *;
40         };