mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
abe1ee3a22
This patch changes the remaining direct references to .data.page_aligned in C and assembly code to use the macros in include/linux/linkage.h. Signed-off-by: Tim Abbott <tabbott@ksplice.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Haavard Skinnemoen <hskinnemoen@atmel.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
14 lines
253 B
ArmAsm
14 lines
253 B
ArmAsm
#include <linux/init.h>
|
|
#include <linux/linkage.h>
|
|
#include <asm/page.h>
|
|
|
|
__PAGE_ALIGNED_DATA
|
|
|
|
.globl vdso32_start, vdso32_end
|
|
.balign PAGE_SIZE
|
|
vdso32_start:
|
|
.incbin "arch/powerpc/kernel/vdso32/vdso32.so"
|
|
.balign PAGE_SIZE
|
|
vdso32_end:
|
|
|
|
.previous
|