Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 162981
b: refs/heads/master
c: b375a11
h: refs/heads/master
i:
  162979: 0361ec3
v: v3
  • Loading branch information
Steven Rostedt authored and Steven Rostedt committed Sep 17, 2009
1 parent 5b8a5a5 commit f989100
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 91adcd2c4b104a8ce2973e6e84b01fd48735ffc6
refs/heads/master: b375a11a239e9e1cac40c7f3ff28b343d9f7ac51
6 changes: 3 additions & 3 deletions trunk/kernel/trace/ftrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -1405,7 +1405,7 @@ static int t_hash_show(struct seq_file *m, void *v)
if (rec->ops->print)
return rec->ops->print(m, rec->ip, rec->ops, rec->data);

seq_printf(m, "%pf:%pf", (void *)rec->ip, (void *)rec->ops->func);
seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);

if (rec->data)
seq_printf(m, ":%p", rec->data);
Expand Down Expand Up @@ -1515,7 +1515,7 @@ static int t_show(struct seq_file *m, void *v)
if (!rec)
return 0;

seq_printf(m, "%pf\n", (void *)rec->ip);
seq_printf(m, "%ps\n", (void *)rec->ip);

return 0;
}
Expand Down Expand Up @@ -2456,7 +2456,7 @@ static int g_show(struct seq_file *m, void *v)
return 0;
}

seq_printf(m, "%pf\n", (void *)*ptr);
seq_printf(m, "%ps\n", (void *)*ptr);

return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/kernel/trace/trace_functions.c
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ ftrace_trace_onoff_print(struct seq_file *m, unsigned long ip,
{
long count = (long)data;

seq_printf(m, "%pf:", (void *)ip);
seq_printf(m, "%ps:", (void *)ip);

if (ops == &traceon_probe_ops)
seq_printf(m, "traceon");
Expand Down
6 changes: 3 additions & 3 deletions trunk/kernel/trace/trace_functions_graph.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ ftrace_pop_return_trace(struct ftrace_graph_ret *trace, unsigned long *ret,
if (unlikely(current->ret_stack[index].fp != frame_pointer)) {
ftrace_graph_stop();
WARN(1, "Bad frame pointer: expected %lx, received %lx\n"
" from func %pF return to %lx\n",
" from func %ps return to %lx\n",
current->ret_stack[index].fp,
frame_pointer,
(void *)current->ret_stack[index].func,
Expand Down Expand Up @@ -669,7 +669,7 @@ print_graph_entry_leaf(struct trace_iterator *iter,
return TRACE_TYPE_PARTIAL_LINE;
}

ret = trace_seq_printf(s, "%pf();\n", (void *)call->func);
ret = trace_seq_printf(s, "%ps();\n", (void *)call->func);
if (!ret)
return TRACE_TYPE_PARTIAL_LINE;

Expand Down Expand Up @@ -712,7 +712,7 @@ print_graph_entry_nested(struct trace_iterator *iter,
return TRACE_TYPE_PARTIAL_LINE;
}

ret = trace_seq_printf(s, "%pf() {\n", (void *)call->func);
ret = trace_seq_printf(s, "%ps() {\n", (void *)call->func);
if (!ret)
return TRACE_TYPE_PARTIAL_LINE;

Expand Down

0 comments on commit f989100

Please sign in to comment.