Merge commit 'v3.0' into x86/vdso
[pandora-kernel.git] / arch / x86 / kernel / vsyscall_emu_64.S
1 /*
2  * vsyscall_emu_64.S: Vsyscall emulation page
3  *
4  * Copyright (c) 2011 Andy Lutomirski
5  *
6  * Subject to the GNU General Public License, version 2
7  */
8
9 #include <linux/linkage.h>
10 #include <asm/irq_vectors.h>
11
12 /* The unused parts of the page are filled with 0xcc by the linker script. */
13
14 .section .vsyscall_0, "a"
15 ENTRY(vsyscall_0)
16         int $VSYSCALL_EMU_VECTOR
17 END(vsyscall_0)
18
19 .section .vsyscall_1, "a"
20 ENTRY(vsyscall_1)
21         int $VSYSCALL_EMU_VECTOR
22 END(vsyscall_1)
23
24 .section .vsyscall_2, "a"
25 ENTRY(vsyscall_2)
26         int $VSYSCALL_EMU_VECTOR
27 END(vsyscall_2)