From 871480933a1c28f8a9fed4c4d34d06c439a7a422 Mon Sep 17 00:00:00 2001 From: Srikant Patnaik Date: Sun, 11 Jan 2015 12:28:04 +0530 Subject: Moved, renamed, and deleted files The original directory structure was scattered and unorganized. Changes are basically to make it look like kernel structure. --- 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