From d9b728f8600bb0b3d0a190dd9480b193b77773a8 Mon Sep 17 00:00:00 2001 From: Chen Zhongjin Date: Fri, 1 Jul 2022 11:54:56 +0800 Subject: [PATCH] arm64: compat: Move sigreturn32.S to .rodata section 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 Link: https://lore.kernel.org/r/20220701035456.250877-1-chenzhongjin@huawei.com Signed-off-by: Will Deacon --- arch/arm64/kernel/sigreturn32.S | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/kernel/sigreturn32.S b/arch/arm64/kernel/sigreturn32.S index 475d30d..ccbd4aa 100644 --- a/arch/arm64/kernel/sigreturn32.S +++ b/arch/arm64/kernel/sigreturn32.S @@ -15,6 +15,7 @@ #include + .section .rodata .globl __aarch32_sigret_code_start __aarch32_sigret_code_start: -- 2.7.4