lkml.org 
[lkml]   [2010]   [Jan]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[RFC PATCH 03/10] ftrace: Drop the ftrace_profile_enabled checks in tracing hot path
Date
Every time we enter the function profiler tracing callbacks, we first
check if the function profiling is enabled.

This check is useless because we register the function graph
callbacks only after the hashlist has been initialized.

Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Li Zefan <lizf@cn.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
---
kernel/trace/ftrace.c | 7 ++-----
1 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index 94117ec..f258f67 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -381,13 +381,10 @@ function_profile_call(unsigned long ip, unsigned long parent_ip)
struct func_node *rec;
unsigned long flags;

- if (!ftrace_profile_enabled)
- return;
-
local_irq_save(flags);

hlist = &__get_cpu_var(func_hlist_cpu);
- if (!hlist->hash || !ftrace_profile_enabled)
+ if (!hlist->hash)
goto out;

rec = function_find_hlist_node(hlist, ip);
@@ -418,7 +415,7 @@ static void profile_graph_return(struct ftrace_graph_ret *trace)

local_irq_save(flags);
hlist = &__get_cpu_var(func_hlist_cpu);
- if (!hlist->hash || !ftrace_profile_enabled)
+ if (!hlist->hash)
goto out;

calltime = trace->rettime - trace->calltime;
--
1.6.2.3


\
 
 \ /
  Last update: 2010-01-22 02:19    [W:0.080 / U:1.016 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site