Skip to content

Commit

Permalink
ftrace: add pretty print function for traceon and traceoff hooks
Browse files Browse the repository at this point in the history
This patch adds a pretty print version of traceon and traceoff
output for set_ftrace_filter.

  # echo 'sys_open:traceon:4' > set_ftrace_filter
  # cat set_ftrace_filter

 #### all functions enabled ####
 sys_open:traceon:count=4

Signed-off-by: Steven Rostedt <srostedt@redhat.com>
  • Loading branch information
Steven Rostedt committed Feb 17, 2009
1 parent 809dcf2 commit e110e3d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions kernel/trace/trace_functions.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,14 +267,42 @@ ftrace_traceoff(unsigned long ip, unsigned long parent_ip, void **data)
tracing_off();
}

static int
ftrace_trace_onoff_print(struct seq_file *m, unsigned long ip,
struct ftrace_hook_ops *ops, void *data);

static struct ftrace_hook_ops traceon_hook_ops = {
.func = ftrace_traceon,
.print = ftrace_trace_onoff_print,
};

static struct ftrace_hook_ops traceoff_hook_ops = {
.func = ftrace_traceoff,
.print = ftrace_trace_onoff_print,
};

static int
ftrace_trace_onoff_print(struct seq_file *m, unsigned long ip,
struct ftrace_hook_ops *ops, void *data)
{
char str[KSYM_SYMBOL_LEN];
long count = (long)data;

kallsyms_lookup(ip, NULL, NULL, NULL, str);
seq_printf(m, "%s:", str);

if (ops == &traceon_hook_ops)
seq_printf(m, "traceon");
else
seq_printf(m, "traceoff");

if (count != -1)
seq_printf(m, ":count=%ld", count);
seq_putc(m, '\n');

return 0;
}

static int
ftrace_trace_onoff_unreg(char *glob, char *cmd, char *param)
{
Expand Down

0 comments on commit e110e3d

Please sign in to comment.