(2015/03/21 8:30), Alexei Starovoitov wrote: > add TRACE_EVENT_FL_KPROBE flag to differentiate kprobe type of tracepoints, > since bpf programs can only be attached to kprobe type of > PERF_TYPE_TRACEPOINT perf events. > Looks ok to me. Reviewed-by: <masami.hiramatsu.pt@xxxxxxxxxxx> Thank you! > Signed-off-by: Alexei Starovoitov <ast@xxxxxxxxxxxx> > Reviewed-by: Steven Rostedt <rostedt@xxxxxxxxxxx> > --- > include/linux/ftrace_event.h | 3 +++ > kernel/trace/trace_kprobe.c | 2 +- > 2 files changed, 4 insertions(+), 1 deletion(-) > > diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h > index c674ee8f7fca..77325e1a1816 100644 > --- a/include/linux/ftrace_event.h > +++ b/include/linux/ftrace_event.h > @@ -252,6 +252,7 @@ enum { > TRACE_EVENT_FL_WAS_ENABLED_BIT, > TRACE_EVENT_FL_USE_CALL_FILTER_BIT, > TRACE_EVENT_FL_TRACEPOINT_BIT, > + TRACE_EVENT_FL_KPROBE_BIT, > }; > > /* > @@ -265,6 +266,7 @@ enum { > * it is best to clear the buffers that used it). > * USE_CALL_FILTER - For ftrace internal events, don't use file filter > * TRACEPOINT - Event is a tracepoint > + * KPROBE - Event is a kprobe > */ > enum { > TRACE_EVENT_FL_FILTERED = (1 << TRACE_EVENT_FL_FILTERED_BIT), > @@ -274,6 +276,7 @@ enum { > TRACE_EVENT_FL_WAS_ENABLED = (1 << TRACE_EVENT_FL_WAS_ENABLED_BIT), > TRACE_EVENT_FL_USE_CALL_FILTER = (1 << TRACE_EVENT_FL_USE_CALL_FILTER_BIT), > TRACE_EVENT_FL_TRACEPOINT = (1 << TRACE_EVENT_FL_TRACEPOINT_BIT), > + TRACE_EVENT_FL_KPROBE = (1 << TRACE_EVENT_FL_KPROBE_BIT), > }; > > struct ftrace_event_call { > diff --git a/kernel/trace/trace_kprobe.c b/kernel/trace/trace_kprobe.c > index d73f565b4e06..8fa549f6f528 100644 > --- a/kernel/trace/trace_kprobe.c > +++ b/kernel/trace/trace_kprobe.c > @@ -1286,7 +1286,7 @@ static int register_kprobe_event(struct trace_kprobe *tk) > kfree(call->print_fmt); > return -ENODEV; > } > - call->flags = 0; > + call->flags = TRACE_EVENT_FL_KPROBE; > call->class->reg = kprobe_register; > call->data = tk; > ret = trace_add_event_call(call); > -- Masami HIRAMATSU Software Platform Research Dept. Linux Technology Research Center Hitachi, Ltd., Yokohama Research Laboratory E-mail: masami.hiramatsu.pt@xxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe linux-api" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html