mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 17:41:44 +00:00
663b55b9b3
None of these files are actually using any __init type directives and hence don't need to include <linux/init.h>. Most are just a left over from __devinit and __cpuinit removal, or simply due to code getting copied from one driver to the next. [ hpa: undid incorrect removal from arch/x86/kernel/head_32.S ] Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Link: http://lkml.kernel.org/r/1389054026-12947-1-git-send-email-paul.gortmaker@windriver.com Signed-off-by: H. Peter Anvin <hpa@zytor.com>
22 lines
456 B
ArmAsm
22 lines
456 B
ArmAsm
#include <asm/page_types.h>
|
|
#include <linux/linkage.h>
|
|
|
|
__PAGE_ALIGNED_DATA
|
|
|
|
.globl vdsox32_start, vdsox32_end
|
|
.align PAGE_SIZE
|
|
vdsox32_start:
|
|
.incbin "arch/x86/vdso/vdsox32.so"
|
|
vdsox32_end:
|
|
.align PAGE_SIZE /* extra data here leaks to userspace. */
|
|
|
|
.previous
|
|
|
|
.globl vdsox32_pages
|
|
.bss
|
|
.align 8
|
|
.type vdsox32_pages, @object
|
|
vdsox32_pages:
|
|
.zero (vdsox32_end - vdsox32_start + PAGE_SIZE - 1) / PAGE_SIZE * 8
|
|
.size vdsox32_pages, .-vdsox32_pages
|