From 8e4bff4cab0ddac6060645b0715210484d02ff40 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Wed, 30 Aug 2017 08:25:59 +0000 Subject: Initial file dump from open source release --- arch/x86/vdso/vdso32.S | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 arch/x86/vdso/vdso32.S (limited to 'arch/x86/vdso/vdso32.S') 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 + +__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 -- cgit v1.3.1