Re: [PATCH v2 11/16] objtool: Add --mnop as an option to --mcount

2022-09-05 Thread Naveen N. Rao
Peter Zijlstra wrote: On Mon, Aug 29, 2022 at 11:22:18AM +0530, Sathvika Vasireddy wrote: Architectures can select HAVE_NOP_MCOUNT if they choose to nop out mcount call sites. If that config option is selected, then --mnop is passed as an option to objtool, along with --mcount. Also, make sure

Re: [PATCH v2 11/16] objtool: Add --mnop as an option to --mcount

2022-09-01 Thread Peter Zijlstra
On Mon, Aug 29, 2022 at 11:22:18AM +0530, Sathvika Vasireddy wrote: > Architectures can select HAVE_NOP_MCOUNT if they choose > to nop out mcount call sites. If that config option is > selected, then --mnop is passed as an option to objtool, > along with --mcount. > > Also, make sure that --mnop

Re: [PATCH v2 11/16] objtool: Add --mnop as an option to --mcount

2022-08-30 Thread Christophe Leroy
Le 29/08/2022 à 07:52, Sathvika Vasireddy a écrit : > Architectures can select HAVE_NOP_MCOUNT if they choose > to nop out mcount call sites. If that config option is > selected, then --mnop is passed as an option to objtool, > along with --mcount. > > Also, make sure that --mnop can be passed

[PATCH v2 11/16] objtool: Add --mnop as an option to --mcount

2022-08-29 Thread Sathvika Vasireddy
Architectures can select HAVE_NOP_MCOUNT if they choose to nop out mcount call sites. If that config option is selected, then --mnop is passed as an option to objtool, along with --mcount. Also, make sure that --mnop can be passed as an option to objtool only when --mcount is passed.