Messages in this thread Patch in this message |  | | Subject | [PATCH 29/45] C++: Move the print_line_t enum before first use | From | David Howells <> | Date | Sun, 01 Apr 2018 21:43:09 +0100 |
| |
Move the print_line_t enum definition to before its first use.
Signed-off-by: David Howells <dhowells@redhat.com> ---
include/linux/trace_events.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/include/linux/trace_events.h b/include/linux/trace_events.h index 8a1442c4e513..38a7667827ca 100644 --- a/include/linux/trace_events.h +++ b/include/linux/trace_events.h @@ -104,6 +104,14 @@ struct trace_iterator { /* All new field here will be zeroed out in pipe_read */ }; +/* Return values for print_line callback */ +enum print_line_t { + TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */ + TRACE_TYPE_HANDLED = 1, + TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */ + TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */ +}; + enum trace_iter_flags { TRACE_FILE_LAT_FMT = 1, TRACE_FILE_ANNOTATE = 2, @@ -131,14 +139,6 @@ struct trace_event { extern int register_trace_event(struct trace_event *event); extern int unregister_trace_event(struct trace_event *event); -/* Return values for print_line callback */ -enum print_line_t { - TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */ - TRACE_TYPE_HANDLED = 1, - TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */ - TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */ -}; - enum print_line_t trace_handle_return(struct trace_seq *s); void tracing_generic_entry_update(struct trace_entry *entry,
|  |