mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 06:24:53 +08:00
779df22487
Add a small vdso for 31 bit compat application that provides trampolines for calls to sigreturn,rt_sigreturn,syscall_restart. This is requird for moving these syscalls away from the signal frame to the vdso. Note that this patch effectively disables CONFIG_COMPAT when using clang to compile the kernel. clang doesn't support 31 bit mode. We want to redirect sigreturn and restart_syscall to the vdso. However, the kernel cannot parse the ELF vdso file, so we need to generate header files which contain the offsets of the syscall instructions in the vdso page. Signed-off-by: Sven Schnelle <svens@linux.ibm.com> Reviewed-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
16 lines
429 B
Bash
Executable File
16 lines
429 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
#
|
|
# Match symbols in the DSO that look like VDSO_*; produce a header file
|
|
# of constant offsets into the shared object.
|
|
#
|
|
# Doing this inside the Makefile will break the $(filter-out) function,
|
|
# causing Kbuild to rebuild the vdso-offsets header file every time.
|
|
#
|
|
# Inspired by arm64 version.
|
|
#
|
|
|
|
LC_ALL=C
|
|
sed -n 's/\([0-9a-f]*\) . __kernel_\(.*\)/\#define vdso64_offset_\2\t0x\1/p'
|