linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] trace_functions_graph: Remove __trace_graph_function
@ 2015-10-30 19:07 Dmitry Safonov
  2015-10-30 19:18 ` Dmitry Safonov
  2015-10-30 19:18 ` kbuild test robot
  0 siblings, 2 replies; 4+ messages in thread
From: Dmitry Safonov @ 2015-10-30 19:07 UTC (permalink / raw)
  To: rostedt, mingo; +Cc: linux-kernel, Dmitry Safonov

__trace_graph_funciton is used in only one location, and is static.
As it's small function there is no need to keep it separated out.

Signed-off-by: Dmitry Safonov <0x7f454c46@gmail.com>
---
 kernel/trace/trace_functions_graph.c | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/kernel/trace/trace_functions_graph.c b/kernel/trace/trace_functions_graph.c
index ca98445782acaa..db434d2a9d6243 100644
--- a/kernel/trace/trace_functions_graph.c
+++ b/kernel/trace/trace_functions_graph.c
@@ -360,8 +360,7 @@ static int trace_graph_thresh_entry(struct ftrace_graph_ent *trace)
 		return trace_graph_entry(trace);
 }
 
-static void
-__trace_graph_function(struct trace_array *tr,
+void trace_graph_function(struct trace_array *tr,
 		unsigned long ip, unsigned long flags, int pc)
 {
 	u64 time = trace_clock_local();
@@ -380,14 +379,6 @@ __trace_graph_function(struct trace_array *tr,
 	__trace_graph_return(tr, &ret, flags, pc);
 }
 
-void
-trace_graph_function(struct trace_array *tr,
-		unsigned long ip, unsigned long parent_ip,
-		unsigned long flags, int pc)
-{
-	__trace_graph_function(tr, ip, flags, pc);
-}
-
 void __trace_graph_return(struct trace_array *tr,
 				struct ftrace_graph_ret *trace,
 				unsigned long flags,
-- 
2.6.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] trace_functions_graph: Remove __trace_graph_function
  2015-10-30 19:07 [PATCH] trace_functions_graph: Remove __trace_graph_function Dmitry Safonov
@ 2015-10-30 19:18 ` Dmitry Safonov
  2015-10-30 19:19   ` Dmitry Safonov
  2015-10-30 19:18 ` kbuild test robot
  1 sibling, 1 reply; 4+ messages in thread
From: Dmitry Safonov @ 2015-10-30 19:18 UTC (permalink / raw)
  To: rostedt, mingo; +Cc: linux-kernel, Dmitry Safonov

__trace_graph_funciton is used in only one location, and is static.
As it's small function there is no need to keep it separated out.

Signed-off-by: Dmitry Safonov <0x7f454c46@gmail.com>
---
 kernel/trace/trace_functions_graph.c | 14 +++-----------
 1 file changed, 3 insertions(+), 11 deletions(-)

diff --git a/kernel/trace/trace_functions_graph.c b/kernel/trace/trace_functions_graph.c
index ca98445782acaa..dc45caefe4b1ac 100644
--- a/kernel/trace/trace_functions_graph.c
+++ b/kernel/trace/trace_functions_graph.c
@@ -360,9 +360,9 @@ static int trace_graph_thresh_entry(struct ftrace_graph_ent *trace)
 		return trace_graph_entry(trace);
 }
 
-static void
-__trace_graph_function(struct trace_array *tr,
-		unsigned long ip, unsigned long flags, int pc)
+void trace_graph_function(struct trace_array *tr,
+		unsigned long ip, unsigned long parent_ip,
+		unsigned long flags, int pc)
 {
 	u64 time = trace_clock_local();
 	struct ftrace_graph_ent ent = {
@@ -380,14 +380,6 @@ __trace_graph_function(struct trace_array *tr,
 	__trace_graph_return(tr, &ret, flags, pc);
 }
 
-void
-trace_graph_function(struct trace_array *tr,
-		unsigned long ip, unsigned long parent_ip,
-		unsigned long flags, int pc)
-{
-	__trace_graph_function(tr, ip, flags, pc);
-}
-
 void __trace_graph_return(struct trace_array *tr,
 				struct ftrace_graph_ret *trace,
 				unsigned long flags,
-- 
2.6.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] trace_functions_graph: Remove __trace_graph_function
  2015-10-30 19:07 [PATCH] trace_functions_graph: Remove __trace_graph_function Dmitry Safonov
  2015-10-30 19:18 ` Dmitry Safonov
@ 2015-10-30 19:18 ` kbuild test robot
  1 sibling, 0 replies; 4+ messages in thread
From: kbuild test robot @ 2015-10-30 19:18 UTC (permalink / raw)
  To: Dmitry Safonov; +Cc: kbuild-all, rostedt, mingo, linux-kernel, Dmitry Safonov

[-- Attachment #1: Type: text/plain, Size: 1368 bytes --]

Hi Dmitry,

[auto build test ERROR on v4.3-rc7 -- if it's inappropriate base, please suggest rules for selecting the more suitable base]

url:    https://github.com/0day-ci/linux/commits/Dmitry-Safonov/trace_functions_graph-Remove-__trace_graph_function/20151031-030819
config: x86_64-randconfig-x014-10300134 (attached as .config)
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

>> kernel/trace/trace_functions_graph.c:363:6: error: conflicting types for 'trace_graph_function'
    void trace_graph_function(struct trace_array *tr,
         ^
   In file included from kernel/trace/trace_functions_graph.c:14:0:
   kernel/trace/trace.h:578:6: note: previous declaration of 'trace_graph_function' was here
    void trace_graph_function(struct trace_array *tr,
         ^

vim +/trace_graph_function +363 kernel/trace/trace_functions_graph.c

   357		if (tracing_thresh)
   358			return 1;
   359		else
   360			return trace_graph_entry(trace);
   361	}
   362	
 > 363	void trace_graph_function(struct trace_array *tr,
   364			unsigned long ip, unsigned long flags, int pc)
   365	{
   366		u64 time = trace_clock_local();

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 22003 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] trace_functions_graph: Remove __trace_graph_function
  2015-10-30 19:18 ` Dmitry Safonov
@ 2015-10-30 19:19   ` Dmitry Safonov
  0 siblings, 0 replies; 4+ messages in thread
From: Dmitry Safonov @ 2015-10-30 19:19 UTC (permalink / raw)
  To: Steven Rostedt, mingo; +Cc: linux-kernel, Dmitry Safonov

I was to dumb to check, if it compiles - please, use the second one.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-10-30 19:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-30 19:07 [PATCH] trace_functions_graph: Remove __trace_graph_function Dmitry Safonov
2015-10-30 19:18 ` Dmitry Safonov
2015-10-30 19:19   ` Dmitry Safonov
2015-10-30 19:18 ` kbuild test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).