diff options
| author | Yuval Adam <_@yuv.al> | 2017-08-30 08:25:59 +0000 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2017-08-30 08:25:59 +0000 |
| commit | 8e4bff4cab0ddac6060645b0715210484d02ff40 (patch) | |
| tree | 3a5c3024371a04692a3a6d9974d001cdff8ebf84 /arch/x86/vdso/vdso32.S | |
Diffstat (limited to 'arch/x86/vdso/vdso32.S')
| -rw-r--r-- | arch/x86/vdso/vdso32.S | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/x86/vdso/vdso32.S b/arch/x86/vdso/vdso32.S new file mode 100644 index 00000000..2ce5f82c --- /dev/null +++ b/arch/x86/vdso/vdso32.S @@ -0,0 +1,22 @@ +#include <linux/init.h> + +__INITDATA + + .globl vdso32_int80_start, vdso32_int80_end +vdso32_int80_start: + .incbin "arch/x86/vdso/vdso32-int80.so" +vdso32_int80_end: + + .globl vdso32_syscall_start, vdso32_syscall_end +vdso32_syscall_start: +#ifdef CONFIG_COMPAT + .incbin "arch/x86/vdso/vdso32-syscall.so" +#endif +vdso32_syscall_end: + + .globl vdso32_sysenter_start, vdso32_sysenter_end +vdso32_sysenter_start: + .incbin "arch/x86/vdso/vdso32-sysenter.so" +vdso32_sysenter_end: + +__FINIT |
