Re: [PATCH v8 06/28] x86/asm/crypto: annotate local functions

2019-09-05 Thread Jiri Slaby
On 17. 08. 19, 11:17, Borislav Petkov wrote: > On Thu, Aug 08, 2019 at 12:38:32PM +0200, Jiri Slaby wrote: >> Use the newly added SYM_FUNC_START_LOCAL to annotate starts of all >> functions which do not have ".globl" annotation, but their ends are >> annotated by ENDPROC. This is needed to balance

Re: [PATCH v8 06/28] x86/asm/crypto: annotate local functions

2019-08-17 Thread Borislav Petkov
On Thu, Aug 08, 2019 at 12:38:32PM +0200, Jiri Slaby wrote: > Use the newly added SYM_FUNC_START_LOCAL to annotate starts of all > functions which do not have ".globl" annotation, but their ends are > annotated by ENDPROC. This is needed to balance ENDPROC for tools that > generate debuginfo. > >

[PATCH v8 06/28] x86/asm/crypto: annotate local functions

2019-08-08 Thread Jiri Slaby
Use the newly added SYM_FUNC_START_LOCAL to annotate starts of all functions which do not have ".globl" annotation, but their ends are annotated by ENDPROC. This is needed to balance ENDPROC for tools that generate debuginfo. To be symmetric, we also convert their ENDPROCs to the new SYM_FUNC_END.