|
@@ -831,6 +831,7 @@ print_graph_entry_leaf(struct trace_iterator *iter,
|
|
|
struct ftrace_graph_ret *graph_ret;
|
|
|
struct ftrace_graph_ent *call;
|
|
|
unsigned long long duration;
|
|
|
+ int cpu = iter->cpu;
|
|
|
int i;
|
|
|
|
|
|
graph_ret = &ret_entry->ret;
|
|
@@ -839,7 +840,6 @@ print_graph_entry_leaf(struct trace_iterator *iter,
|
|
|
|
|
|
if (data) {
|
|
|
struct fgraph_cpu_data *cpu_data;
|
|
|
- int cpu = iter->cpu;
|
|
|
|
|
|
cpu_data = per_cpu_ptr(data->cpu_data, cpu);
|
|
|
|
|
@@ -869,6 +869,9 @@ print_graph_entry_leaf(struct trace_iterator *iter,
|
|
|
|
|
|
trace_seq_printf(s, "%ps();\n", (void *)call->func);
|
|
|
|
|
|
+ print_graph_irq(iter, graph_ret->func, TRACE_GRAPH_RET,
|
|
|
+ cpu, iter->ent->pid, flags);
|
|
|
+
|
|
|
return trace_handle_return(s);
|
|
|
}
|
|
|
|