diff options
author | Naveen N Rao <naveen@kernel.org> | 2024-10-30 08:08:41 +0100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2024-10-31 01:00:54 +0100 |
commit | ed6144656bb1ea29ad83671b48a21c89e7873b8a (patch) | |
tree | 5e71a522945b3c5e089a9ee7b7e9cdedfa91c49f /arch/powerpc/kernel/vmlinux.lds.S | |
parent | powerpc/ftrace: Skip instruction patching if the instructions are the same (diff) | |
download | linux-ed6144656bb1ea29ad83671b48a21c89e7873b8a.tar.xz linux-ed6144656bb1ea29ad83671b48a21c89e7873b8a.zip |
powerpc/ftrace: Move ftrace stub used for init text before _einittext
Move the ftrace stub used to cover inittext before _einittext so that it
is within kernel text, as seen through core_kernel_text(). This is
required for a subsequent change to ftrace.
Signed-off-by: Naveen N Rao <naveen@kernel.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://patch.msgid.link/20241030070850.1361304-9-hbathini@linux.ibm.com
Diffstat (limited to 'arch/powerpc/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/powerpc/kernel/vmlinux.lds.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/vmlinux.lds.S b/arch/powerpc/kernel/vmlinux.lds.S index 7ab4e2fb28b1..b4c9decc7a75 100644 --- a/arch/powerpc/kernel/vmlinux.lds.S +++ b/arch/powerpc/kernel/vmlinux.lds.S @@ -265,14 +265,13 @@ SECTIONS .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) { _sinittext = .; INIT_TEXT - + *(.tramp.ftrace.init); /* *.init.text might be RO so we must ensure this section ends on * a page boundary. */ . = ALIGN(PAGE_SIZE); _einittext = .; - *(.tramp.ftrace.init); } :text /* .exit.text is discarded at runtime, not link time, |