Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1281529

Re: [PATCH] ftrace: Remove use of control list and ops

From Jiri Olsa <jolsa@redhat.com>
Newsgroups linux.kernel
Subject Re: [PATCH] ftrace: Remove use of control list and ops
Date 2015-12-02 10:00 +0100
Message-ID <qBbqy-4Qy-7@gated-at.bofh.it> (permalink)
References <qAFh0-18d-21@gated-at.bofh.it> <qATtE-1Sb-23@gated-at.bofh.it> <qAUzn-2vH-1@gated-at.bofh.it> <qAVvs-38i-21@gated-at.bofh.it> <qAWrx-3Jy-21@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Tue, Dec 01, 2015 at 11:56:55AM -0500, Steven Rostedt wrote:

SNIP

> -static void ftrace_ops_recurs_func(unsigned long ip, unsigned long parent_ip,
> +static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
>  				   struct ftrace_ops *op, struct pt_regs *regs)
>  {
>  	int bit;
>  
> +	if ((op->flags & FTRACE_OPS_FL_RCU) && !rcu_is_watching())
> +		return;
> +
>  	bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
>  	if (bit < 0)
>  		return;
>  
> -	op->func(ip, parent_ip, op, regs);
> +	preempt_disable_notrace();
>  
> +	if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
> +	    ftrace_function_local_disabled(op)) {

should be !ftrace_function_local_disabled(op) in here,
I passed my test with attached patch

thanks,
jirka

> +		op->func(ip, parent_ip, op, regs);
> +	}
> +
> +	preempt_enable_notrace();
>  	trace_clear_recursion(bit);
>  }

SNIP

---
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index 710430fcfd9c..ad0e0e7eaea2 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -115,7 +115,7 @@ static struct ftrace_ops *ftrace_ops_list __read_mostly = &ftrace_list_end;
 ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
 static struct ftrace_ops global_ops;
 
-static void ftrace_ops_recurs_func(unsigned long ip, unsigned long parent_ip,
+static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
 				   struct ftrace_ops *op, struct pt_regs *regs);
 
 #if ARCH_SUPPORTS_FTRACE_OPS
@@ -5180,7 +5180,7 @@ static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
 	preempt_disable_notrace();
 
 	if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
-	    ftrace_function_local_disabled(op)) {
+	    !ftrace_function_local_disabled(op)) {
 		op->func(ip, parent_ip, op, regs);
 	}
 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] ftrace: Remove use of control list and ops Steven Rostedt <rostedt@goodmis.org> - 2015-11-30 23:40 +0100
  Re: [PATCH] ftrace: Remove use of control list and ops Jiri Olsa <jolsa@redhat.com> - 2015-12-01 14:50 +0100
    Re: [PATCH] ftrace: Remove use of control list and ops Steven Rostedt <rostedt@goodmis.org> - 2015-12-01 16:00 +0100
      Re: [PATCH] ftrace: Remove use of control list and ops Jiri Olsa <jolsa@redhat.com> - 2015-12-01 17:00 +0100
        Re: [PATCH] ftrace: Remove use of control list and ops Steven Rostedt <rostedt@goodmis.org> - 2015-12-01 18:00 +0100
          Re: [PATCH] ftrace: Remove use of control list and ops Jiri Olsa <jolsa@redhat.com> - 2015-12-02 09:00 +0100
            Re: [PATCH] ftrace: Remove use of control list and ops Steven Rostedt <rostedt@goodmis.org> - 2015-12-02 15:20 +0100
          Re: [PATCH] ftrace: Remove use of control list and ops Jiri Olsa <jolsa@redhat.com> - 2015-12-02 10:00 +0100
            Re: [PATCH] ftrace: Remove use of control list and ops Steven Rostedt <rostedt@goodmis.org> - 2015-12-02 15:30 +0100
              Re: [PATCH] ftrace: Remove use of control list and ops Jiri Olsa <jolsa@redhat.com> - 2015-12-02 16:00 +0100
                Re: [PATCH] ftrace: Remove use of control list and ops Steven Rostedt <rostedt@goodmis.org> - 2015-12-02 16:10 +0100
                Re: [PATCH] ftrace: Remove use of control list and ops Jiri Olsa <jolsa@redhat.com> - 2015-12-02 16:30 +0100

csiph-web