All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sathvika Vasireddy <sv@linux.ibm.com>
To: linuxppc-dev@lists.ozlabs.org
Cc: peterz@infradead.org, linux-kernel@vger.kernel.org,
	aik@ozlabs.ru, sv@linux.ibm.com, rostedt@goodmis.org,
	jpoimboe@redhat.com, naveen.n.rao@linux.vnet.ibm.com,
	mbenes@suse.cz
Subject: [RFC PATCH 2/4] objtool: Enable objtool to run only on files with ftrace enabled
Date: Mon, 23 May 2022 23:25:46 +0530	[thread overview]
Message-ID: <20220523175548.922671-3-sv@linux.ibm.com> (raw)
In-Reply-To: <20220523175548.922671-1-sv@linux.ibm.com>

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 <naveen.n.rao@linux.vnet.ibm.com>
Signed-off-by: Sathvika Vasireddy <sv@linux.ibm.com>
---
 scripts/Makefile.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 2e0c3f9c1459..06ceffd92921 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -258,8 +258,8 @@ else
 # 'OBJECT_FILES_NON_STANDARD_foo.o := 'y': skip objtool checking for a file
 # 'OBJECT_FILES_NON_STANDARD_foo.o := 'n': override directory skip for a file
 
-$(obj)/%.o: objtool-enabled = $(if $(filter-out y%, \
-	$(OBJECT_FILES_NON_STANDARD_$(basetarget).o)$(OBJECT_FILES_NON_STANDARD)n),y)
+$(obj)/%.o: objtool-enabled = $(and $(if $(filter-out y%, $(OBJECT_FILES_NON_STANDARD_$(basetarget).o)$(OBJECT_FILES_NON_STANDARD)n),y),        \
+        $(if $(findstring $(strip $(CC_FLAGS_FTRACE)),$(_c_flags)),y),y)
 
 endif
 
-- 
2.25.1


WARNING: multiple messages have this Message-ID (diff)
From: Sathvika Vasireddy <sv@linux.ibm.com>
To: linuxppc-dev@lists.ozlabs.org
Cc: linux-kernel@vger.kernel.org, jpoimboe@redhat.com,
	peterz@infradead.org, mbenes@suse.cz, aik@ozlabs.ru,
	mpe@ellerman.id.au, christophe.leroy@csgroup.eu,
	rostedt@goodmis.org, naveen.n.rao@linux.vnet.ibm.com,
	sv@linux.ibm.com
Subject: [RFC PATCH 2/4] objtool: Enable objtool to run only on files with ftrace enabled
Date: Mon, 23 May 2022 23:25:46 +0530	[thread overview]
Message-ID: <20220523175548.922671-3-sv@linux.ibm.com> (raw)
In-Reply-To: <20220523175548.922671-1-sv@linux.ibm.com>

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 <naveen.n.rao@linux.vnet.ibm.com>
Signed-off-by: Sathvika Vasireddy <sv@linux.ibm.com>
---
 scripts/Makefile.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 2e0c3f9c1459..06ceffd92921 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -258,8 +258,8 @@ else
 # 'OBJECT_FILES_NON_STANDARD_foo.o := 'y': skip objtool checking for a file
 # 'OBJECT_FILES_NON_STANDARD_foo.o := 'n': override directory skip for a file
 
-$(obj)/%.o: objtool-enabled = $(if $(filter-out y%, \
-	$(OBJECT_FILES_NON_STANDARD_$(basetarget).o)$(OBJECT_FILES_NON_STANDARD)n),y)
+$(obj)/%.o: objtool-enabled = $(and $(if $(filter-out y%, $(OBJECT_FILES_NON_STANDARD_$(basetarget).o)$(OBJECT_FILES_NON_STANDARD)n),y),        \
+        $(if $(findstring $(strip $(CC_FLAGS_FTRACE)),$(_c_flags)),y),y)
 
 endif
 
-- 
2.25.1


  parent reply	other threads:[~2022-05-23 17:57 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-23 17:55 [RFC PATCH 0/4] objtool: Enable and implement --mcount option on powerpc Sathvika Vasireddy
2022-05-23 17:55 ` Sathvika Vasireddy
2022-05-23 17:55 ` [RFC PATCH 1/4] objtool: Add --mnop as an option to --mcount Sathvika Vasireddy
2022-05-23 17:55   ` Sathvika Vasireddy
2022-05-24  8:54   ` Christophe Leroy
2022-05-24  8:54     ` Christophe Leroy
2022-05-24 10:15     ` Naveen N. Rao
2022-05-24 10:15       ` Naveen N. Rao
2022-05-24 10:20       ` Christophe Leroy
2022-05-24 10:20         ` Christophe Leroy
2022-05-24 10:31         ` Naveen N. Rao
2022-05-24 10:31           ` Naveen N. Rao
2022-05-25 11:36           ` Peter Zijlstra
2022-05-25 11:36             ` Peter Zijlstra
2022-05-26 11:51             ` Naveen N. Rao
2022-05-26 11:51               ` Naveen N. Rao
2022-05-23 17:55 ` Sathvika Vasireddy [this message]
2022-05-23 17:55   ` [RFC PATCH 2/4] objtool: Enable objtool to run only on files with ftrace enabled Sathvika Vasireddy
2022-05-24  8:57   ` Christophe Leroy
2022-05-24  8:57     ` Christophe Leroy
2022-05-24 10:53     ` Sathvika Vasireddy
2022-05-24 10:53       ` Sathvika Vasireddy
2022-05-24 13:28       ` Christophe Leroy
2022-05-24 13:28         ` Christophe Leroy
2022-05-23 17:55 ` [RFC PATCH 3/4] objtool/powerpc: Enable objtool to be built on ppc Sathvika Vasireddy
2022-05-23 17:55   ` Sathvika Vasireddy
2022-05-24  9:13   ` Christophe Leroy
2022-05-24  9:13     ` Christophe Leroy
2022-05-23 17:55 ` [RFC PATCH 4/4] objtool/powerpc: Add --mcount specific implementation Sathvika Vasireddy
2022-05-23 17:55   ` Sathvika Vasireddy
2022-05-24  9:35   ` Christophe Leroy
2022-05-24  9:35     ` Christophe Leroy
2022-05-24 11:00     ` Sathvika Vasireddy
2022-05-24 11:00       ` Sathvika Vasireddy
2022-05-24 13:33       ` Christophe Leroy
2022-05-24 13:33         ` Christophe Leroy
2022-05-25 17:27         ` Christophe Leroy
2022-05-31  6:20           ` Christophe Leroy
2022-05-31  6:20             ` Christophe Leroy
2022-06-16 13:34             ` Naveen N. Rao
2022-06-16 13:34               ` Naveen N. Rao
2022-06-16 13:40               ` Christophe Leroy
2022-06-16 13:40                 ` Christophe Leroy
2022-06-16 13:57                 ` Peter Zijlstra
2022-06-16 13:57                   ` Peter Zijlstra
2022-06-16 14:06                   ` Christophe Leroy
2022-06-16 14:06                     ` Christophe Leroy
2022-06-17 14:04                     ` Naveen N. Rao
2022-06-17 14:04                       ` Naveen N. Rao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220523175548.922671-3-sv@linux.ibm.com \
    --to=sv@linux.ibm.com \
    --cc=aik@ozlabs.ru \
    --cc=jpoimboe@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=mbenes@suse.cz \
    --cc=naveen.n.rao@linux.vnet.ibm.com \
    --cc=peterz@infradead.org \
    --cc=rostedt@goodmis.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.