提交 c4a59230 编写于 作者: T Tom Zanussi 提交者: Steven Rostedt

tracing: Add event record param to trigger_ops.func()

Some triggers may need access to the trace event, so pass it in.  Also
fix up the existing trigger funcs and their callers.

Link: http://lkml.kernel.org/r/543e31e9fc445ef61077421ab219033401c39846.1449767187.git.tom.zanussi@linux.intel.comSigned-off-by: NTom Zanussi <tom.zanussi@linux.intel.com>
Tested-by: NMasami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Reviewed-by: NNamhyung Kim <namhyung@kernel.org>
Signed-off-by: NSteven Rostedt <rostedt@goodmis.org>
上级 ab4bf008
...@@ -430,7 +430,8 @@ extern int call_filter_check_discard(struct trace_event_call *call, void *rec, ...@@ -430,7 +430,8 @@ extern int call_filter_check_discard(struct trace_event_call *call, void *rec,
extern enum event_trigger_type event_triggers_call(struct trace_event_file *file, extern enum event_trigger_type event_triggers_call(struct trace_event_file *file,
void *rec); void *rec);
extern void event_triggers_post_call(struct trace_event_file *file, extern void event_triggers_post_call(struct trace_event_file *file,
enum event_trigger_type tt); enum event_trigger_type tt,
void *rec);
bool trace_event_ignore_this_pid(struct trace_event_file *trace_file); bool trace_event_ignore_this_pid(struct trace_event_file *trace_file);
...@@ -517,7 +518,7 @@ event_trigger_unlock_commit(struct trace_event_file *file, ...@@ -517,7 +518,7 @@ event_trigger_unlock_commit(struct trace_event_file *file,
trace_buffer_unlock_commit(file->tr, buffer, event, irq_flags, pc); trace_buffer_unlock_commit(file->tr, buffer, event, irq_flags, pc);
if (tt) if (tt)
event_triggers_post_call(file, tt); event_triggers_post_call(file, tt, entry);
} }
/** /**
...@@ -550,7 +551,7 @@ event_trigger_unlock_commit_regs(struct trace_event_file *file, ...@@ -550,7 +551,7 @@ event_trigger_unlock_commit_regs(struct trace_event_file *file,
irq_flags, pc, regs); irq_flags, pc, regs);
if (tt) if (tt)
event_triggers_post_call(file, tt); event_triggers_post_call(file, tt, entry);
} }
#ifdef CONFIG_BPF_EVENTS #ifdef CONFIG_BPF_EVENTS
......
...@@ -1201,7 +1201,8 @@ extern int register_event_command(struct event_command *cmd); ...@@ -1201,7 +1201,8 @@ extern int register_event_command(struct event_command *cmd);
* @func: The trigger 'probe' function called when the triggering * @func: The trigger 'probe' function called when the triggering
* event occurs. The data passed into this callback is the data * event occurs. The data passed into this callback is the data
* that was supplied to the event_command @reg() function that * that was supplied to the event_command @reg() function that
* registered the trigger (see struct event_command). * registered the trigger (see struct event_command) along with
* the trace record, rec.
* *
* @init: An optional initialization function called for the trigger * @init: An optional initialization function called for the trigger
* when the trigger is registered (via the event_command reg() * when the trigger is registered (via the event_command reg()
...@@ -1226,7 +1227,8 @@ extern int register_event_command(struct event_command *cmd); ...@@ -1226,7 +1227,8 @@ extern int register_event_command(struct event_command *cmd);
* (see trace_event_triggers.c). * (see trace_event_triggers.c).
*/ */
struct event_trigger_ops { struct event_trigger_ops {
void (*func)(struct event_trigger_data *data); void (*func)(struct event_trigger_data *data,
void *rec);
int (*init)(struct event_trigger_ops *ops, int (*init)(struct event_trigger_ops *ops,
struct event_trigger_data *data); struct event_trigger_data *data);
void (*free)(struct event_trigger_ops *ops, void (*free)(struct event_trigger_ops *ops,
......
...@@ -73,7 +73,7 @@ event_triggers_call(struct trace_event_file *file, void *rec) ...@@ -73,7 +73,7 @@ event_triggers_call(struct trace_event_file *file, void *rec)
list_for_each_entry_rcu(data, &file->triggers, list) { list_for_each_entry_rcu(data, &file->triggers, list) {
if (!rec) { if (!rec) {
data->ops->func(data); data->ops->func(data, rec);
continue; continue;
} }
filter = rcu_dereference_sched(data->filter); filter = rcu_dereference_sched(data->filter);
...@@ -83,7 +83,7 @@ event_triggers_call(struct trace_event_file *file, void *rec) ...@@ -83,7 +83,7 @@ event_triggers_call(struct trace_event_file *file, void *rec)
tt |= data->cmd_ops->trigger_type; tt |= data->cmd_ops->trigger_type;
continue; continue;
} }
data->ops->func(data); data->ops->func(data, rec);
} }
return tt; return tt;
} }
...@@ -93,6 +93,7 @@ EXPORT_SYMBOL_GPL(event_triggers_call); ...@@ -93,6 +93,7 @@ EXPORT_SYMBOL_GPL(event_triggers_call);
* event_triggers_post_call - Call 'post_triggers' for a trace event * event_triggers_post_call - Call 'post_triggers' for a trace event
* @file: The trace_event_file associated with the event * @file: The trace_event_file associated with the event
* @tt: enum event_trigger_type containing a set bit for each trigger to invoke * @tt: enum event_trigger_type containing a set bit for each trigger to invoke
* @rec: The trace entry for the event
* *
* For each trigger associated with an event, invoke the trigger * For each trigger associated with an event, invoke the trigger
* function registered with the associated trigger command, if the * function registered with the associated trigger command, if the
...@@ -103,13 +104,14 @@ EXPORT_SYMBOL_GPL(event_triggers_call); ...@@ -103,13 +104,14 @@ EXPORT_SYMBOL_GPL(event_triggers_call);
*/ */
void void
event_triggers_post_call(struct trace_event_file *file, event_triggers_post_call(struct trace_event_file *file,
enum event_trigger_type tt) enum event_trigger_type tt,
void *rec)
{ {
struct event_trigger_data *data; struct event_trigger_data *data;
list_for_each_entry_rcu(data, &file->triggers, list) { list_for_each_entry_rcu(data, &file->triggers, list) {
if (data->cmd_ops->trigger_type & tt) if (data->cmd_ops->trigger_type & tt)
data->ops->func(data); data->ops->func(data, rec);
} }
} }
EXPORT_SYMBOL_GPL(event_triggers_post_call); EXPORT_SYMBOL_GPL(event_triggers_post_call);
...@@ -745,7 +747,7 @@ int set_trigger_filter(char *filter_str, ...@@ -745,7 +747,7 @@ int set_trigger_filter(char *filter_str,
} }
static void static void
traceon_trigger(struct event_trigger_data *data) traceon_trigger(struct event_trigger_data *data, void *rec)
{ {
if (tracing_is_on()) if (tracing_is_on())
return; return;
...@@ -754,7 +756,7 @@ traceon_trigger(struct event_trigger_data *data) ...@@ -754,7 +756,7 @@ traceon_trigger(struct event_trigger_data *data)
} }
static void static void
traceon_count_trigger(struct event_trigger_data *data) traceon_count_trigger(struct event_trigger_data *data, void *rec)
{ {
if (tracing_is_on()) if (tracing_is_on())
return; return;
...@@ -769,7 +771,7 @@ traceon_count_trigger(struct event_trigger_data *data) ...@@ -769,7 +771,7 @@ traceon_count_trigger(struct event_trigger_data *data)
} }
static void static void
traceoff_trigger(struct event_trigger_data *data) traceoff_trigger(struct event_trigger_data *data, void *rec)
{ {
if (!tracing_is_on()) if (!tracing_is_on())
return; return;
...@@ -778,7 +780,7 @@ traceoff_trigger(struct event_trigger_data *data) ...@@ -778,7 +780,7 @@ traceoff_trigger(struct event_trigger_data *data)
} }
static void static void
traceoff_count_trigger(struct event_trigger_data *data) traceoff_count_trigger(struct event_trigger_data *data, void *rec)
{ {
if (!tracing_is_on()) if (!tracing_is_on())
return; return;
...@@ -874,13 +876,13 @@ static struct event_command trigger_traceoff_cmd = { ...@@ -874,13 +876,13 @@ static struct event_command trigger_traceoff_cmd = {
#ifdef CONFIG_TRACER_SNAPSHOT #ifdef CONFIG_TRACER_SNAPSHOT
static void static void
snapshot_trigger(struct event_trigger_data *data) snapshot_trigger(struct event_trigger_data *data, void *rec)
{ {
tracing_snapshot(); tracing_snapshot();
} }
static void static void
snapshot_count_trigger(struct event_trigger_data *data) snapshot_count_trigger(struct event_trigger_data *data, void *rec)
{ {
if (!data->count) if (!data->count)
return; return;
...@@ -888,7 +890,7 @@ snapshot_count_trigger(struct event_trigger_data *data) ...@@ -888,7 +890,7 @@ snapshot_count_trigger(struct event_trigger_data *data)
if (data->count != -1) if (data->count != -1)
(data->count)--; (data->count)--;
snapshot_trigger(data); snapshot_trigger(data, rec);
} }
static int static int
...@@ -967,13 +969,13 @@ static __init int register_trigger_snapshot_cmd(void) { return 0; } ...@@ -967,13 +969,13 @@ static __init int register_trigger_snapshot_cmd(void) { return 0; }
#define STACK_SKIP 3 #define STACK_SKIP 3
static void static void
stacktrace_trigger(struct event_trigger_data *data) stacktrace_trigger(struct event_trigger_data *data, void *rec)
{ {
trace_dump_stack(STACK_SKIP); trace_dump_stack(STACK_SKIP);
} }
static void static void
stacktrace_count_trigger(struct event_trigger_data *data) stacktrace_count_trigger(struct event_trigger_data *data, void *rec)
{ {
if (!data->count) if (!data->count)
return; return;
...@@ -981,7 +983,7 @@ stacktrace_count_trigger(struct event_trigger_data *data) ...@@ -981,7 +983,7 @@ stacktrace_count_trigger(struct event_trigger_data *data)
if (data->count != -1) if (data->count != -1)
(data->count)--; (data->count)--;
stacktrace_trigger(data); stacktrace_trigger(data, rec);
} }
static int static int
...@@ -1052,7 +1054,7 @@ struct enable_trigger_data { ...@@ -1052,7 +1054,7 @@ struct enable_trigger_data {
}; };
static void static void
event_enable_trigger(struct event_trigger_data *data) event_enable_trigger(struct event_trigger_data *data, void *rec)
{ {
struct enable_trigger_data *enable_data = data->private_data; struct enable_trigger_data *enable_data = data->private_data;
...@@ -1063,7 +1065,7 @@ event_enable_trigger(struct event_trigger_data *data) ...@@ -1063,7 +1065,7 @@ event_enable_trigger(struct event_trigger_data *data)
} }
static void static void
event_enable_count_trigger(struct event_trigger_data *data) event_enable_count_trigger(struct event_trigger_data *data, void *rec)
{ {
struct enable_trigger_data *enable_data = data->private_data; struct enable_trigger_data *enable_data = data->private_data;
...@@ -1077,7 +1079,7 @@ event_enable_count_trigger(struct event_trigger_data *data) ...@@ -1077,7 +1079,7 @@ event_enable_count_trigger(struct event_trigger_data *data)
if (data->count != -1) if (data->count != -1)
(data->count)--; (data->count)--;
event_enable_trigger(data); event_enable_trigger(data, rec);
} }
static int static int
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册