Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux...
[deliverable/linux.git] / arch / x86 / vdso / vdsox32.S
1 #include <asm/page_types.h>
2 #include <linux/linkage.h>
3 #include <linux/init.h>
4
5 __PAGE_ALIGNED_DATA
6
7 .globl vdsox32_start, vdsox32_end
8 .align PAGE_SIZE
9 vdsox32_start:
10 .incbin "arch/x86/vdso/vdsox32.so"
11 vdsox32_end:
12 .align PAGE_SIZE /* extra data here leaks to userspace. */
13
14 .previous
15
16 .globl vdsox32_pages
17 .bss
18 .align 8
19 .type vdsox32_pages, @object
20 vdsox32_pages:
21 .zero (vdsox32_end - vdsox32_start + PAGE_SIZE - 1) / PAGE_SIZE * 8
22 .size vdsox32_pages, .-vdsox32_pages
This page took 0.046091 seconds and 5 git commands to generate.