diff options
Diffstat (limited to 'kernel/trace/trace.h')
-rw-r--r-- | kernel/trace/trace.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h index 1ecfb9d2b365..7b0518adf6d7 100644 --- a/kernel/trace/trace.h +++ b/kernel/trace/trace.h | |||
@@ -63,13 +63,13 @@ struct ftrace_entry { | |||
63 | 63 | ||
64 | /* Function call entry */ | 64 | /* Function call entry */ |
65 | struct ftrace_graph_ent_entry { | 65 | struct ftrace_graph_ent_entry { |
66 | struct trace_entry ent; | 66 | struct trace_entry ent; |
67 | struct ftrace_graph_ent graph_ent; | 67 | struct ftrace_graph_ent graph_ent; |
68 | }; | 68 | }; |
69 | 69 | ||
70 | /* Function return entry */ | 70 | /* Function return entry */ |
71 | struct ftrace_graph_ret_entry { | 71 | struct ftrace_graph_ret_entry { |
72 | struct trace_entry ent; | 72 | struct trace_entry ent; |
73 | struct ftrace_graph_ret ret; | 73 | struct ftrace_graph_ret ret; |
74 | }; | 74 | }; |
75 | extern struct tracer boot_tracer; | 75 | extern struct tracer boot_tracer; |
@@ -309,7 +309,8 @@ extern void __ftrace_bad_type(void); | |||
309 | enum print_line_t { | 309 | enum print_line_t { |
310 | TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */ | 310 | TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */ |
311 | TRACE_TYPE_HANDLED = 1, | 311 | TRACE_TYPE_HANDLED = 1, |
312 | TRACE_TYPE_UNHANDLED = 2 /* Relay to other output functions */ | 312 | TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */ |
313 | TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */ | ||
313 | }; | 314 | }; |
314 | 315 | ||
315 | 316 | ||