ftrace: Do no disable function tracing on enabling function tracing
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>
Wed, 25 Jun 2014 15:28:20 +0000 (11:28 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Fri, 18 Jul 2014 17:56:59 +0000 (13:56 -0400)
When function tracing is being updated function_trace_stop is set to
keep from tracing the updates. This was fine when function tracing
was done from stop machine. But it is no longer done that way and
this can cause real tracing to be missed.

Remove it.

Reviewed-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/ftrace.c

index 8063280fd53d4070f02b6dc2fdf3ecc5cf9ca79e..0fa1b87db95c7cc8aeca974cb4cc32ae5ec582d3 100644 (file)
@@ -2261,11 +2261,6 @@ static void ftrace_run_update_code(int command)
        FTRACE_WARN_ON(ret);
        if (ret)
                return;
-       /*
-        * Do not call function tracer while we update the code.
-        * We are in stop machine.
-        */
-       function_trace_stop++;
 
        /*
         * By default we use stop_machine() to modify the code.
@@ -2275,8 +2270,6 @@ static void ftrace_run_update_code(int command)
         */
        arch_ftrace_update_code(command);
 
-       function_trace_stop--;
-
        ret = ftrace_arch_code_modify_post_process();
        FTRACE_WARN_ON(ret);