mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
fd1feade75
merge vdso64 into vdso32 and rename it vdso. Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/4dbe05cc130f6a0858d09ac72e436c373cb08b70.1642782130.git.christophe.leroy@csgroup.eu
14 lines
270 B
ArmAsm
14 lines
270 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#include <linux/linkage.h>
|
|
#include <asm/page.h>
|
|
|
|
__PAGE_ALIGNED_DATA
|
|
|
|
.globl vdso64_start, vdso64_end
|
|
.balign PAGE_SIZE
|
|
vdso64_start:
|
|
.incbin "arch/powerpc/kernel/vdso/vdso64.so.dbg"
|
|
.balign PAGE_SIZE
|
|
vdso64_end:
|
|
|
|
.previous
|