aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm64/kernel/sigreturn32.S (follow)
Commit message (Collapse)AuthorAgeFilesLines
* arm64: rework compat syscall macrosArnd Bergmann2024-07-101-9/+9
| | | | | | | | | The generated asm/unistd_compat_32.h header file now contains macros that can be used directly in the vdso and the signal trampolines, so remove the duplicate definitions. Acked-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
* arm64: compat: Move sigreturn32.S to .rodata sectionChen Zhongjin2022-07-011-0/+1
| | | | | | | | | | | Kuser code should be inside .rodata. sigreturn32.S is splited from kuser32.S, the code in .text section is never executed. Move it to .rodata. Signed-off-by: Chen Zhongjin <chenzhongjin@huawei.com> Link: https://lore.kernel.org/r/20220701035456.250877-1-chenzhongjin@huawei.com Signed-off-by: Will Deacon <will@kernel.org>
* arm64: compat: Split kuser32Vincenzo Frascino2019-04-231-0/+46
To make it possible to disable kuser helpers in aarch32 we need to divide the kuser and the sigreturn functionalities. Split the current version of kuser32 in kuser32 (for kuser helpers) and sigreturn32 (for sigreturn helpers). Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Will Deacon <will.deacon@arm.com> Signed-off-by: Vincenzo Frascino <vincenzo.frascino@arm.com> Reviewed-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Will Deacon <will.deacon@arm.com>