Re: [PATCH] powerpc/64: Fix unannotated intra-function call warning

2023-02-19 Thread Michael Ellerman
On Fri, 17 Feb 2023 10:02:26 +0530, Sathvika Vasireddy wrote: > objtool throws the following warning: > arch/powerpc/kernel/head_64.o: warning: objtool: .text+0x6128: > unannotated intra-function call > > Fix the warning by annotating start_initialization_book3s symbol with the >

Re: [PATCH] powerpc/64: Fix unannotated intra-function call warning

2023-02-16 Thread Josh Poimboeuf
On Fri, Feb 17, 2023 at 10:02:26AM +0530, Sathvika Vasireddy wrote: > objtool throws the following warning: > arch/powerpc/kernel/head_64.o: warning: objtool: .text+0x6128: > unannotated intra-function call > > Fix the warning by annotating start_initialization_book3s symbol with the >

Re: [PATCH] powerpc/64: Fix unannotated intra-function call warning

2023-02-16 Thread Stephen Rothwell
Hi all, On Fri, 17 Feb 2023 10:02:26 +0530 Sathvika Vasireddy wrote: > > objtool throws the following warning: > arch/powerpc/kernel/head_64.o: warning: objtool: .text+0x6128: > unannotated intra-function call > > Fix the warning by annotating start_initialization_book3s symbol with the >

[PATCH] powerpc/64: Fix unannotated intra-function call warning

2023-02-16 Thread Sathvika Vasireddy
objtool throws the following warning: arch/powerpc/kernel/head_64.o: warning: objtool: .text+0x6128: unannotated intra-function call Fix the warning by annotating start_initialization_book3s symbol with the SYM_FUNC_START_LOCAL and SYM_FUNC_END macros. Reported-by: Stephen Rothwell