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


Groups > linux.kernel > #1432486

Re: [PATCH V3] tracing: Make latency tracers fully support the set_graph_notrace

From Namhyung Kim <namhyung@gmail.com>
Newsgroups linux.kernel
Subject Re: [PATCH V3] tracing: Make latency tracers fully support the set_graph_notrace
Date 2016-06-28 07:30 +0200
Message-ID <rOTKV-2x9-7@gated-at.bofh.it> (permalink)
References <rNx05-6Zi-9@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Hello,

On Fri, Jun 24, 2016 at 7:55 PM, Chunyu Hu <chuhu@redhat.com> wrote:
> latency tracers(wakeup, wakeup_rt, wakeup_dl, irqsoff) can use the
> function_graph trace when display_graph trace option is set by user
> via tracefs. And currently the set_graph_notrace filter is not fully
> supported in latency tracers, only the graph_ret event can be filtered,
> the graph_ent events will always be submitted to the trace ring buffer
> without respecting to the filter.
>
> The issue is that the submitted graph_entry event that matches the
> filter can be assigned with a negative depth(minuts FTRACE_NOTRACE_DEPTH)
> which will be used as the array index of fgraph_cpu_data when printing
> trace entries, as a result, an oops can be hit when accessing the array.
>
> Fully supporting the set_graph_notrace filter in latency tracers can
> avoid this oops and provide a small enhancement for these tracers at
> the same time.
>
> To reproduce the oops:
> echo 1 > options/display_graph
> echo schedule > set_graph_notrace
> echo wakeup > current_tracer
> cat trace (several times)

I'm unabled to reproduce the oops even after running 'cat trace' multiple times.

Anyway, the patch looks good to me.

Acked-by: Namhyung Kim <namhyung@kernel.org>

Thanks,
Namhyung


>
> Signed-off-by: Chunyu Hu <chuhu@redhat.com>
> ---
>  kernel/trace/trace_irqsoff.c      | 6 ++++++
>  kernel/trace/trace_sched_wakeup.c | 6 ++++++
>  2 files changed, 12 insertions(+)
>
> diff --git a/kernel/trace/trace_irqsoff.c b/kernel/trace/trace_irqsoff.c
> index 03cdff8..a4ed46a 100644
> --- a/kernel/trace/trace_irqsoff.c
> +++ b/kernel/trace/trace_irqsoff.c
> @@ -175,6 +175,12 @@ static int irqsoff_graph_entry(struct ftrace_graph_ent *trace)
>         int ret;
>         int pc;
>
> +       if (trace->depth < 0)
> +               return 0;
> +
> +       if (ftrace_graph_notrace_addr(trace->func))
> +               return 1;
> +
>         if (!func_prolog_dec(tr, &data, &flags))
>                 return 0;
>
> diff --git a/kernel/trace/trace_sched_wakeup.c b/kernel/trace/trace_sched_wakeup.c
> index 9d4399b..e54fff7 100644
> --- a/kernel/trace/trace_sched_wakeup.c
> +++ b/kernel/trace/trace_sched_wakeup.c
> @@ -239,6 +239,12 @@ static int wakeup_graph_entry(struct ftrace_graph_ent *trace)
>         unsigned long flags;
>         int pc, ret = 0;
>
> +       if (trace->depth < 0)
> +               return 0;
> +
> +       if (ftrace_graph_notrace_addr(trace->func))
> +               return 1;
> +
>         if (!func_prolog_preempt_disable(tr, &data, &pc))
>                 return 0;
>
> --
> 1.8.3.1
>

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


Thread

[PATCH V3] tracing: Make latency tracers fully support the set_graph_notrace Chunyu Hu <chuhu@redhat.com> - 2016-06-24 13:00 +0200
  Re: [PATCH V3] tracing: Make latency tracers fully support the set_graph_notrace Namhyung Kim <namhyung@gmail.com> - 2016-06-28 07:30 +0200
    Re: [PATCH V3] tracing: Make latency tracers fully support the  set_graph_notrace Chunyu Hu <chuhu@redhat.com> - 2016-06-28 10:10 +0200
      Re: [PATCH V3] tracing: Make latency tracers fully support the  set_graph_notrace Steven Rostedt <rostedt@goodmis.org> - 2016-06-28 22:10 +0200
        Re: [PATCH V3] tracing: Make latency tracers fully support the  set_graph_notrace Chunyu Hu <chuhu@redhat.com> - 2016-06-29 01:40 +0200

csiph-web