Re: [RFC PATCH 2/4] objtool: Enable objtool to run only on files with ftrace enabled

2022-05-24 Thread Christophe Leroy
Hi Sathvika Le 24/05/2022 à 12:53, Sathvika Vasireddy a écrit : > [Vous ne recevez pas souvent de courriers de la part de > s...@linux.vnet.ibm.com. Découvrez pourquoi cela peut être important à > l’adresse https://aka.ms/LearnAboutSenderIdentification.] > > Hi Christophe, > > On 24/05/22 14:2

Re: [RFC PATCH 2/4] objtool: Enable objtool to run only on files with ftrace enabled

2022-05-24 Thread Sathvika Vasireddy
Hi Christophe, On 24/05/22 14:27, Christophe Leroy wrote: Le 23/05/2022 à 19:55, Sathvika Vasireddy a écrit : This patch makes sure objtool runs only on the object files that have ftrace enabled, instead of running on all the object files. Why do that ? This was done to address the issue dis

Re: [RFC PATCH 2/4] objtool: Enable objtool to run only on files with ftrace enabled

2022-05-24 Thread Christophe Leroy
Le 23/05/2022 à 19:55, Sathvika Vasireddy a écrit : > This patch makes sure objtool runs only on the object files > that have ftrace enabled, instead of running on all the object > files. Why do that ? What about static_calls ? There may be files without ftrace but with static calls. By the w

[RFC PATCH 2/4] objtool: Enable objtool to run only on files with ftrace enabled

2022-05-23 Thread Sathvika Vasireddy
This patch makes sure objtool runs only on the object files that have ftrace enabled, instead of running on all the object files. Signed-off-by: Naveen N. Rao Signed-off-by: Sathvika Vasireddy --- scripts/Makefile.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scr