[PATCH 0/8] unwind, arm64: add sframe unwinder for kernel
Josh Poimboeuf
jpoimboe at kernel.org
Fri Feb 14 11:38:19 PST 2025
On Fri, Feb 14, 2025 at 06:58:01PM +0000, Puranjay Mohan wrote:
> and the linker script has this line:
>
> .sframe : AT(ADDR(.sframe) - 0) { __start_sframe_header = .; KEEP(*(.sframe)) __stop_sframe_header = .; }
>
> So, do can you suggest the best way to fix these warnings?
Just add *(.init.sframe) like so:
.sframe : AT(ADDR(.sframe) - 0) { __start_sframe_header = .; KEEP(*(.sframe) *(.init.sframe)) __stop_sframe_header = .; }
--
Josh
More information about the linux-arm-kernel
mailing list