public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] ftrace: remove unnecessary if condition of __unregister_ftrace_function
@ 2008-11-13 16:21 walimis
  0 siblings, 0 replies; only message in thread
From: walimis @ 2008-11-13 16:21 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: linux-kernel

against ftrace git tree tip/devel branch:
81388fbbc4b00c3bf37db5e193c80106ce5a2abf

Because it has goto out before ftrace_list == &ftrace_list_end,
that's to say, we never meet this condition.

Signed-off-by: walimis <walimisdev@gmail.com>
---
 kernel/trace/ftrace.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index beb21a5..54cb9a7 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -179,8 +179,7 @@ static int __unregister_ftrace_function(struct ftrace_ops *ops)
 
 	if (ftrace_enabled) {
 		/* If we only have one func left, then call that directly */
-		if (ftrace_list == &ftrace_list_end ||
-		    ftrace_list->next == &ftrace_list_end)
+		if (ftrace_list->next == &ftrace_list_end)
 			ftrace_trace_function = ftrace_list->func;
 	}
 
-- 
1.6.0.3


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2008-11-13 16:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-13 16:21 [PATCH 1/1] ftrace: remove unnecessary if condition of __unregister_ftrace_function walimis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox